Update recommended Terraform provider versions
* Sync Terraform provider plugins with those used internally
This commit is contained in:
parent
9fbfbdb854
commit
b1e680ac0c
|
@ -4,6 +4,8 @@ Notable changes between versions.
|
|||
|
||||
## Latest
|
||||
|
||||
## v1.19.3
|
||||
|
||||
* Update Cilium from v1.8.3 to [v1.8.4](https://github.com/cilium/cilium/releases/tag/v1.8.4)
|
||||
* Update Calico from v1.15.3 to [v1.16.3](https://github.com/projectcalico/calico/releases/tag/v3.16.3) ([#851](https://github.com/poseidon/typhoon/pull/851))
|
||||
* Update flannel from v0.13.0-rc2 to v0.13.0 ([#219](https://github.com/poseidon/terraform-render-bootstrap/pull/219))
|
||||
|
|
|
@ -55,7 +55,7 @@ terraform {
|
|||
}
|
||||
aws = {
|
||||
source = "hashicorp/aws"
|
||||
version = "3.10.0"
|
||||
version = "3.11.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -52,7 +52,7 @@ terraform {
|
|||
}
|
||||
azurerm = {
|
||||
source = "hashicorp/azurerm"
|
||||
version = "2.31.1"
|
||||
version = "2.32.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -56,7 +56,7 @@ terraform {
|
|||
}
|
||||
google = {
|
||||
source = "hashicorp/google"
|
||||
version = "3.42.0"
|
||||
version = "3.43.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# AWS
|
||||
|
||||
In this tutorial, we'll create a Kubernetes v1.19.3 cluster on AWS with CoreOS Container Linux or Flatcar Linux.
|
||||
In this tutorial, we'll create a Kubernetes v1.19.3 cluster on AWS with Flatcar Linux.
|
||||
|
||||
We'll declare a Kubernetes cluster using the Typhoon Terraform module. Then apply the changes to create a VPC, gateway, subnets, security groups, controller instances, worker auto-scaling group, network load balancer, and TLS assets.
|
||||
|
||||
|
@ -55,7 +55,7 @@ terraform {
|
|||
}
|
||||
aws = {
|
||||
source = "hashicorp/aws"
|
||||
version = "3.10.0"
|
||||
version = "3.11.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Azure
|
||||
|
||||
In this tutorial, we'll create a Kubernetes v1.19.3 cluster on Azure with CoreOS Container Linux or Flatcar Linux.
|
||||
In this tutorial, we'll create a Kubernetes v1.19.3 cluster on Azure with Flatcar 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.
|
||||
|
||||
|
@ -52,7 +52,7 @@ terraform {
|
|||
}
|
||||
azurerm = {
|
||||
source = "hashicorp/azurerm"
|
||||
version = "2.31.1"
|
||||
version = "2.32.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Bare-Metal
|
||||
|
||||
In this tutorial, we'll network boot and provision a Kubernetes v1.19.3 cluster on bare-metal with CoreOS Container Linux or Flatcar Linux.
|
||||
In this tutorial, we'll network boot and provision a Kubernetes v1.19.3 cluster on bare-metal with Flatcar Linux.
|
||||
|
||||
First, we'll deploy a [Matchbox](https://github.com/poseidon/matchbox) service and setup a network boot environment. Then, we'll declare a Kubernetes cluster using the Typhoon Terraform module and power on machines. On PXE boot, machines will install Container Linux to disk, reboot into the disk install, and provision themselves as Kubernetes controllers or workers via Ignition.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# DigitalOcean
|
||||
|
||||
In this tutorial, we'll create a Kubernetes v1.19.3 cluster on DigitalOcean with CoreOS Container Linux or Flatcar Linux.
|
||||
In this tutorial, we'll create a Kubernetes v1.19.3 cluster on DigitalOcean with Flatcar Linux.
|
||||
|
||||
We'll declare a Kubernetes cluster using the Typhoon Terraform module. Then apply the changes to create controller droplets, worker droplets, DNS records, tags, and TLS assets.
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Google Cloud
|
||||
|
||||
In this tutorial, we'll create a Kubernetes v1.19.3 cluster on Google Compute Engine with CoreOS Container Linux or Flatcar Linux.
|
||||
In this tutorial, we'll create a Kubernetes v1.19.3 cluster on Google Compute Engine with Flatcar Linux.
|
||||
|
||||
We'll declare a Kubernetes cluster using the Typhoon Terraform module. Then apply the changes to create a network, firewall rules, health checks, controller instances, worker managed instance group, load balancers, and TLS assets.
|
||||
|
||||
|
@ -56,7 +56,7 @@ terraform {
|
|||
}
|
||||
google = {
|
||||
source = "hashicorp/google"
|
||||
version = "3.42.0"
|
||||
version = "3.43.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
mkdocs==1.1.2
|
||||
mkdocs-material==6.0.2
|
||||
mkdocs-material==6.1.0
|
||||
pygments==2.6.1
|
||||
pymdown-extensions==7.1.0
|
||||
|
|
Loading…
Reference in New Issue