add extraManifests

This commit is contained in:
nicktrn
2025-06-24 12:45:06 +01:00
parent 062e4b5946
commit bb0bd9da54
2 changed files with 33 additions and 1 deletions
@@ -0,0 +1,4 @@
{{- range .Values.extraManifests }}
---
{{ toYaml . }}
{{- end }}
+29 -1
View File
@@ -557,4 +557,32 @@ persistence:
accessMode: ReadWriteOnce
# accessMode: ReadWriteMany # Use for cross-node deployment (requires compatible storage class)
storageClass: ""
retain: true # Prevents deletion on uninstall
retain: true # Prevents deletion on uninstall
# Extra Kubernetes manifests
# This allows you to add additional Kubernetes resources that will be deployed with the chart
extraManifests:
[]
# - apiVersion: v1
# kind: ConfigMap
# metadata:
# name: my-config
# data:
# key: value
# - apiVersion: apps/v1
# kind: Deployment
# metadata:
# name: my-app
# spec:
# replicas: 1
# selector:
# matchLabels:
# app: my-app
# template:
# metadata:
# labels:
# app: my-app
# spec:
# containers:
# - name: my-container
# image: nginx:latest