| 123456789101112131415161718192021222324252627282930 |
- # This patch adds the args, volumes, and ports to allow the manager to use the metrics-server certs.
- # Add the volumeMount for the metrics-server certs
- - op: add
- path: /spec/template/spec/containers/0/volumeMounts/-
- value:
- mountPath: /tmp/k8s-metrics-server/metrics-certs
- name: metrics-certs
- readOnly: true
- # Add the --metrics-cert-path argument for the metrics server
- - op: add
- path: /spec/template/spec/containers/0/args/-
- value: --metrics-cert-path=/tmp/k8s-metrics-server/metrics-certs
- # Add the metrics-server certs volume configuration
- - op: add
- path: /spec/template/spec/volumes/-
- value:
- name: metrics-certs
- secret:
- secretName: metrics-server-cert
- optional: false
- items:
- - key: ca.crt
- path: ca.crt
- - key: tls.crt
- path: tls.crt
- - key: tls.key
- path: tls.key
|