- Add web Deployment/Service with nginx SPA on port 80 - Remove env generation from chart, use external ConfigMap (configMap.create=false) - Add SSH host key Secret injection for gitpod (/etc/ssh) - Fix ServiceMonitor to scrape /metrics uniformly for all services - Fix container names to be service-specific (gitdata/gitpod/gitsync/email/web) - Parameterize PVC claimName and data mountPath - Fix Ingress routing: / -> web, /api /socket.io -> gitdata - Add web to HPA/PDB support lists
22 lines
784 B
YAML
22 lines
784 B
YAML
{{- if .Values.podDisruptionBudget.enabled }}
|
|
{{- range $svcName := list "gitdata" "gitpod" "gitsync" "email" "web" }}
|
|
{{- $svcCfg := index $.Values $svcName }}
|
|
{{- $pdbCfg := index $.Values.podDisruptionBudget $svcName }}
|
|
{{- if and $svcCfg.enabled $pdbCfg.minAvailable }}
|
|
---
|
|
apiVersion: policy/v1
|
|
kind: PodDisruptionBudget
|
|
metadata:
|
|
name: {{ include "app.serviceFullname" (dict "root" $ "name" $svcName) }}
|
|
namespace: {{ $.Values.global.namespace | default $.Release.Namespace }}
|
|
labels:
|
|
{{- include "app.serviceLabels" (dict "root" $ "name" $svcName) | nindent 4 }}
|
|
spec:
|
|
minAvailable: {{ $pdbCfg.minAvailable }}
|
|
selector:
|
|
matchLabels:
|
|
{{- include "app.serviceSelectorLabels" (dict "root" $ "name" $svcName) | nindent 6 }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|