Includes: - Deployment with health checks and resource limits - Service (ClusterIP by default) - PersistentVolumeClaim for data storage - Optional Ingress with TLS support - Configurable via values.yaml Usage: helm install taskplaner ./helm/taskplaner Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
398 B
YAML
16 lines
398 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "taskplaner.fullname" . }}
|
|
labels:
|
|
{{- include "taskplaner.labels" . | nindent 4 }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
ports:
|
|
- port: {{ .Values.service.port }}
|
|
targetPort: {{ .Values.service.targetPort }}
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
{{- include "taskplaner.selectorLabels" . | nindent 4 }}
|