927c9f1051
SSH is now a standalone `ssh: true/false` value that starts sshd on port 22 *in addition to* whatever IDE is running, rather than replacing it. The `ide` value loses the `ssh` option and gains `none` (keep container alive with no GUI IDE, useful when ssh: true is the only access method). - chart/values.yaml: replace `ide: ssh` with `ssh: false` boolean - chart/templates/deployment.yaml: expose port 22 when ssh=true, port 5800 when ide!=none; probes use HTTP (VNC) or TCP socket (SSH-only) - chart/templates/service.yaml: include both ports when both enabled - scripts/cont-init-sshd.sh: check SSH=true instead of IDE=ssh - scripts/startapp.sh: add ide=none case (sleep infinity), drop ssh case - chart/Chart.yaml: bump to 0.1.6 - README.md: update IDE choice and SSH access docs Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
105 lines
3.4 KiB
YAML
105 lines
3.4 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: {{ include "antigravity.fullname" . }}
|
|
labels:
|
|
{{- include "antigravity.labels" . | nindent 4 }}
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
{{- include "antigravity.labels" . | nindent 6 }}
|
|
template:
|
|
metadata:
|
|
labels:
|
|
{{- include "antigravity.labels" . | nindent 8 }}
|
|
spec:
|
|
{{- if ne (.Values.clusterAccess | default "none") "none" }}
|
|
serviceAccountName: {{ include "antigravity.fullname" . }}
|
|
{{- end }}
|
|
securityContext:
|
|
fsGroup: 1000
|
|
fsGroupChangePolicy: "OnRootMismatch"
|
|
containers:
|
|
- name: devcontainer
|
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
|
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
|
ports:
|
|
{{- if ne (.Values.ide | default "vscode") "none" }}
|
|
- containerPort: 5800
|
|
name: vnc-web
|
|
protocol: TCP
|
|
{{- end }}
|
|
{{- if .Values.ssh }}
|
|
- containerPort: 22
|
|
name: ssh
|
|
protocol: TCP
|
|
{{- end }}
|
|
env:
|
|
- name: IDE
|
|
value: {{ .Values.ide | default "vscode" | quote }}
|
|
- name: SSH
|
|
value: {{ .Values.ssh | toString | quote }}
|
|
- name: USER_ID
|
|
value: {{ .Values.userId | quote }}
|
|
- name: GROUP_ID
|
|
value: {{ .Values.groupId | quote }}
|
|
- name: DISPLAY_WIDTH
|
|
value: {{ .Values.display.width | quote }}
|
|
- name: DISPLAY_HEIGHT
|
|
value: {{ .Values.display.height | quote }}
|
|
- name: SECURE_CONNECTION
|
|
value: {{ .Values.secureConnection | quote }}
|
|
- name: HAPPY_HOME_DIR
|
|
value: {{ .Values.happyHomeDir | quote }}
|
|
- name: HAPPY_EXPERIMENTAL
|
|
value: {{ .Values.happyExperimental | quote }}
|
|
- name: HAPPY_SERVER_URL
|
|
value: {{ .Values.happyServerUrl | quote }}
|
|
- name: HAPPY_WEBAPP_URL
|
|
value: {{ .Values.happyWebappUrl | quote }}
|
|
- name: GITHUB_REPO
|
|
value: {{ .Values.githubRepo | quote }}
|
|
envFrom:
|
|
- secretRef:
|
|
name: {{ include "antigravity.envSecretName" . }}
|
|
optional: true
|
|
resources:
|
|
{{- toYaml .Values.resources | nindent 12 }}
|
|
volumeMounts:
|
|
- name: userhome
|
|
mountPath: /home
|
|
- name: workspace
|
|
mountPath: /workspace
|
|
{{- if ne (.Values.ide | default "vscode") "none" }}
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 5800
|
|
initialDelaySeconds: 30
|
|
periodSeconds: 10
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /
|
|
port: 5800
|
|
initialDelaySeconds: 10
|
|
periodSeconds: 5
|
|
{{- else if .Values.ssh }}
|
|
livenessProbe:
|
|
tcpSocket:
|
|
port: 22
|
|
initialDelaySeconds: 15
|
|
periodSeconds: 10
|
|
readinessProbe:
|
|
tcpSocket:
|
|
port: 22
|
|
initialDelaySeconds: 5
|
|
periodSeconds: 5
|
|
{{- end }}
|
|
volumes:
|
|
- name: workspace
|
|
emptyDir: {}
|
|
- name: userhome
|
|
persistentVolumeClaim:
|
|
claimName: {{ include "antigravity.pvcName" . }}
|