-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Argo CD Git WebHook Secret from another secret #2635
Comments
Hi @alex-souslik-hs the sensitive values in See:
You can also check sample snippet bellow that uses external-secret operator if you want to provision this without hardcoding anything sensitive in configs:
secret:
createSecret: false
extraObjects:
- apiVersion: external-secrets.io/v1beta1
kind: ExternalSecret
metadata:
name: argocd-secret
spec:
secretStoreRef:
name: aws-secretsmanager
kind: SecretStore
target:
name: argocd-secret
data:
- secretKey: webhook.github.secret
remoteRef:
key: webhook
property: webhook.github.secret |
@pdrastil I have a very similar setup. So you are saying this won't work with the helm chart?
|
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
@tman5 I don't think so. The substitutions are done in ConfigMap |
Is your feature request related to a problem?
I've configured a Git WebHook to Argo CD but couldn't figure out how to securely add the WebHook secret to my helm values. My
values.yaml
is stored in a GitHub repo and theargocd-secret
is defined in it.Related helm chart
argo-cd
Describe the solution you'd like
Ideally, I'd like this configuration to be handled the same way sensitive keys can be handled in
argocd-cm
.Describe alternatives you've considered
argocd-secret
with the Argo CD chart.Additional context
No response
The text was updated successfully, but these errors were encountered: