Skip to content

Commit

Permalink
*: Update Matchbox version to v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dghubble committed Dec 12, 2017
1 parent f5ef2d1 commit 08f4e99
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 13 deletions.
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Notable changes between releases.

## Latest

## v0.7.0 (2017-12-12)

* Add gRPC API endpoints for managing generic (experimental) templates
* Update Container Linux config transpiler to v0.5.0
* Update Ignition to v0.19.0, render v2.1.0 Ignition configs
Expand Down
10 changes: 5 additions & 5 deletions Documentation/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,23 @@ Choose one of the supported installation options:
Download the latest matchbox [release](https://github.com/coreos/matchbox/releases) to the provisioner host.

```sh
$ wget https://github.com/coreos/matchbox/releases/download/v0.6.1/matchbox-v0.6.1-linux-amd64.tar.gz
$ wget https://github.com/coreos/matchbox/releases/download/v0.6.1/matchbox-v0.6.1-linux-amd64.tar.gz.asc
$ wget https://github.com/coreos/matchbox/releases/download/v0.7.0/matchbox-v0.7.0-linux-amd64.tar.gz
$ wget https://github.com/coreos/matchbox/releases/download/v0.7.0/matchbox-v0.7.0-linux-amd64.tar.gz.asc
```

Verify the release has been signed by the [CoreOS App Signing Key](https://coreos.com/security/app-signing-key/).

```sh
$ gpg --keyserver pgp.mit.edu --recv-key 18AD5014C99EF7E3BA5F6CE950BDD3E0FC8A365E
$ gpg --verify matchbox-v0.6.1-linux-amd64.tar.gz.asc matchbox-v0.6.1-linux-amd64.tar.gz
$ gpg --verify matchbox-v0.7.0-linux-amd64.tar.gz.asc matchbox-v0.7.0-linux-amd64.tar.gz
# gpg: Good signature from "CoreOS Application Signing Key <[email protected]>"
```

Untar the release.

```sh
$ tar xzvf matchbox-v0.6.1-linux-amd64.tar.gz
$ cd matchbox-v0.6.1-linux-amd64
$ tar xzvf matchbox-v0.7.0-linux-amd64.tar.gz
$ cd matchbox-v0.7.0-linux-amd64
```

## Install
Expand Down
4 changes: 2 additions & 2 deletions Documentation/dev/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This guide covers releasing new versions of matchbox.
Create a release commit which updates old version references.

```sh
$ export VERSION=v0.6.1
$ export VERSION=v0.7.0
```

## Tag
Expand Down Expand Up @@ -45,7 +45,7 @@ $ make release
Verify the reported version.

```
./_output/matchbox-v0.6.1-linux-amd64/matchbox -version
./_output/matchbox-v0.7.0-linux-amd64/matchbox -version
```

## Signing
Expand Down
2 changes: 1 addition & 1 deletion Documentation/getting-started-rkt.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ sudo rkt run --net=metal0:IP=172.18.0.2 \
--volume data,kind=host,source=$PWD/examples \
--mount volume=groups,target=/var/lib/matchbox/groups \
--volume groups,kind=host,source=$PWD/examples/groups/etcd3 \
quay.io/coreos/matchbox:v0.6.1 -- -address=0.0.0.0:8080 -log-level=debug
quay.io/coreos/matchbox:v0.7.0 -- -address=0.0.0.0:8080 -log-level=debug
```
```sh
sudo rkt run --net=metal0:IP=172.18.0.3 \
Expand Down
2 changes: 1 addition & 1 deletion contrib/k8s/matchbox-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: matchbox
image: quay.io/coreos/matchbox:v0.6.1
image: quay.io/coreos/matchbox:v0.7.0
env:
- name: MATCHBOX_ADDRESS
value: "0.0.0.0:8080"
Expand Down
2 changes: 1 addition & 1 deletion contrib/systemd/matchbox-for-tectonic.service
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Documentation=https://github.com/coreos/matchbox

[Service]
Environment="IMAGE=quay.io/coreos/matchbox"
Environment="VERSION=v0.6.1"
Environment="VERSION=v0.7.0"
Environment="MATCHBOX_ADDRESS=0.0.0.0:8080"
Environment="MATCHBOX_RPC_ADDRESS=0.0.0.0:8081"
Environment="MATCHBOX_LOG_LEVEL=debug"
Expand Down
2 changes: 1 addition & 1 deletion contrib/systemd/matchbox-on-coreos.service
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Documentation=https://github.com/coreos/matchbox

[Service]
Environment="IMAGE=quay.io/coreos/matchbox"
Environment="VERSION=v0.6.1"
Environment="VERSION=v0.7.0"
Environment="MATCHBOX_ADDRESS=0.0.0.0:8080"
ExecStartPre=/usr/bin/mkdir -p /etc/matchbox
ExecStartPre=/usr/bin/mkdir -p /var/lib/matchbox/assets
Expand Down
4 changes: 2 additions & 2 deletions scripts/devnet
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ function rkt_create {
--volume config,kind=host,source=$CONFIG_DIR,readOnly=true \
--mount volume=data,target=/var/lib/matchbox \
$DATA_MOUNT \
quay.io/coreos/matchbox:f26224c57dbea02adff0200037b14310ccdd2ebc -- -address=0.0.0.0:8080 -log-level=debug $MATCHBOX_ARGS
quay.io/coreos/matchbox:v0.7.0 -- -address=0.0.0.0:8080 -log-level=debug $MATCHBOX_ARGS

echo "Starting dnsmasq to provide DHCP/TFTP/DNS services"
rkt rm --uuid-file=/var/run/dnsmasq-pod.uuid > /dev/null 2>&1
Expand Down Expand Up @@ -174,7 +174,7 @@ function docker_create {
-v $CONFIG_DIR:/etc/matchbox:Z \
-v $ASSETS_DIR:/var/lib/matchbox/assets:Z \
$DATA_MOUNT \
quay.io/coreos/matchbox:f26224c57dbea02adff0200037b14310ccdd2ebc -address=0.0.0.0:8080 -log-level=debug $MATCHBOX_ARGS
quay.io/coreos/matchbox:v0.7.0 -address=0.0.0.0:8080 -log-level=debug $MATCHBOX_ARGS

echo "Starting dnsmasq to provide DHCP/TFTP/DNS services"
docker run --name dnsmasq \
Expand Down

0 comments on commit 08f4e99

Please sign in to comment.