kedacore / keda-olm-operator

Operator for deploying KEDA Controller on OperatorHub.io/OLM
Apache License 2.0
31 stars 23 forks source link

add support for specifying `annotations` & `labels` #132

Closed zroubalik closed 2 years ago

zroubalik commented 2 years ago

Signed-off-by: Zbynek Roubalik zroubali@redhat.com

Adding a possibility to add annotations and labels for:

spec:
  operator:
    deploymentAnnotations:
      annotationKey: annotationValue
    deploymentLabels:
      labelKey: labelValue
    podAnnotations:
      annotationKey: annotationValue
    podLabels:
      labelKey: labelValue

  metricsServer:
    deploymentAnnotations:
      annotationKey: annotationValue
    deploymentLabels:
      labelKey: labelValue
    podAnnotations:
      annotationKey: annotationValue
    podLabels:
      labelKey: labelValue

  serviceAccount:
    annotations:
      annotationKey: annotationValue
    labels:
      labelKey: labelValue

Checklist

Fixes #129

zroubalik commented 2 years ago

FYI @kyschouv