File tree Expand file tree Collapse file tree
config/components/quota-credentials Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Mounts the quota credential for compute-manager at /etc/quota-credentials:
2+ # the Milo client certificate (ca.crt/tls.crt/tls.key) and a static kubeconfig
3+ # that references those cert files by path, combined into one directory via a
4+ # projected volume. The cluster environment supplies both sources
5+ # (compute-edge-milo-client-cert Secret + compute-quota-kubeconfig ConfigMap);
6+ # they are optional so compute-manager still starts where quota is not wired.
17apiVersion : kustomize.config.k8s.io/v1alpha1
28kind : Component
39
@@ -21,6 +27,11 @@ patches:
2127 readOnly: true
2228 volumes:
2329 - name: quota-credentials
24- secret:
25- secretName: compute-quota-credentials
26- optional: true
30+ projected:
31+ sources:
32+ - secret:
33+ name: compute-edge-milo-client-cert
34+ optional: true
35+ - configMap:
36+ name: compute-quota-kubeconfig
37+ optional: true
You can’t perform that action at this time.
0 commit comments