mirror of
https://github.com/bitnami/charts.git
synced 2026-03-08 08:47:24 +08:00
33 lines
1.2 KiB
YAML
33 lines
1.2 KiB
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: "{{ template "phpbb.fullname" . }}"
|
|
labels:
|
|
app: "{{ template "phpbb.fullname" . }}"
|
|
chart: "{{ template "phpbb.chart" . }}"
|
|
release: {{ .Release.Name | quote }}
|
|
heritage: {{ .Release.Service | quote }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
{{- if eq .Values.service.type "LoadBalancer" }}
|
|
loadBalancerIP: {{ default "" .Values.service.loadBalancerIP }}
|
|
{{- end }}
|
|
{{- if (or (eq .Values.service.type "LoadBalancer") (eq .Values.service.type "NodePort")) }}
|
|
externalTrafficPolicy: {{ .Values.service.externalTrafficPolicy | quote }}
|
|
{{- end }}
|
|
ports:
|
|
- name: http
|
|
port: {{ .Values.service.port }}
|
|
targetPort: http
|
|
{{- if (and (eq .Values.service.type "NodePort") (not (empty .Values.service.nodePorts.http)))}}
|
|
nodePort: {{ .Values.service.nodePorts.http }}
|
|
{{- end }}
|
|
- name: https
|
|
port: {{ .Values.service.httpsPort }}
|
|
targetPort: https
|
|
{{- if (and (eq .Values.service.type "NodePort") (not (empty .Values.service.nodePorts.https)))}}
|
|
nodePort: {{ .Values.service.nodePorts.https }}
|
|
{{- end }}
|
|
selector:
|
|
app: "{{ template "phpbb.fullname" . }}"
|