Skip to content

Commit

Permalink
kubespray: 2.14 -> 2.15
Browse files Browse the repository at this point in the history
This is 2.15 with kubernetes-sigs/kubespray#7247
cherry-picked on top; as we need it for offline deploy.

It will allow us to point the docker install playbook to an alternative
package repository.

Though 2.14 we never had in a release, I will still provide some upgrade
instructions:

To upgrade an existing cluster follow the instructions here:
https://kubespray.io/#/docs/upgrades?id=graceful-upgrade

```
$ cd ansible
$ ansible-playbook ./roles-external/kubespray/upgrade-cluster.yml -i ./your-inventory
```

This should guide you through the upgrade process step by step.
  • Loading branch information
arianvp authored and jmatsushita committed Mar 3, 2021
1 parent 7c435d2 commit 8c7a686
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
wire-server instead and is decoupled from the underlying platform. Charts in wire-server
should be installed with helm 3.

* Our kubespray reference implementation has been bumped to kuberspray 2.14.2
and kubernetes 1.18.2. This allows us to use Kubespray's support for offline deployments
* Our kubespray reference implementation has been bumped to kuberspray 2.15.0
and kubernetes 1.97.7. This allows us to use Kubespray's support for offline deployments
and new Kubernetes API features.

If you were using our reference playbooks for setting up kubernetes, there is
Expand Down
2 changes: 1 addition & 1 deletion ansible/roles-external/kubespray
Submodule kubespray updated 388 files
6 changes: 3 additions & 3 deletions nix/pkgs/kubectl.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

stdenv.mkDerivation rec {
pname = "kubectl";
version = "1.18.10";
version = "1.19.7";

src = {
x86_64-linux = fetchurl {
url = "https://storage.googleapis.com/kubernetes-release/release/v${version}/bin/linux/amd64/kubectl";
sha256 = "0mhlpailnfq5c6i9ka2ws5z8grylrq5va4qcb7g6icbandf48p5j";
sha256 = "15vjydl91h0igvps2zcxj9bjyksb88ckavdwxmmmnpjpwaxv6vnl";
};
x86_64-darwin = fetchurl {
url = "https://storage.googleapis.com/kubernetes-release/release/v${version}/bin/darwin/amd64/kubectl";
sha256 = "0nz6f44qh16di6249qwczvr1mpmhvzbi0kd1himxlhsp34qfr993";
sha256 = "1gpn6l8l5zznkrvydjv5km906adniid4wpsqy3qpdzlmgpscx1ir";
};
}."${stdenv.targetPlatform.system}";

Expand Down

0 comments on commit 8c7a686

Please sign in to comment.