argocd-extension-installer
Secure by Design, Built for Speed, Hardened Container Images on a minimal base CleanStart OS.
50K+
The Argo CD Extension Installer is a utility container designed to manage and install extensions for Argo CD, the declarative GitOps continuous delivery tool for Kubernetes. It provides automated installation and configuration of Argo CD plugins, custom tooling, and additional functionality modules while maintaining security and compliance standards.
📌 CleanStart Foundation: Security-hardened, minimal base OS designed for enterprise containerized environments.
# Pull commands
docker pull cleanstart/argocd-extension-installer:latest
docker pull cleanstart/argocd-extension-installer:latest-dev
Standard production deployment with recommended settings
docker run \
-v /path/to/extensions:/extensions \
-e ARGOCD_SERVER=argocd-server.example.com \
-e EXTENSION_URL=https://github.com/argoproj-labs/argocd-extension-metrics/releases/download/v1.0.0/extension.tar.gz \
cleanstart/argocd-extension-installer:latest
Extensions will be installed in the configured Argo CD instance
Development setup with debugging capabilities
docker run -it --privileged \
-e EXTENSION_URL=https://github.com/argoproj-labs/argocd-extension-metrics/releases/download/v1.0.0/extension.tar.gz \
--entrypoint /bin/sh \
cleanstart/argocd-extension-installer:latest-dev
docker run -v /path/to/extensions:/extensions \
-e ARGOCD_SERVER=localhost:8080 \
-e EXTENSION_URL=https://github.com/argoproj-labs/argocd-extension-metrics/releases/download/v1.0.0/extension.tar.gz \
-e DEBUG=true \
cleanstart/argocd-extension-installer:latest-dev
version: '3.8'
services:
argocd-extension-installer:
image: cleanstart/argocd-extension-installer:latest
container_name: argocd-extension-installer
restart: unless-stopped
environment:
- ARGOCD_SERVER=localhost:8080
- EXTENSION_URL=https://github.com/argoproj-labs/argocd-extension-metrics/releases/download/v1.0.0/extension.tar.gz
- DEBUG=true
volumes:
- /path/to/extensions:/extensions
- /path/to/config:/config
security_opt:
- no-new-privileges:true
read_only: true
tmpfs:
- /tmp
| Variable | Default | Description |
|---|---|---|
| ARGOCD_SERVER | localhost:8080 | Argo CD server address |
| EXTENSION_PATH | /extensions | Path to extension files |
Common command line arguments
docker run \
-v /path/to/extensions:/extensions \
-e EXTENSION_URL=https://github.com/argoproj-labs/argocd-extension-metrics/releases/download/v1.0.0/extension.tar.gz \
cleanstart/argocd-extension-installer:latest \
--dry-run --verbose
securityContext:
runAsNonRoot: true
runAsUser: 1000
runAsGroup: 1000
readOnlyRootFilesystem: true
allowPrivilegeEscalation: false
capabilities:
drop: ["ALL"]
docker pull --platform linux/amd64 cleanstart/argocd-extension-installer:latest
docker pull --platform linux/arm64 cleanstart/argocd-extension-installer:latest
CleanStart offers Docker images that include third-party open-source libraries and packages maintained by independent contributors. While CleanStart maintains these images and applies industry-standard security practices, it cannot guarantee the security or integrity of upstream components beyond its control.
Users acknowledge and agree that open-source software may contain undiscovered vulnerabilities or introduce new risks through updates. CleanStart shall not be liable for security issues originating from third-party libraries, including but not limited to zero-day exploits, supply chain attacks, or contributor-introduced risks.
Security remains a shared responsibility: CleanStart provides updated images and guidance where possible, while users are responsible for evaluating deployments and implementing appropriate controls.
Content type
Image
Digest
sha256:021d862ee…
Size
33.7 MB
Last updated
about 1 hour ago
docker pull cleanstart/argocd-extension-installer:1.0.1-arm64