You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.0 KiB
40 lines
1.0 KiB
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ template "helm-guestbook.fullname" . }}
|
|
labels:
|
|
app: {{ template "helm-guestbook.name" . }}
|
|
chart: {{ template "helm-guestbook.chart" . }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
ports:
|
|
- port: {{ .Values.service.port }}
|
|
targetPort: http
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
app: {{ template "helm-guestbook.name" . }}
|
|
release: {{ .Release.Name }}
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ template "helm-guestbook.fullname" . }}-preview
|
|
labels:
|
|
app: {{ template "helm-guestbook.name" . }}
|
|
chart: {{ template "helm-guestbook.chart" . }}
|
|
release: {{ .Release.Name }}
|
|
heritage: {{ .Release.Service }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
ports:
|
|
- port: {{ .Values.service.port }}
|
|
targetPort: http
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
app: {{ template "helm-guestbook.name" . }}
|
|
release: {{ .Release.Name }}
|
|
|