Skip to content

Commit

Permalink
*: Prepare for v0.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dghubble committed Jan 23, 2017
1 parent cedeb86 commit 40f13e0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 27 deletions.
4 changes: 3 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ Notable changes between releases.

## Latest

Rename `bootcfg` to CoreOS `matchbox`!
## v0.5.0 (2017-01-23)

* Rename project to CoreOS `matchbox`!
* Add Profile `args` field to list kernel args
* Update [Fuze](https://github.com/coreos/container-linux-config-transpiler) and [Ignition](https://github.com/coreos/ignition) to v0.11.2
* Switch from `golang.org/x/net/context` to `context`
Expand All @@ -15,6 +16,7 @@ Rename `bootcfg` to CoreOS `matchbox`!

#### Rename

* Move repo from github.com/coreos/coreos-baremetal to github.com/coreos/matchbox
* Rename `bootcfg` binary to `matchbox`
* Rename `bootcfg` packages to `matchbox`
* Publish a `quay.io/coreos/matchbox` container image. The `quay.io/coreos/bootcfg` image will no longer be updated.
Expand Down
10 changes: 5 additions & 5 deletions Documentation/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,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.4.2/matchbox-v0.4.2-linux-amd64.tar.gz
$ wget https://github.com/coreos/matchbox/releases/download/v0.4.2/matchbox-v0.4.2-linux-amd64.tar.gz.asc
$ wget https://github.com/coreos/matchbox/releases/download/v0.5.0/matchbox-v0.5.0-linux-amd64.tar.gz
$ wget https://github.com/coreos/matchbox/releases/download/v0.5.0/matchbox-v0.5.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/).

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

Untar the release.

```sh
$ tar xzvf matchbox-v0.4.2-linux-amd64.tar.gz
$ cd matchbox-v0.4.2-linux-amd64
$ tar xzvf matchbox-v0.5.0-linux-amd64.tar.gz
$ cd matchbox-v0.5.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 @@ -7,7 +7,7 @@ This guide covers releasing new versions of matchbox.

Create a release commit which updates old version references.

export VERSION=v0.4.2
export VERSION=v0.5.0

## Tag

Expand Down Expand Up @@ -36,7 +36,7 @@ Build the release tarballs.

Verify the reported version.

./_output/matchbox-v0.4.2-linux-amd64/matchbox -version
./_output/matchbox-v0.5.0-linux-amd64/matchbox -version

## ACI

Expand Down
19 changes: 0 additions & 19 deletions scripts/devnet
Original file line number Diff line number Diff line change
Expand Up @@ -51,25 +51,6 @@ function check {
if [ ! -d $DIR/../examples/assets/coreos/$COREOS_VERSION ]; then
echo "Most examples use CoreOS $COREOS_CHANNEL $COREOS_VERSION. You may wish to download it with './scripts/get-coreos $COREOS_CHANNEL $COREOS_VERSION'."
fi

if ! ip link show metal0 > /dev/null; then
echo "Creating the metal0 virtual bridge"
mkdir -p /etc/rkt/net.d
cat > /etc/rkt/net.d/20-metal.conf << EOF
{
"name": "metal0",
"type": "bridge",
"bridge": "metal0",
"isGateway": true,
"ipMasq": true,
"ipam": {
"type": "host-local",
"subnet": "172.18.0.0/24",
"routes" : [ { "dst" : "0.0.0.0/0" } ]
}
}
EOF
fi
}

function create {
Expand Down

0 comments on commit 40f13e0

Please sign in to comment.