e0e362d700
SDK Tests / changes (push) Successful in 2m29s
Real E2E Tests / changes (push) Successful in 2m29s
Deploy Docs Pages / build (push) Has been cancelled
Deploy Docs Pages / deploy (push) Has been cancelled
Real E2E Tests / JavaScript E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / Python E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / Java E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / C# E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / Go E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / Real E2E CI (push) Has been cancelled
SDK Tests / SDK CI (push) Has been cancelled
SDK Tests / CLI Tests (push) Has been cancelled
SDK Tests / Python SDK Quality (code-interpreter) (push) Has been cancelled
SDK Tests / Python SDK Quality (sandbox) (push) Has been cancelled
SDK Tests / Python SDK Tests (code-interpreter) (push) Has been cancelled
SDK Tests / JavaScript SDK Quality And Tests (code-interpreter) (push) Has been cancelled
SDK Tests / JavaScript SDK Quality And Tests (sandbox) (push) Has been cancelled
SDK Tests / Python SDK Tests (sandbox) (push) Has been cancelled
SDK Tests / CLI Quality (push) Has been cancelled
SDK Tests / Kotlin SDK Quality And Tests (sandbox) (push) Has been cancelled
SDK Tests / Kotlin SDK Quality And Tests (code-interpreter) (push) Has been cancelled
SDK Tests / C# SDK Quality And Tests (code-interpreter) (push) Has been cancelled
SDK Tests / C# SDK Quality And Tests (sandbox) (push) Has been cancelled
SDK Tests / Go SDK Quality And Tests (push) Has been cancelled
31 lines
870 B
YAML
31 lines
870 B
YAML
# 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
|