argocd-vault-plugin
An Argo CD plugin to retrieve secrets from Secret Management tools and inject them into Kubernetes secrets
File Explorer
Download Latest Version (.zip)- CHANGELOG.tpl.md
- config.yml
- bug_report.md
- feature_request.md
- codeql.yml
- pipeline.yml
- release.yml
- CODEOWNERS
- dependabot.yml
- PULL_REQUEST_TEMPLATE.md
- argo_vault_logo.png
- hard-refresh.png
- generate.go
- generate_test.go
- root.go
- util.go
- version.go
- version_test.go
- main.html
- favicon.png
- logo.png
- versions.css
- versions.js
- avp.md
- generate.md
- version.md
- 0x-1x.md
- backends.md
- compatibility.md
- config.md
- howitworks.md
- index.md
- installation.md
- requirements.txt
- usage.md
- annotation-example.yaml
- inline-path-placeholder.yaml
- kv-version.yaml
- path-prefix.yaml
- versioned-secret.yaml
- file.notyaml
- file.yaml
- deployment.yaml
- excluded.yaml
- full.yaml
- ignored-secret.yaml
- modifers.yaml
- secret.json
- secret.yaml
- secret_embedded_base64.yaml
- secret_path-multi.yaml
- secret_path.yaml
- secret_path_base64.yaml
- secret_path_base64_substring.yaml
- secret_remove_missing.yaml
- secret_versioned.yaml
- gac.json
- invalid.yaml
- all.yaml
- ignored-secret.yaml
- secret-remove-missing.yaml
- small-configmap.yaml
- small-cronjob.yaml
- small-custom-resource-fake-placeholders.yaml
- small-custom-resource.yaml
- small-deployment.yaml
- small-ingress.yaml
- small-job.yaml
- small-secret.yaml
- small-secret2.yaml
- small-secret3.yaml
- small-secret4.yaml
- small-service.yaml
- stdin-full.yaml
- argocd-cm.yaml
- argocd-repo-server-deploy.yaml
- kustomization.yaml
- argocd-repo-server.yaml
- cmp-plugin.yaml
- kustomization.yaml
- approle.go
- approle_test.go
- github.go
- github_test.go
- kubernetes.go
- kubernetes_test.go
- token.go
- userpass.go
- userpass_test.go
- awssecretsmanager.go
- awssecretsmanager_test.go
- azurekeyvault.go
- azurekeyvault_test.go
- delineasecretsmanager.go
- gcpsecretmanager.go
- gcpsecretmanager_test.go
- ibmsecretsmanager.go
- ibmsecretsmanager_test.go
- keepersecretsmanager.go
- keepersecretsmanager_test.go
- kubernetessecret.go
- kubernetessecret_test.go
- localsecretmanager.go
- localsecretmanager_test.go
- onepasswordconnect.go
- onepasswordconnect_test.go
- vault.go
- vault_test.go
- yandexcloudlockbox.go
- yandexcloudlockbox_test.go
- config.go
- config_test.go
- test_helpers.go
- vault_plugin_mock.go
- client.go
- modifiers.go
- modifiers_test.go
- template.go
- template_test.go
- util.go
- util_test.go
- constants.go
- types.go
- util.go
- utils_test.go
- version.go
- .gitignore
- .goreleaser.yaml
- .readthedocs.yaml
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- Dockerfile
- go.mod
- go.sum
- LICENSE
- main.go
- Makefile
- mkdocs.yml
- README.md
- SECURITY.md
- USERS.md
# Installation Guide
1. Get the code
git clone https://github.com/argoproj-labs/argocd-vault-plugin
Downloads the entire project code from GitHub to your computer.
cd argocd-vault-plugin
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -t argocd-vault-plugin .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 argocd-vault-plugin
Runs the built image as an actual container.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Go
MediumPrerequisites
go build ./...
Compiles the Go program into an executable.
go run .
Runs the Go program directly without a separate build step.
If the build finishes without errors, it worked. If you used go run ., check the terminal output.
4. Make
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation
Was this content helpful?
(0 ratings)
