Update Kubernetes from v1.12.2 to v1.12.3

* https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.12.md/#v1123
This commit is contained in:
Dalton Hubble
2018-11-26 21:02:59 -08:00
parent 840b73f9ba
commit 5b27d8d889
49 changed files with 108 additions and 107 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.12.2 cluster on Azure with Container Linux.
In this tutorial, we'll create a Kubernetes v1.12.3 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.
@ -91,7 +91,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.12.2"
source = "git::https://github.com/poseidon/typhoon//azure/container-linux/kubernetes?ref=v1.12.3"
providers = {
azurerm = "azurerm.default"
@ -165,9 +165,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.12.2
ramius-worker-000001 Ready node 25m v1.12.2
ramius-worker-000002 Ready node 24m v1.12.2
ramius-controller-0 Ready controller,master 24m v1.12.3
ramius-worker-000001 Ready node 25m v1.12.3
ramius-worker-000002 Ready node 24m v1.12.3
```
List the pods.