c2487ec0b6
- Create Chart.yaml with application metadata and keywords - Add _helpers.tpl with name, fullname, labels, and DNS template functions - Generate ConfigMap with all gitks configuration environment variables - Implement StatefulSet with persistent volume claims for repository data - Create headless service for pod DNS and cluster communication - Add gRPC service for client connections and metrics service - Include HorizontalPodAutoscaler for dynamic scaling - Add PodDisruptionBudget to maintain cluster availability - Create ServiceAccount with proper security context - Add test connection pod using grpcurl for health checks - Generate NOTES.txt with installation instructions and quick start guide - Create .helmignore file to exclude common development files - Configure persistence, resource limits, and security settings - Add support for cluster mode with etcd service discovery
30 lines
735 B
YAML
30 lines
735 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "gitks.headlessServiceName" . }}
|
|
labels:
|
|
{{- include "gitks.labels" . | nindent 4 }}
|
|
{{- with .Values.headlessService.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
type: ClusterIP
|
|
clusterIP: None
|
|
publishNotReadyAddresses: true
|
|
ports:
|
|
- name: grpc
|
|
port: {{ .Values.gitks.grpc.port }}
|
|
targetPort: grpc
|
|
protocol: TCP
|
|
- name: metrics
|
|
port: {{ .Values.gitks.metrics.port }}
|
|
targetPort: metrics
|
|
protocol: TCP
|
|
- name: cluster
|
|
port: {{ .Values.gitks.cluster.port }}
|
|
targetPort: cluster
|
|
protocol: TCP
|
|
selector:
|
|
{{- include "gitks.selectorLabels" . | nindent 4 }}
|