Skip to content

Commit b97328b

Browse files
committed
Prepare for Matchbox v0.8.0 release
1 parent e1d2d8f commit b97328b

7 files changed

Lines changed: 15 additions & 12 deletions

File tree

CHANGES.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ Notable changes between releases.
44

55
## Latest
66

7-
* Transfer Matchbox from coreos to poseidon GitHub Org
7+
8+
## v0.8.0
9+
10+
* Transfer Matchbox repo from coreos to poseidon GitHub Org
811
* Publish container images at [quay.io/poseidon/matchbox](https://quay.io/repository/poseidon/matchbox)
912
* Build Matchbox with Go v1.11.7 for images and binaries
1013
* Update container image base from alpine:3.6 to alpine:3.9

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/poseidon/matchbox/releases) to the provisioner host.
2121

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

2727
Verify the release has been signed by Dalton Hubble's [GPG Key 8F515AD1602065C8](https://keyserver.ubuntu.com/pks/lookup?search=0x8F515AD1602065C8&op=vindex).
2828

2929
```sh
3030
$ gpg --keyserver keyserver.ubuntu.com --recv-key 8F515AD1602065C8
31-
$ gpg --verify matchbox-v0.7.1-linux-amd64.tar.gz.asc matchbox-v0.7.1-linux-amd64.tar.gz
31+
$ gpg --verify matchbox-v0.8.0-linux-amd64.tar.gz.asc matchbox-v0.8.0-linux-amd64.tar.gz
3232
gpg: Good signature from "Dalton Hubble <dghubble@gmail.com>"
3333
```
3434

3535
Untar the release.
3636

3737
```sh
38-
$ tar xzvf matchbox-v0.7.1-linux-amd64.tar.gz
39-
$ cd matchbox-v0.7.1-linux-amd64
38+
$ tar xzvf matchbox-v0.8.0-linux-amd64.tar.gz
39+
$ cd matchbox-v0.8.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.7.1
11+
$ export VERSION=v0.8.0
1212
```
1313

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

4747
```
48-
./_output/matchbox-v0.7.1-linux-amd64/matchbox -version
48+
./_output/matchbox-v0.8.0-linux-amd64/matchbox -version
4949
```
5050

5151
## Signing

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/poseidon/matchbox:v0.7.1
18+
image: quay.io/poseidon/matchbox:v0.8.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/poseidon/matchbox"
7-
Environment="VERSION=v0.7.1"
7+
Environment="VERSION=v0.8.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/poseidon/matchbox"
7-
Environment="VERSION=v0.7.1"
7+
Environment="VERSION=v0.8.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: 1 addition & 1 deletion
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/poseidon/matchbox:v0.7.1 -- -address=0.0.0.0:8080 -log-level=debug $MATCHBOX_ARGS
120+
quay.io/poseidon/matchbox:v0.8.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

0 commit comments

Comments
 (0)