You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ the CLI documentation to find the pass-through arguments a given interaction req
62
62
Setup-Prerequisites
63
63
1. You will require certain pip packages, use the following command to install them when at the root folder of the repository.
64
64
65
-
```editorconfig
65
+
```bash
66
66
sudo pip install -r requirements.txt
67
67
```
68
68
2. Download and install the OpenShift [command-line Tools](https://mirror.openshift.com/pub/openshift-v4/clients/ocp/latest/) needed to access your OpenShift cluster.
@@ -111,7 +111,7 @@ with oc.project('openshift-infra'), oc.timeout(10*60):
111
111
forownerin pod_model.metadata.ownerReferences: # ownerReferences == oc.Missing if not present in resource
112
112
# elements of a Model are also instances of Model or ListModel
113
113
if owner.kind is not oc.Missing: # Compare as singleton
114
-
print' pod owned by a {}'.format(owner.kind) # e.g. pod was created by a StatefulSet
114
+
print(' pod owned by a {}'.format(owner.kind)) # e.g. pod was created by a StatefulSet
115
115
116
116
```
117
117
@@ -127,10 +127,10 @@ used again and again to select rows from a database.
127
127
project_selector = oc.selector("projects")
128
128
129
129
# Print the qualified name (i.e. "kind/name") of each resource selected.
0 commit comments