Merge pull request #69 from tsandall/master

Update download links for v0.1.0
This commit is contained in:
Torin Sandall
2016-07-14 12:12:37 -07:00
committed by GitHub
2 changed files with 8 additions and 8 deletions
+3 -3
View File
@@ -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
```
+5 -5
View File
@@ -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
```