60f96fc8da
Add githubRepos list field for cloning multiple repositories into a single dev container with multi-root workspace file generation. Remove the unused dynamic deployment mode (Knative, routing proxy, serverless scripts) to simplify the chart to persistent-only. Fix release workflow cache-to setting that violated the no-cache policy. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
23 lines
516 B
YAML
23 lines
516 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "devcontainer.fullname" . }}
|
|
labels:
|
|
{{- include "devcontainer.labels" . | nindent 4 }}
|
|
spec:
|
|
ports:
|
|
{{- if ne (.Values.ide.type | default "vscode") "none" }}
|
|
- port: 5800
|
|
name: vnc-web
|
|
protocol: TCP
|
|
targetPort: vnc-web
|
|
{{- end }}
|
|
{{- if .Values.ssh.enabled }}
|
|
- port: 22
|
|
name: ssh
|
|
protocol: TCP
|
|
targetPort: ssh
|
|
{{- end }}
|
|
selector:
|
|
{{- include "devcontainer.labels" . | nindent 4 }}
|