mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
8181d13313
The new OpenShift cluster complained about deprecated types and missing options in the yaml files. Signed-off-by: Niels de Vos <ndevos@ibm.com>
44 lines
1.3 KiB
YAML
44 lines
1.3 KiB
YAML
---
|
|
apiVersion: batch/v1
|
|
kind: CronJob
|
|
metadata:
|
|
name: mirror-images
|
|
labels:
|
|
app: mirror-images
|
|
spec:
|
|
schedule: '@daily'
|
|
jobTemplate:
|
|
spec:
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: mirror-images
|
|
spec:
|
|
containers:
|
|
- name: mirror-images
|
|
image: image-registry.openshift-image-registry.svc:5000/ceph-csi/mirror-images:latest
|
|
env:
|
|
- name: DOCKER_CONFIG_JSON
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: cephcsibot-docker-io
|
|
key: .dockerconfigjson
|
|
- name: CI_REGISTRY_USER
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: container-registry-auth
|
|
key: username
|
|
- name: CI_REGISTRY_PASSWD
|
|
valueFrom:
|
|
secretKeyRef:
|
|
name: container-registry-auth
|
|
key: passwd
|
|
securityContext:
|
|
allowPrivilegeEscalation: false
|
|
runAsNonRoot: true
|
|
capabilities:
|
|
drop: ["ALL"]
|
|
seccompProfile:
|
|
type: RuntimeDefault
|
|
restartPolicy: OnFailure
|