3 changed files with 23 additions and 1 deletions
@ -0,0 +1,20 @@ |
|||
apiVersion: v1 |
|||
kind: Service |
|||
metadata: |
|||
name: guestbook-canary-service |
|||
namespace: {{ 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 }} |
Loading…
Reference in new issue