Skip to content

Commit

Permalink
fix(coder): format app.yaml for better readability and consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
qjoly committed Jan 11, 2025
1 parent 8e5382b commit d25697b
Showing 1 changed file with 34 additions and 34 deletions.
68 changes: 34 additions & 34 deletions cortado/apps/coder/app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,37 +20,37 @@ spec:
env:
- name: HELM_VALUES
value: |
persistence:
enabled: true
storageClass: ""
size: 10Gi
extraInitContainers: |
- name: customization
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
imagePullPolicy: IfNotPresent
env:
- name: SERVICE_URL
value: https://open-vsx.org/vscode/gallery
- name: ITEM_URL
value: https://open-vsx.org/vscode/item
command:
- sh
- -c
- |
code-server --install-extension golang.Go
volumeMounts:
- name: data
mountPath: /home/coder
ingress:
enabled: true
annotations:
cert-manager.io/cluster-issuer: cloudflare
hosts:
- host: code.cortado.<path:kv/cluster#domain>
paths:
- /
ingressClassName: "nginx"
tls:
- secretName: code-server
hosts:
- code.cortado.<path:kv/cluster#domain>
persistence:
enabled: true
storageClass: ""
size: 10Gi
extraInitContainers: |
- name: customization
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
imagePullPolicy: IfNotPresent
env:
- name: SERVICE_URL
value: https://open-vsx.org/vscode/gallery
- name: ITEM_URL
value: https://open-vsx.org/vscode/item
command:
- sh
- -c
- |
code-server --install-extension golang.Go
volumeMounts:
- name: data
mountPath: /home/coder
ingress:
enabled: true
annotations:
cert-manager.io/cluster-issuer: cloudflare
hosts:
- host: code.cortado.<path:kv/cluster#domain>
paths:
- /
ingressClassName: "nginx"
tls:
- secretName: code-server
hosts:
- code.cortado.<path:kv/cluster#domain>

0 comments on commit d25697b

Please sign in to comment.