We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dbf359 commit 07fbbb2Copy full SHA for 07fbbb2
helm/templates/service.yaml
@@ -1 +1,15 @@
1
-
+apiVersion: v1
2
+kind: Service
3
+metadata:
4
+ name: {{ include "stac-auth-proxy.fullname" . }}
5
+ labels:
6
+ {{- include "stac-auth-proxy.labels" . | nindent 4 }}
7
+spec:
8
+ type: {{ .Values.service.type }}
9
+ ports:
10
+ - port: {{ .Values.service.port }}
11
+ targetPort: http
12
+ protocol: TCP
13
+ name: http
14
+ selector:
15
+ {{- include "stac-auth-proxy.selectorLabels" . | nindent 4 }}
0 commit comments