Update K8S to include an auto generator of values template

This commit is contained in:
mr
2025-11-12 13:13:43 +01:00
parent 7ad4bf0b5d
commit 9f9b1849eb
141 changed files with 13168 additions and 211 deletions

View File

@@ -1,4 +1,4 @@
{{- if index .Values.ocCatalog.enabled }}
{{- if .Values.ocCatalog.enabled }}
apiVersion: apps/v1
kind: Deployment
metadata:
@@ -6,7 +6,7 @@ metadata:
app: oc-catalog
name: {{ .Release.Name }}-oc-catalog
spec:
replicas: 1
replicas: {{ .Values.ocCatalog.replicas }}
selector:
matchLabels:
app: oc-catalog
@@ -36,4 +36,4 @@ spec:
requests:
cpu: "{{ .Values.ocCatalog.resources.requests.cpu }}"
memory: "{{ .Values.ocCatalog.resources.requests.memory }}"
{{- end }}
{{- end }}