diff options
author | OpenShift Bot <eparis+openshiftbot@redhat.com> | 2017-04-27 16:28:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-27 16:28:05 -0500 |
commit | 58b1799986e7a41cc4e987dabcefa816a286b203 (patch) | |
tree | cd53fae34f32757cbb0b441bb84f7803b134b9e9 /examples/certificate-check-upload.yaml | |
parent | 2bba1017109db3fdc6aedac02e2069f79cea4c5f (diff) | |
parent | 24ca8f90e0737e7dc2cbb1102928ccf096f628dd (diff) | |
download | openshift-58b1799986e7a41cc4e987dabcefa816a286b203.tar.gz openshift-58b1799986e7a41cc4e987dabcefa816a286b203.tar.bz2 openshift-58b1799986e7a41cc4e987dabcefa816a286b203.tar.xz openshift-58b1799986e7a41cc4e987dabcefa816a286b203.zip |
Merge pull request #4009 from codificat/ex-job-fix
Merged by openshift-bot
Diffstat (limited to 'examples/certificate-check-upload.yaml')
-rw-r--r-- | examples/certificate-check-upload.yaml | 56 |
1 files changed, 31 insertions, 25 deletions
diff --git a/examples/certificate-check-upload.yaml b/examples/certificate-check-upload.yaml index b10a0b614..8b560447f 100644 --- a/examples/certificate-check-upload.yaml +++ b/examples/certificate-check-upload.yaml @@ -20,28 +20,34 @@ kind: Job metadata: name: certificate-check spec: - containers: - - name: openshift-ansible - image: openshift/openshift-ansible - env: - - name: PLAYBOOK_FILE - value: playbooks/certificate_expiry/easy-mode-upload.yaml - - name: INVENTORY_FILE - value: /tmp/inventory/hosts # from configmap vol below - - name: ANSIBLE_PRIVATE_KEY_FILE # from secret vol below - value: /opt/app-root/src/.ssh/id_rsa/ssh-privatekey - - name: CERT_EXPIRY_WARN_DAYS - value: "45" # must be a string, don't forget the quotes - volumeMounts: - - name: sshkey - mountPath: /opt/app-root/src/.ssh/id_rsa - - name: inventory - mountPath: /tmp/inventory - volumes: - - name: sshkey - secret: - secretName: sshkey - - name: inventory - configMap: - name: inventory - restartPolicy: Never + parallelism: 1 + completions: 1 + template: + metadata: + name: certificate-check + spec: + containers: + - name: openshift-ansible + image: openshift/openshift-ansible + env: + - name: PLAYBOOK_FILE + value: playbooks/certificate_expiry/easy-mode-upload.yaml + - name: INVENTORY_FILE + value: /tmp/inventory/hosts # from configmap vol below + - name: ANSIBLE_PRIVATE_KEY_FILE # from secret vol below + value: /opt/app-root/src/.ssh/id_rsa/ssh-privatekey + - name: CERT_EXPIRY_WARN_DAYS + value: "45" # must be a string, don't forget the quotes + volumeMounts: + - name: sshkey + mountPath: /opt/app-root/src/.ssh/id_rsa + - name: inventory + mountPath: /tmp/inventory + volumes: + - name: sshkey + secret: + secretName: sshkey + - name: inventory + configMap: + name: inventory + restartPolicy: Never |