| Giorgi Lekveishvili | 807a531 | 2024-08-26 09:33:41 +0400 | [diff] [blame^] | 1 | apiVersion: v1 |
| 2 | kind: Service | ||||
| 3 | metadata: | ||||
| 4 | name: {{ .Values.name }}-code-server | ||||
| 5 | spec: | ||||
| 6 | type: ClusterIP | ||||
| 7 | selector: | ||||
| 8 | app: {{ .Values.name }} | ||||
| 9 | ports: | ||||
| 10 | - name: http | ||||
| 11 | port: 80 | ||||
| 12 | targetPort: 8080 # TODO(gio): add to values.yaml | ||||
| 13 | protocol: TCP | ||||