Skip to content

Commit 08f4e99

Browse files
committed
*: Update Matchbox version to v0.7.0
1 parent f5ef2d1 commit 08f4e99

8 files changed

Lines changed: 15 additions & 13 deletions

File tree

CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Notable changes between releases.
44

55
## Latest
66

7+
## v0.7.0 (2017-12-12)
8+
79
* Add gRPC API endpoints for managing generic (experimental) templates
810
* Update Container Linux config transpiler to v0.5.0
911
* Update Ignition to v0.19.0, render v2.1.0 Ignition configs

Documentation/deployment.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,23 @@ Choose one of the supported installation options:
2020
Download the latest matchbox [release](https://github.com/coreos/matchbox/releases) to the provisioner host.
2121

2222
```sh
23-
$ wget https://github.com/coreos/matchbox/releases/download/v0.6.1/matchbox-v0.6.1-linux-amd64.tar.gz
24-
$ wget https://github.com/coreos/matchbox/releases/download/v0.6.1/matchbox-v0.6.1-linux-amd64.tar.gz.asc
23+
$ wget https://github.com/coreos/matchbox/releases/download/v0.7.0/matchbox-v0.7.0-linux-amd64.tar.gz
24+
$ wget https://github.com/coreos/matchbox/releases/download/v0.7.0/matchbox-v0.7.0-linux-amd64.tar.gz.asc
2525
```
2626

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

2929
```sh
3030
$ gpg --keyserver pgp.mit.edu --recv-key 18AD5014C99EF7E3BA5F6CE950BDD3E0FC8A365E
31-
$ gpg --verify matchbox-v0.6.1-linux-amd64.tar.gz.asc matchbox-v0.6.1-linux-amd64.tar.gz
31+
$ gpg --verify matchbox-v0.7.0-linux-amd64.tar.gz.asc matchbox-v0.7.0-linux-amd64.tar.gz
3232
# gpg: Good signature from "CoreOS Application Signing Key <security@coreos.com>"
3333
```
3434

3535
Untar the release.
3636

3737
```sh
38-
$ tar xzvf matchbox-v0.6.1-linux-amd64.tar.gz
39-
$ cd matchbox-v0.6.1-linux-amd64
38+
$ tar xzvf matchbox-v0.7.0-linux-amd64.tar.gz
39+
$ cd matchbox-v0.7.0-linux-amd64
4040
```
4141

4242
## Install

Documentation/dev/release.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This guide covers releasing new versions of matchbox.
88
Create a release commit which updates old version references.
99

1010
```sh
11-
$ export VERSION=v0.6.1
11+
$ export VERSION=v0.7.0
1212
```
1313

1414
## Tag
@@ -45,7 +45,7 @@ $ make release
4545
Verify the reported version.
4646

4747
```
48-
./_output/matchbox-v0.6.1-linux-amd64/matchbox -version
48+
./_output/matchbox-v0.7.0-linux-amd64/matchbox -version
4949
```
5050

5151
## Signing

Documentation/getting-started-rkt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ sudo rkt run --net=metal0:IP=172.18.0.2 \
107107
--volume data,kind=host,source=$PWD/examples \
108108
--mount volume=groups,target=/var/lib/matchbox/groups \
109109
--volume groups,kind=host,source=$PWD/examples/groups/etcd3 \
110-
quay.io/coreos/matchbox:v0.6.1 -- -address=0.0.0.0:8080 -log-level=debug
110+
quay.io/coreos/matchbox:v0.7.0 -- -address=0.0.0.0:8080 -log-level=debug
111111
```
112112
```sh
113113
sudo rkt run --net=metal0:IP=172.18.0.3 \

contrib/k8s/matchbox-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: matchbox
18-
image: quay.io/coreos/matchbox:v0.6.1
18+
image: quay.io/coreos/matchbox:v0.7.0
1919
env:
2020
- name: MATCHBOX_ADDRESS
2121
value: "0.0.0.0:8080"

contrib/systemd/matchbox-for-tectonic.service

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Documentation=https://github.com/coreos/matchbox
44

55
[Service]
66
Environment="IMAGE=quay.io/coreos/matchbox"
7-
Environment="VERSION=v0.6.1"
7+
Environment="VERSION=v0.7.0"
88
Environment="MATCHBOX_ADDRESS=0.0.0.0:8080"
99
Environment="MATCHBOX_RPC_ADDRESS=0.0.0.0:8081"
1010
Environment="MATCHBOX_LOG_LEVEL=debug"

contrib/systemd/matchbox-on-coreos.service

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Documentation=https://github.com/coreos/matchbox
44

55
[Service]
66
Environment="IMAGE=quay.io/coreos/matchbox"
7-
Environment="VERSION=v0.6.1"
7+
Environment="VERSION=v0.7.0"
88
Environment="MATCHBOX_ADDRESS=0.0.0.0:8080"
99
ExecStartPre=/usr/bin/mkdir -p /etc/matchbox
1010
ExecStartPre=/usr/bin/mkdir -p /var/lib/matchbox/assets

scripts/devnet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ function rkt_create {
117117
--volume config,kind=host,source=$CONFIG_DIR,readOnly=true \
118118
--mount volume=data,target=/var/lib/matchbox \
119119
$DATA_MOUNT \
120-
quay.io/coreos/matchbox:f26224c57dbea02adff0200037b14310ccdd2ebc -- -address=0.0.0.0:8080 -log-level=debug $MATCHBOX_ARGS
120+
quay.io/coreos/matchbox:v0.7.0 -- -address=0.0.0.0:8080 -log-level=debug $MATCHBOX_ARGS
121121

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

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

0 commit comments

Comments
 (0)