diff --git a/helm/stunner-gateway-operator/templates/stunner-default-dataplane.yaml b/helm/stunner-gateway-operator/templates/stunner-default-dataplane.yaml index 9f266ca..17e31d1 100644 --- a/helm/stunner-gateway-operator/templates/stunner-default-dataplane.yaml +++ b/helm/stunner-gateway-operator/templates/stunner-default-dataplane.yaml @@ -23,6 +23,12 @@ spec: terminationGracePeriodSeconds: {{ .terminationGracePeriodSeconds }} enableMetricsEndpoint: {{ .enableMetricsEndpoint }} hostNetwork: {{ .hostNetwork }} + {{- with .labels }} + labels: {{- toYaml . | nindent 4 }} + {{- end }} + {{- with .annotations }} + annotations: {{- toYaml . | nindent 4 }} + {{- end }} {{- with .affinity }} affinity: {{- toYaml . | nindent 4 }} {{- end }} diff --git a/helm/stunner-gateway-operator/values.yaml b/helm/stunner-gateway-operator/values.yaml index 6c0fd60..e0f2f72 100644 --- a/helm/stunner-gateway-operator/values.yaml +++ b/helm/stunner-gateway-operator/values.yaml @@ -60,6 +60,8 @@ stunnerGatewayOperator: terminationGracePeriodSeconds: 3600 enableMetricsEndpoint: false hostNetwork: false + labels: {} + annotations: {} affinity: {} securityContext: {} tolerations: []