File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed
Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 1+ {{- range .Values.extraManifests }}
2+ ---
3+ {{ toYaml . }}
4+ {{- end }}
Original file line number Diff line number Diff line change @@ -557,4 +557,32 @@ persistence:
557557 accessMode : ReadWriteOnce
558558 # accessMode: ReadWriteMany # Use for cross-node deployment (requires compatible storage class)
559559 storageClass : " "
560- retain : true # Prevents deletion on uninstall
560+ retain : true # Prevents deletion on uninstall
561+
562+ # Extra Kubernetes manifests
563+ # This allows you to add additional Kubernetes resources that will be deployed with the chart
564+ extraManifests :
565+ []
566+ # - apiVersion: v1
567+ # kind: ConfigMap
568+ # metadata:
569+ # name: my-config
570+ # data:
571+ # key: value
572+ # - apiVersion: apps/v1
573+ # kind: Deployment
574+ # metadata:
575+ # name: my-app
576+ # spec:
577+ # replicas: 1
578+ # selector:
579+ # matchLabels:
580+ # app: my-app
581+ # template:
582+ # metadata:
583+ # labels:
584+ # app: my-app
585+ # spec:
586+ # containers:
587+ # - name: my-container
588+ # image: nginx:latest
You can’t perform that action at this time.
0 commit comments