Skip to content

Commit

Permalink
docs: add AND operator to sequential commands (#368)
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Beemer <beeme1mr@users.noreply.github.com>
  • Loading branch information
beeme1mr authored Mar 1, 2023
1 parent 4bec5af commit 6f73a62
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The installation docs for cert manager can be found [here](https://cert-manager.
Alternatively, running the commands below will install cert manager into the `cert-manager` namespace.

```sh
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.10.1/cert-manager.yaml
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.10.1/cert-manager.yaml &&
kubectl wait --for=condition=Available=True deploy --all -n 'cert-manager'
```

Expand All @@ -17,8 +17,8 @@ kubectl wait --for=condition=Available=True deploy --all -n 'cert-manager'

Install the latest helm release:
```sh
helm repo add openfeature https://open-feature.github.io/open-feature-operator/
helm repo update
helm repo add openfeature https://open-feature.github.io/open-feature-operator/ &&
helm repo update &&
helm upgrade --install openfeature openfeature/open-feature-operator
```
### Upgrading
Expand Down Expand Up @@ -56,21 +56,21 @@ helm template openfeature/open-feature-operator -s templates/{CRD} --set default

### Uninstall
```sh
helm uninstall ofo
helm uninstall openfeature
```

## kubectl
Apply the release yaml directly via kubectl
<!-- x-release-please-start-version -->
```sh
kubectl create namespace open-feature-operator-system
kubectl create namespace open-feature-operator-system &&
kubectl apply -f https://github.com/open-feature/open-feature-operator/releases/download/v0.2.29/release.yaml
```
<!-- x-release-please-end -->
### Uninstall
<!-- x-release-please-start-version -->
```sh
kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.2.29/release.yaml
kubectl delete -f https://github.com/open-feature/open-feature-operator/releases/download/v0.2.29/release.yaml &&
kubectl delete namespace open-feature-operator-system
```
<!-- x-release-please-end -->
Expand Down

0 comments on commit 6f73a62

Please sign in to comment.