fix: update service.yaml to use new nested values format

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>
This commit is contained in:
DevContainer User
2026-02-22 18:03:59 +00:00
parent fbcd9c1f72
commit 794de6d0e5
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -2,5 +2,5 @@ apiVersion: v2
name: devcontainer name: devcontainer
description: Antigravity Dev Container with Happy Coder AI assistant description: Antigravity Dev Container with Happy Coder AI assistant
type: application type: application
version: 0.3.0 version: 0.3.1
appVersion: "latest" appVersion: "latest"
+2 -2
View File
@@ -6,13 +6,13 @@ metadata:
{{- include "antigravity.labels" . | nindent 4 }} {{- include "antigravity.labels" . | nindent 4 }}
spec: spec:
ports: ports:
{{- if ne (.Values.ide | default "vscode") "none" }} {{- if ne (.Values.ide.type | default "vscode") "none" }}
- port: 5800 - port: 5800
name: vnc-web name: vnc-web
protocol: TCP protocol: TCP
targetPort: vnc-web targetPort: vnc-web
{{- end }} {{- end }}
{{- if .Values.ssh }} {{- if .Values.ssh.enabled }}
- port: 22 - port: 22
name: ssh name: ssh
protocol: TCP protocol: TCP