summaryrefslogtreecommitdiffstats
path: root/examples/README.md
diff options
context:
space:
mode:
authorPep TurrĂ³ Mauri <pep@redhat.com>2017-04-26 11:13:47 +0200
committerPep TurrĂ³ Mauri <pep@redhat.com>2017-04-26 11:22:56 +0200
commit24ca8f90e0737e7dc2cbb1102928ccf096f628dd (patch)
tree06a41cdd64a6ce5cb05e3c4506ac036085ef76c9 /examples/README.md
parent5f49e91b5419e7491a4df1d0b0f217bfb0ff97b9 (diff)
downloadopenshift-24ca8f90e0737e7dc2cbb1102928ccf096f628dd.tar.gz
openshift-24ca8f90e0737e7dc2cbb1102928ccf096f628dd.tar.bz2
openshift-24ca8f90e0737e7dc2cbb1102928ccf096f628dd.tar.xz
openshift-24ca8f90e0737e7dc2cbb1102928ccf096f628dd.zip
Fix certificate check Job examples
The example Job specifications were wrong (they had a Pod spec instead). Also fixing a tabs-vs-spaces problem in examples/README.md.
Diffstat (limited to 'examples/README.md')
-rw-r--r--examples/README.md26
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: