- Added debug mode, structured ConfigMap pattern, and README to all charts - Migrated all flat-structure charts to hierarchical values under chartname key - Fixed templates to use correct hierarchical paths - Renamed helm-rustical key to rustical, added HPA support - Fixed ingress YAML parsing (oxicloud), nested env vars (rustical) - Pushed all normalized charts to OCI registry as 1.0.0+ and updated ArgoCD apps
15 lines
419 B
YAML
15 lines
419 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "rustical.fullname" . }}
|
|
labels:
|
|
{{- include "rustical.labels" . | nindent 4 }}
|
|
spec:
|
|
type: {{ .Values.rustical.service.type }}
|
|
ports:
|
|
- port: {{ .Values.rustical.service.port }}
|
|
targetPort: {{ .Values.rustical.service.targetPort }}
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
{{- include "rustical.selectorLabels" . | nindent 4 }}
|