Skip to content

Commit

Permalink
fix documents
Browse files Browse the repository at this point in the history
Signed-off-by: Takeshi Yoshimura <tyos@jp.ibm.com>
  • Loading branch information
takeshi-yoshimura committed Nov 22, 2023
1 parent 18df42d commit 2201fa7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_push_controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: '1.21'
- name: set ARCH and OD
- name: set ARCH and OS
run: |
echo "ARCH=$(case $(uname -m) in x86_64) echo -n amd64 ;; aarch64) echo -n arm64 ;; *) echo -n $(uname -m) ;; esac)" >> $GITHUB_ENV
echo "OS=$(uname | awk '{print tolower($0)}')" >> $GITHUB_ENV
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ $ oc new-project ocp-efa-operator
$ operator-sdk run bundle ghcr.io/ocp-efa-operator-bundle:v0.0.1 --namespace ocp-efa-operator
```

Deploy a GdrdrvDriver CRD
Deploy a GdrdrvDriver CR
```bash
$ oc apply -f config/sample/efa_v1alpha1_gdrdrvdriver.yaml
```

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

Deploy a GdrdrvDriver CRD
Deploy GdrdrvDriver
```bash
$ oc apply -f config/sample/efa_v1alpha1_gdrdrvdriver.yaml
```

Deploy a EfaDriver CRD
Deploy EfaDriver
```bash
$ oc apply -f config/sample/efa_v1alpha1_efadriver.yaml
```
Expand Down Expand Up @@ -152,13 +152,13 @@ $ oc apply -f test/gdrcopy-test.yaml

### Cleanup

Delete the CRDs
Delete CRs
```bash
$ oc delete -f config/sample/efa_v1alpha1_efadriver.yaml
$ oc delete -f config/sample/efa_v1alpha1_gdrdrvdriver.yaml
```

Cleanup the bundle
Cleanup bundle
```bash
$ operator-sdk cleanup ocp-efa-operator --delete-all
```

0 comments on commit 2201fa7

Please sign in to comment.