Skip to content

Commit

Permalink
Remove AUTHORINO_IMAGE parameter from the OpenShift tutorial
Browse files Browse the repository at this point in the history
The specific Authorino image tag used in this tutorial is tied to
version of the CRD installed and therefore it must be fixed in the
manifests (hosted elsewhere), rather than set through a parameter.
  • Loading branch information
guicassolato committed Aug 31, 2021
1 parent ca68fff commit 4aaa211
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions docs/tutorials/openshift-demo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ Follow the instructions below to deploy the stack of resources and applications
```sh
$ export OPENSHIFT_TOKEN=my-openshift-access-token \
AUTHORINO_NAMESPACE=authorino-demo \
AUTHORINO_IMAGE=quay.io/3scale/authorino:20210415 \
TALKER_API_HOST=talker-api.apps.my-openshift-server
```

Expand All @@ -73,7 +72,7 @@ Follow the instructions below to deploy the stack of resources and applications
5. Patch the resources replacing the parameters to your env values:

```sh
$ sed -i -e "s/\${AUTHORINO_NAMESPACE}/$AUTHORINO_NAMESPACE/g;s/\${AUTHORINO_IMAGE}/$(print $AUTHORINO_IMAGE | sed -e 's/\//\\\//g')/g;s/\${TALKER_API_HOST}/$(print $TALKER_API_HOST | sed -e 's/\./\\\./g')/g" *.yaml
$ sed -i -e "s/\${AUTHORINO_NAMESPACE}/$AUTHORINO_NAMESPACE/g;s/\${TALKER_API_HOST}/$(print $TALKER_API_HOST | sed -e 's/\./\\\./g')/g" *.yaml
```

6. Deploy Authorino:
Expand Down

0 comments on commit 4aaa211

Please sign in to comment.