794de6d0e5
service.yaml was still using the old flat values format (.Values.ide and .Values.ssh) while values.yaml had been restructured to nested objects (ide.type and ssh.enabled). This caused a type comparison error breaking all devcontainer deployments across cpfarhood and homeassistant namespaces. Bumps chart version to 0.3.1. 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
513 B
YAML
23 lines
513 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "antigravity.fullname" . }}
|
|
labels:
|
|
{{- include "antigravity.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 "antigravity.labels" . | nindent 4 }}
|