- Created complete Helm chart with deployments, services, and ingress - Added support for both web frontend and API backend components - Included autoscaling (HPA) for both components - Added pod disruption budgets for high availability - Configured security contexts and best practices - Created helper templates and configuration management - Added production and development value files - Included comprehensive README with installation instructions
13 lines
306 B
YAML
13 lines
306 B
YAML
{{- if .Values.secrets.create }}
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: {{ include "api7ee.fullname" . }}
|
|
labels:
|
|
{{- include "api7ee.labels" . | nindent 4 }}
|
|
type: Opaque
|
|
data:
|
|
{{- range $key, $val := .Values.secrets.data }}
|
|
{{ $key }}: {{ $val | b64enc | quote }}
|
|
{{- end }}
|
|
{{- end }} |