31ec139a8a
Rename all Helm template helper functions from antigravity.* to devcontainer.* to match the actual chart name. Also update Chart.yaml description to remove "Antigravity" branding. Renamed helpers: - antigravity.fullname → devcontainer.fullname - antigravity.pvcName → devcontainer.pvcName - antigravity.envSecretName → devcontainer.envSecretName - antigravity.labels → devcontainer.labels - antigravity.smartResources → devcontainer.smartResources - antigravity.smartDefaults → devcontainer.smartDefaults - antigravity.mcpDefaults → devcontainer.mcpDefaults Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
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 }}
|