Skip to content

Commit 2201fa7

Browse files
fix documents
Signed-off-by: Takeshi Yoshimura <[email protected]>
1 parent 18df42d commit 2201fa7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build_push_controller.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- uses: actions/setup-go@v2
3535
with:
3636
go-version: '1.21'
37-
- name: set ARCH and OD
37+
- name: set ARCH and OS
3838
run: |
3939
echo "ARCH=$(case $(uname -m) in x86_64) echo -n amd64 ;; aarch64) echo -n arm64 ;; *) echo -n $(uname -m) ;; esac)" >> $GITHUB_ENV
4040
echo "OS=$(uname | awk '{print tolower($0)}')" >> $GITHUB_ENV

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ $ oc new-project ocp-efa-operator
3939
$ operator-sdk run bundle ghcr.io/ocp-efa-operator-bundle:v0.0.1 --namespace ocp-efa-operator
4040
```
4141

42-
Deploy a GdrdrvDriver CRD
42+
Deploy a GdrdrvDriver CR
4343
```bash
4444
$ oc apply -f config/sample/efa_v1alpha1_gdrdrvdriver.yaml
4545
```
4646

47-
Deploy a EfaDriver CRD
47+
Deploy a EfaDriver CR
4848
```bash
4949
$ oc apply -f config/sample/efa_v1alpha1_efadriver.yaml
5050
```
@@ -83,12 +83,12 @@ $ oc create secret generic mysecret -n ocp-efa-operator --from-file=.dockerconfi
8383
$ operator-sdk run bundle myrepo.io/ocp-efa-operator-bundle:v0.0.1 --pull-secret-name mysecret --namespace ocp-efa-operator
8484
```
8585

86-
Deploy a GdrdrvDriver CRD
86+
Deploy GdrdrvDriver
8787
```bash
8888
$ oc apply -f config/sample/efa_v1alpha1_gdrdrvdriver.yaml
8989
```
9090

91-
Deploy a EfaDriver CRD
91+
Deploy EfaDriver
9292
```bash
9393
$ oc apply -f config/sample/efa_v1alpha1_efadriver.yaml
9494
```
@@ -152,13 +152,13 @@ $ oc apply -f test/gdrcopy-test.yaml
152152

153153
### Cleanup
154154

155-
Delete the CRDs
155+
Delete CRs
156156
```bash
157157
$ oc delete -f config/sample/efa_v1alpha1_efadriver.yaml
158158
$ oc delete -f config/sample/efa_v1alpha1_gdrdrvdriver.yaml
159159
```
160160

161-
Cleanup the bundle
161+
Cleanup bundle
162162
```bash
163163
$ operator-sdk cleanup ocp-efa-operator --delete-all
164164
```

0 commit comments

Comments
 (0)