Update Kubernetes from v1.14.1 to v1.14.2

* https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.14.md#v1142
This commit is contained in:
Dalton Hubble
2019-05-17 13:09:15 +02:00
parent 37ce722f9c
commit da97bd4f12
42 changed files with 99 additions and 98 deletions

View File

@ -3,7 +3,7 @@
!!! danger
Typhoon for Azure is alpha. For production, use AWS, Google Cloud, or bare-metal. As Azure matures, check [errata](https://github.com/poseidon/typhoon/wiki/Errata) for known shortcomings.
In this tutorial, we'll create a Kubernetes v1.14.1 cluster on Azure with Container Linux.
In this tutorial, we'll create a Kubernetes v1.14.2 cluster on Azure with Container Linux.
We'll declare a Kubernetes cluster using the Typhoon Terraform module. Then apply the changes to create a resource group, virtual network, subnets, security groups, controller availability set, worker scale set, load balancer, and TLS assets.
@ -87,7 +87,7 @@ Define a Kubernetes cluster using the module `azure/container-linux/kubernetes`.
```tf
module "azure-ramius" {
source = "git::https://github.com/poseidon/typhoon//azure/container-linux/kubernetes?ref=v1.14.1"
source = "git::https://github.com/poseidon/typhoon//azure/container-linux/kubernetes?ref=v1.14.2"
providers = {
azurerm = "azurerm.default"
@ -161,9 +161,9 @@ In 4-8 minutes, the Kubernetes cluster will be ready.
$ export KUBECONFIG=/home/user/.secrets/clusters/ramius/auth/kubeconfig
$ kubectl get nodes
NAME STATUS ROLES AGE VERSION
ramius-controller-0 Ready controller,master 24m v1.14.1
ramius-worker-000001 Ready node 25m v1.14.1
ramius-worker-000002 Ready node 24m v1.14.1
ramius-controller-0 Ready controller,master 24m v1.14.2
ramius-worker-000001 Ready node 25m v1.14.2
ramius-worker-000002 Ready node 24m v1.14.2
```
List the pods.