12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- {{- define "rsync.workload" -}}
- workload:
- rsync:
- enabled: true
- primary: true
- type: Deployment
- podSpec:
- hostNetwork: {{ .Values.rsyncNetwork.hostNetwork }}
- containers:
- rsync:
- enabled: true
- primary: true
- imageSelector: image
- securityContext:
- runAsUser: 0
- runAsGroup: 0
- runAsNonRoot: false
- readOnlyRootFilesystem: false
- capabilities:
- add:
- - CHOWN
- - DAC_OVERRIDE
- - FOWNER
- - SETGID
- - SETUID
- - SYS_CHROOT
- probes:
- liveness:
- enabled: true
- type: exec
- command:
- - /bin/sh
- - -c
- - |
- pgrep rsync
- readiness:
- enabled: true
- type: exec
- command:
- - /bin/sh
- - -c
- - |
- pgrep rsync
- startup:
- enabled: true
- type: exec
- command:
- - /bin/sh
- - -c
- - |
- pgrep rsync
- {{/* Service */}}
- service:
- rsync:
- enabled: true
- primary: true
- type: NodePort
- targetSelector: rsync
- ports:
- rsync:
- enabled: true
- primary: true
- port: {{ .Values.rsyncNetwork.rsyncPort }}
- nodePort: {{ .Values.rsyncNetwork.rsyncPort }}
- targetSelector: rsync
- {{/* Persistence */}}
- persistence:
- temp:
- enabled: true
- type: emptyDir
- targetSelector:
- rsync:
- rsync:
- mountPath: /tmp
- rsync-conf:
- enabled: true
- type: configmap
- objectName: config
- targetSelector:
- rsync:
- rsync:
- mountPath: /etc/rsyncd.conf
- subPath: rsyncd.conf
- readOnly: true
- {{- range $idx, $mod := .Values.rsyncModules }}
- {{ printf "rsyncd-%v" (int $idx) }}:
- enabled: {{ $mod.enabled }}
- type: hostPath
- hostPath: {{ $mod.hostPath | default "" }}
- targetSelector:
- rsync:
- rsync:
- mountPath: {{ printf "/data/%v" $mod.name }}
- {{- end }}
- {{- end -}}
|