- 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
12 lines
275 B
YAML
12 lines
275 B
YAML
{{- if .Values.configMap.create }}
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ .Values.configMap.name | default (include "app.fullname" .) }}
|
|
namespace: {{ include "app.namespace" . }}
|
|
labels:
|
|
{{- include "app.labels" . | nindent 4 }}
|
|
data: {}
|
|
{{- end }}
|