GHP publish
This commit is contained in:
40
nextcloud/charts/redis/templates/redis-slave-svc.yaml
Normal file
40
nextcloud/charts/redis/templates/redis-slave-svc.yaml
Normal file
@@ -0,0 +1,40 @@
|
||||
{{- if and .Values.cluster.enabled (not .Values.sentinel.enabled) }}
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: {{ template "redis.fullname" . }}-slave
|
||||
namespace: {{ .Release.Namespace }}
|
||||
labels:
|
||||
app: {{ template "redis.name" . }}
|
||||
chart: {{ template "redis.chart" . }}
|
||||
release: {{ .Release.Name }}
|
||||
heritage: {{ .Release.Service }}
|
||||
{{- if .Values.slave.service.labels -}}
|
||||
{{- toYaml .Values.slave.service.labels | nindent 4 }}
|
||||
{{- end -}}
|
||||
{{- if .Values.slave.service.annotations }}
|
||||
annotations: {{- toYaml .Values.slave.service.annotations | nindent 4 }}
|
||||
{{- end }}
|
||||
spec:
|
||||
type: {{ .Values.slave.service.type }}
|
||||
{{- if and (eq .Values.slave.service.type "LoadBalancer") .Values.slave.service.loadBalancerIP }}
|
||||
loadBalancerIP: {{ .Values.slave.service.loadBalancerIP }}
|
||||
{{- end }}
|
||||
{{- if and (eq .Values.slave.service.type "LoadBalancer") .Values.slave.service.loadBalancerSourceRanges }}
|
||||
loadBalancerSourceRanges:
|
||||
{{- with .Values.slave.service.loadBalancerSourceRanges }}
|
||||
{{- toYaml . | nindent 4 }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
ports:
|
||||
- name: redis
|
||||
port: {{ .Values.slave.service.port }}
|
||||
targetPort: redis
|
||||
{{- if .Values.slave.service.nodePort }}
|
||||
nodePort: {{ .Values.slave.service.nodePort }}
|
||||
{{- end }}
|
||||
selector:
|
||||
app: {{ template "redis.name" . }}
|
||||
release: {{ .Release.Name }}
|
||||
role: slave
|
||||
{{- end }}
|
||||
Reference in New Issue
Block a user