dd0e297c14
- Patch argocd-repo-server to mount vault-ca-cert and set SSL_CERT_DIR so helm subprocesses trust the internal CA when pulling charts - Add argocd Application pointing at clusters/au-syd1/bootstrap so ArgoCD manages its own install going forward Reviewed-on: #112
26 lines
580 B
YAML
26 lines
580 B
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: argocd-repo-server
|
|
namespace: argocd
|
|
spec:
|
|
template:
|
|
spec:
|
|
volumes:
|
|
- name: vault-ca-cert
|
|
secret:
|
|
secretName: vault-ca-cert
|
|
items:
|
|
- key: ca.crt
|
|
path: ca.crt
|
|
containers:
|
|
- name: argocd-repo-server
|
|
env:
|
|
- name: SSL_CERT_DIR
|
|
value: /etc/ssl/certs:/custom-certs
|
|
volumeMounts:
|
|
- name: vault-ca-cert
|
|
mountPath: /custom-certs
|
|
readOnly: true
|