diff --git a/README.md b/README.md index 22d9249..be29166 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ make You need to download the last version: ```bash -VERSION=0.9.0 +VERSION=0.10.0 curl -LOf https://github.com/DataDog/pupernetes/releases/download/v${VERSION}/pupernetes chmod +x ./pupernetes ./pupernetes --help diff --git a/environments/container-linux/ignition.yaml b/environments/container-linux/ignition.yaml index 5febbda..72968d9 100644 --- a/environments/container-linux/ignition.yaml +++ b/environments/container-linux/ignition.yaml @@ -91,7 +91,7 @@ storage: contents: inline: | #!/bin/bash -ex - curl -Lf https://github.com/DataDog/pupernetes/releases/download/v0.9.0/pupernetes -o /opt/bin/pupernetes + curl -Lf https://github.com/DataDog/pupernetes/releases/download/v0.10.0/pupernetes -o /opt/bin/pupernetes sha512sum -c /opt/bin/pupernetes.sha512sum chmod +x /opt/bin/pupernetes @@ -100,4 +100,4 @@ storage: filesystem: root contents: inline: | - 531f2acd1b176cbadab3fed7429e30f744316dc2971a71da9f4e0e2f162685eb49a37c112eeb8259468317e57f7ff1ea84a2354b44034686e9762f0ca0ebf97d /opt/bin/pupernetes + 35353ea46464a9c77848fbc03745de8fc6bf90b7e0ecf8011f48973b6cba571e8d3964e995397d8a8ba368d0f127b82deaa2ff916ca7544fba1b44dc6ee94bf5 /opt/bin/pupernetes diff --git a/examples/circleci.yaml b/examples/circleci.yaml index 1a1392a..c026913 100644 --- a/examples/circleci.yaml +++ b/examples/circleci.yaml @@ -14,7 +14,7 @@ jobs: - checkout - run: name: download - command: sudo curl -Lf https://github.com/DataDog/pupernetes/releases/download/v0.9.0/pupernetes -o /usr/local/bin/pupernetes && sudo chmod +x /usr/local/bin/pupernetes + command: sudo curl -Lf https://github.com/DataDog/pupernetes/releases/download/v0.10.0/pupernetes -o /usr/local/bin/pupernetes && sudo chmod +x /usr/local/bin/pupernetes - run: name: apt command: sudo apt-get update -qq && sudo apt-get install -yqq systemd diff --git a/examples/travis.yaml b/examples/travis.yaml index 9f18d03..4378867 100644 --- a/examples/travis.yaml +++ b/examples/travis.yaml @@ -22,7 +22,7 @@ install: - sudo apt-get install -yqq systemd - sudo curl -Lf https://storage.googleapis.com/kubernetes-release/release/v$HYPERKUBE_VERSION/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl - sudo chmod +x /usr/local/bin/kubectl - - sudo curl -Lf https://github.com/DataDog/pupernetes/releases/download/v0.9.0/pupernetes -o /usr/local/bin/pupernetes + - sudo curl -Lf https://github.com/DataDog/pupernetes/releases/download/v0.10.0/pupernetes -o /usr/local/bin/pupernetes - sudo chmod +x /usr/local/bin/pupernetes script: diff --git a/releasenotes.md b/releasenotes.md index 1a5fb8d..379bc84 100644 --- a/releasenotes.md +++ b/releasenotes.md @@ -1,3 +1,5 @@ +- [v0.10.0](#v0100) +- [v0.9.0](#v090) - [v0.8.0](#v080) - [v0.7.0](#v070) - [v0.6.1](#v061) @@ -8,6 +10,20 @@ - [v0.2.1](#v021) - [v0.2.0](#v020) + +## v0.10.0 + +### Enhancement +* kube-apiserver: remove deprecated admission control flag #135 +* setup: increase the verbosity of everything #133 +* Update CNI #132 +* Add Kubernetes 1.14 #130 + + +### Bugfixes +* Fix systemd unit files #131 + + ## v0.9.0 ### Enhancement