Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ spec:
secretKeyRef:
key: SERVICE_PASSWORD
name: {{ include "openstack-hypervisor-operator.fullname" . }}-secret
- name: CERTIFICATE_ISSUER_NAME
value: {{ quote .Values.controllerManager.manager.env.certificateIssuerName }}
- name: LABEL_SELECTOR
value: {{ quote .Values.controllerManager.manager.env.labelSelector }}
- name: KUBERNETES_CLUSTER_DOMAIN
Expand Down
2 changes: 2 additions & 0 deletions charts/openstack-hypervisor-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@ controllerManager:
- --metrics-bind-address=:8443
- --leader-elect
- --health-probe-bind-address=:8081
- --certificate-issuer-name=${CERTIFICATE_ISSUER_NAME}
- --label-selector=${LABEL_SELECTOR}
containerSecurityContext:
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
env:
certificateIssuerName: ""
labelSelector: ""
osAuthUrl: ""
osProjectDomainName: ""
Expand Down
2 changes: 2 additions & 0 deletions config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ spec:
- args:
- --leader-elect
- --health-probe-bind-address=:8081
- --certificate-issuer-name=${CERTIFICATE_ISSUER_NAME}
- --label-selector=${LABEL_SELECTOR}
env:
- name: OS_AUTH_URL
Expand All @@ -74,6 +75,7 @@ spec:
secretKeyRef:
name: secret
key: SERVICE_PASSWORD
- name: CERTIFICATE_ISSUER_NAME
- name: LABEL_SELECTOR
image: keppel.eu-de-1.cloud.sap/ccloud/openstack-hypervisor-operator:latest
name: manager
Expand Down
Loading