feat: rename kustomizations/ to values/

This commit is contained in:
2024-10-14 07:59:16 +02:00
parent 91b56423f2
commit 372c11c31e
165 changed files with 28 additions and 28 deletions
@@ -0,0 +1,14 @@
- op: replace
path: /spec/template/spec/containers/0/livenessProbe/httpGet/path
value: /healthz
- op: replace
path: /spec/template/spec/containers/0/readinessProbe/httpGet/path
value: /healthz
- op: add
path: /spec/template/spec/containers/0/env/-
value:
name: INTRERNAL_PORT
value: "8000"
- op: add
path: /spec/template/spec/containers/0/envFrom
value: []
+14
View File
@@ -0,0 +1,14 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
patches:
- target:
version: v1
group: apps
kind: Deployment
path: deployment_patch.yaml
- target:
version: v1
kind: Service
path: service_patch.yaml
resources:
- _manifest.yaml
+7
View File
@@ -0,0 +1,7 @@
- op: add
path: /spec/ports/-
value:
name: intra
port: 8000
protocol: TCP
targetPort: 8000