Relocate patches from clusters/d8-ugmk-prod/infrastructure/patches into infrastructure/<module>/d8-ugmk-prod/ overlays (base + patches), matching the apps/<app>/<cluster> and existing yc-k8s-test layout. clusters/d8-ugmk-prod/infrastructure/kustomization.yaml now just references the kafka, rabbitmq, camunda, vault, postgresql and zitadel overlays, with no patches block. The patches/ directory is removed. No rendered change: HelmRelease, namespace patches are preserved 1:1.
29 lines
708 B
YAML
29 lines
708 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
resources:
|
|
- ../base
|
|
patches:
|
|
- path: postgresql.yaml
|
|
- path: namespace.yaml
|
|
- patch: |-
|
|
- op: replace
|
|
path: /metadata/namespace
|
|
value: zitadel
|
|
- op: replace
|
|
path: /spec/values/primary/nodeSelector
|
|
value:
|
|
dedicated: null
|
|
node.deckhouse.io/group: generic
|
|
- op: replace
|
|
path: /spec/values/primary/tolerations
|
|
value:
|
|
- key: dedicated.deckhouse.io
|
|
operator: Equal
|
|
value: generic
|
|
target:
|
|
group: helm.toolkit.fluxcd.io
|
|
version: v2
|
|
kind: HelmRelease
|
|
name: postgresql
|
|
namespace: postgresql
|