config/local/kustomization.yaml (24 lines of code) (raw):

# Adds namespace to all resources. namespace: default # Value of this field is prepended to the # names of all resources, e.g. a deployment named # "wordpress" becomes "alices-wordpress". # Note that it should also match with the prefix (text before '-') of the namespace # field above. namePrefix: teamcity-operator- # Labels to add to all resources and selectors. #labels: #- includeSelectors: true # pairs: # someName: someValue resources: - ../crd # [WEBHOOK] To enable webhook, uncomment all the sections with [WEBHOOK] prefix including the one in # crd/kustomization.yaml - ../webhook patchesJson6902: - target: group: admissionregistration.k8s.io version: v1 kind: MutatingWebhookConfiguration name: mutating-webhook-configuration path: mutating_webhook_patch.yaml - target: group: admissionregistration.k8s.io version: v1 kind: ValidatingWebhookConfiguration name: validating-webhook-configuration path: validating_webhook_patch.yaml - target: group: apiextensions.k8s.io version: v1 kind: CustomResourceDefinition name: teamcities.jetbrains.com path: jetbrains.com_teamcities_patch.yaml