diff --git a/site/examples/docker-authorization/index.md b/site/examples/docker-authorization/index.md index 5631a45914..d1dad35b8b 100644 --- a/site/examples/docker-authorization/index.md +++ b/site/examples/docker-authorization/index.md @@ -66,7 +66,7 @@ $ mkdir -p policies ### 2. Download the latest version of OPA. ```shell -$ curl -L https://github.com/open-policy-agent/opa/releases/download/v0.1.0-rc3/opa_linux_amd64 > opa +$ curl -L https://github.com/open-policy-agent/opa/releases/download/v0.1.0/opa_linux_amd64 > opa $ chmod u+x opa ``` @@ -74,7 +74,7 @@ $ chmod u+x opa ### 3. Run OPA in server mode with logging enabled. ```shell -$ opa run -s --alsologtostderr 1 --v 2 --policy-dir policies +$ ./opa run -s --alsologtostderr 1 --v 2 --policy-dir policies ``` OPA will run until it receives a signal to stop. Open another terminal to continue with the rest of the example. @@ -82,7 +82,7 @@ OPA will run until it receives a signal to stop. Open another terminal to contin ### 4. Download the [open-policy-agent/docker-authz-plugin](https://github.com/open-policy-agent/docker-authz-plugin) executable. ```shell -$ curl -L https://github.com/open-policy-agent/docker-authz-plugin/releases/download/v0.1.0-rc1/docker-authz-plugin_linux_amd64 > docker-authz-plugin +$ curl -L https://github.com/open-policy-agent/docker-authz-plugin/releases/download/v0.1.0/docker-authz-plugin_linux_amd64 > docker-authz-plugin $ chmod u+x docker-authz-plugin ``` diff --git a/site/get-opa/index.md b/site/get-opa/index.md index 198394032c..10ab90b644 100644 --- a/site/get-opa/index.md +++ b/site/get-opa/index.md @@ -13,9 +13,9 @@ title: Get Open Policy Agent OPA is available as binary releases for 64-bit Linux and Mac OS X or as Golang source code. {: .opa-header--text} - * [64-bit Linux](https://github.com/open-policy-agent/opa/releases/download/v0.1.0-rc3/opa_linux_amd64){: .opa-header--download-list--link} - * [64-bit Mac OS X](https://github.com/open-policy-agent/opa/releases/download/v0.1.0-rc3/opa_darwin_amd64){: .opa-header--download-list--link} - * [Go Source](https://github.com/open-policy-agent/opa/archive/v0.1.0-rc3.tar.gz){: .opa-header--download-list--link} + * [64-bit Linux](https://github.com/open-policy-agent/opa/releases/download/v0.1.0/opa_linux_amd64){: .opa-header--download-list--link} + * [64-bit Mac OS X](https://github.com/open-policy-agent/opa/releases/download/v0.1.0/opa_darwin_amd64){: .opa-header--download-list--link} + * [Go Source](https://github.com/open-policy-agent/opa/archive/v0.1.0.tar.gz){: .opa-header--download-list--link} {: .opa-header--download-list} {% endcontentfor %} @@ -25,7 +25,7 @@ OPA is available as binary releases for 64-bit Linux and Mac OS X or as Golang s ## 64-bit Linux ```shell -$ curl -L https://github.com/open-policy-agent/opa/releases/download/v0.1.0-rc3/opa_linux_amd64 > opa +$ curl -L https://github.com/open-policy-agent/opa/releases/download/v0.1.0/opa_linux_amd64 > opa $ chmod u+x opa $ ./opa version ``` @@ -33,7 +33,7 @@ $ ./opa version ## 64-bit Mac OS X ```shell -$ curl -L https://github.com/open-policy-agent/opa/releases/download/v0.1.0-rc3/opa_darwin_amd64 > opa +$ curl -L https://github.com/open-policy-agent/opa/releases/download/v0.1.0/opa_darwin_amd64 > opa $ chmod u+x opa $ ./opa version ```