13 lines
494 B
YAML
13 lines
494 B
YAML
# This patch adds the args to allow exposing the metrics endpoint using HTTPS
|
|
- op: add
|
|
path: /spec/template/spec/containers/0/args/0
|
|
value: --metrics-bind-address=:8443
|
|
# This patch adds the args to allow securing the metrics endpoint
|
|
- op: add
|
|
path: /spec/template/spec/containers/0/args/0
|
|
value: --metrics-secure
|
|
# This patch adds the args to allow RBAC-based authn/authz the metrics endpoint
|
|
- op: add
|
|
path: /spec/template/spec/containers/0/args/0
|
|
value: --metrics-require-rbac
|