Skip to content

Commit

Permalink
chore(deps): Bump up OLM from v0.17.0 to v0.18.3 (#705)
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Pacak <pacak.daniel@gmail.com>
  • Loading branch information
danielpacak committed Sep 14, 2021
1 parent 9398fc9 commit 4b7c249
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 7 deletions.
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -266,16 +266,16 @@ kubectl delete -f deploy/crd/vulnerabilityreports.crd.yaml \
To install [Operator Lifecycle Manager][olm] (OLM) run:

```
kubectl apply -f https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.17.0/crds.yaml
kubectl apply -f https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.17.0/olm.yaml
kubectl apply -f https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.18.3/crds.yaml
kubectl apply -f https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.18.3/olm.yaml
```

or

```
curl -L https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.17.0/install.sh -o install.sh
curl -L https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.18.3/install.sh -o install.sh
chmod +x install.sh
./install.sh v0.17.0
./install.sh v0.18.3
```

### Build the Catalog Image
Expand Down
2 changes: 1 addition & 1 deletion build/mkdocs-material/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM squidfunk/mkdocs-material:7.2.2
FROM squidfunk/mkdocs-material:7.2.6

## If you want to see exactly the same version as is published to GitHub pages
## use a private image for insiders, which requires authentication.
Expand Down
11 changes: 9 additions & 2 deletions docs/operator/installation/olm.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,20 @@ configure it to watch the `default` namespaces:

1. Install the Operator Lifecycle Manager:
```
curl -sL https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.17.0/install.sh | bash -s v0.17.0
curl -L https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.18.3/install.sh -o install.sh
chmod +x install.sh
./install.sh v0.18.3
```
or
```
kubectl apply -f https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.18.3/crds.yaml
kubectl apply -f https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.18.3/olm.yaml
```
2. Create the namespace to install the operator in:
```
kubectl create ns starboard-operator
```
3. Declare the target namespaces by creating the OperatorGroup:
3. Declare `default` as the target namespace by creating the OperatorGroup:
```
cat << EOF | kubectl apply -f -
apiVersion: operators.coreos.com/v1alpha2
Expand Down

0 comments on commit 4b7c249

Please sign in to comment.