Files
wordyne/Chart/templates-disabled/job.yaml

24 lines
719 B
YAML
Raw Normal View History

2023-07-19 09:17:49 +02:00
{{- if .Values.site.autoRegisterEnabled | default false }}
2023-06-19 08:30:27 +02:00
apiVersion: batch/v1
kind: Job
metadata:
name: {{ include "..fullname" . }}-wpc-reg
labels:
{{- include "..labels" . | nindent 4 }}
cloudyne.systems/component: site
spec:
template:
spec:
containers:
- name: register-wpc
image: cloudyne.azurecr.io/register-wpc:latest
command: ["python3", "/app/register-wpc.py"]
2023-06-19 09:12:28 +02:00
env:
- name: WP_HOME
value: "https://{{ ( .Values.site.redirectDomain | default ( .Values.site.domain )) | replace "https://" "" | replace "http://" "" }}"
2023-06-19 08:30:27 +02:00
restartPolicy: Never
imagePullSecrets:
- name: pull-secret
backoffLimit: 4
2023-07-19 09:17:49 +02:00
{{- else }}
2023-06-19 08:30:27 +02:00
{{- end }}