This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2019-02-08 13:57:16 +00:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Service
|
|
|
|
metadata:
|
2019-07-04 14:07:16 +00:00
|
|
|
name: {{ include "passbook.fullname" . }}-web
|
2019-02-08 13:57:16 +00:00
|
|
|
labels:
|
|
|
|
app.kubernetes.io/name: {{ include "passbook.name" . }}
|
|
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
|
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
2019-11-08 11:24:02 +00:00
|
|
|
helm.sh/chart: {{ include "passbook.chart" . }}
|
|
|
|
k8s.passbook.io/component: web
|
2019-02-08 13:57:16 +00:00
|
|
|
spec:
|
2019-11-08 12:49:28 +00:00
|
|
|
type: ClusterIP
|
2019-02-08 13:57:16 +00:00
|
|
|
ports:
|
2019-11-08 12:49:28 +00:00
|
|
|
- port: 80
|
2019-02-08 13:57:16 +00:00
|
|
|
targetPort: http
|
|
|
|
protocol: TCP
|
|
|
|
name: http
|
|
|
|
selector:
|
|
|
|
app.kubernetes.io/name: {{ include "passbook.name" . }}
|
|
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
2020-02-24 12:49:42 +00:00
|
|
|
k8s.passbook.io/component: web
|