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/README.md | |
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/README.md')
-rw-r--r-- | examples/README.md | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/examples/README.md b/examples/README.md index 0e412244d..d54752fb9 100644 --- a/examples/README.md +++ b/examples/README.md @@ -69,19 +69,19 @@ To run these examples we prepare the inventory and ssh keys as in the other exam Additionally we allocate a `PersistentVolumeClaim` to store the reports: - oc create -f - <<PVC - --- - apiVersion: v1 - kind: PersistentVolumeClaim - metadata: - name: certcheck-reports - spec: - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 1Gi - PVC + oc create -f - <<PVC + --- + apiVersion: v1 + kind: PersistentVolumeClaim + metadata: + name: certcheck-reports + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi + PVC With that we can run the `Job` once: |