Update Kubernetes from v1.13.0 to v1.13.1

* https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG-1.13.md#v1131
This commit is contained in:
Dalton Hubble
2018-12-15 11:43:44 -08:00
parent 8aeec0b9b5
commit 018c5edc25
50 changed files with 110 additions and 106 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.13.0 cluster on Azure with Container Linux.
In this tutorial, we'll create a Kubernetes v1.13.1 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.13.0"
source = "git::https://github.com/poseidon/typhoon//azure/container-linux/kubernetes?ref=v1.13.1"
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.13.0
ramius-worker-000001 Ready node 25m v1.13.0
ramius-worker-000002 Ready node 24m v1.13.0
ramius-controller-0 Ready controller,master 24m v1.13.1
ramius-worker-000001 Ready node 25m v1.13.1
ramius-worker-000002 Ready node 24m v1.13.1
```
List the pods.