Skip to content

Commit bb0bd9d

Browse files
committed
add extraManifests
1 parent 062e4b5 commit bb0bd9d

File tree

2 files changed

+33
-1
lines changed

2 files changed

+33
-1
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{{- range .Values.extraManifests }}
2+
---
3+
{{ toYaml . }}
4+
{{- end }}

hosting/k8s/helm/values.yaml

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)