Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Commit

Permalink
release v0.10.0 (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienBalestra authored Aug 22, 2019
1 parent 486157b commit 25089b4
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions environments/container-linux/ignition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -100,4 +100,4 @@ storage:
filesystem: root
contents:
inline: |
531f2acd1b176cbadab3fed7429e30f744316dc2971a71da9f4e0e2f162685eb49a37c112eeb8259468317e57f7ff1ea84a2354b44034686e9762f0ca0ebf97d /opt/bin/pupernetes
35353ea46464a9c77848fbc03745de8fc6bf90b7e0ecf8011f48973b6cba571e8d3964e995397d8a8ba368d0f127b82deaa2ff916ca7544fba1b44dc6ee94bf5 /opt/bin/pupernetes
2 changes: 1 addition & 1 deletion examples/circleci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/travis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
16 changes: 16 additions & 0 deletions releasenotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
- [v0.10.0](#v0100)
- [v0.9.0](#v090)
- [v0.8.0](#v080)
- [v0.7.0](#v070)
- [v0.6.1](#v061)
Expand All @@ -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
Expand Down

0 comments on commit 25089b4

Please sign in to comment.