Skip to content

Commit 9b1f958

Browse files
authored
Updated default Kubernetes version to 1.20.8 (#314)
* added token helper for faster kubectl * updated umask for TOKEN so it is writable by opc * changed default kubernetes version to 1.20.8, updated change log
1 parent e61a812 commit 9b1f958

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.adoc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ All notable changes to this project are documented in this file.
77

88
The format is based on {uri-changelog}[Keep a Changelog].
99

10+
=== Unreleased
11+
* Changed default Kubernetes version to v1.20.8 and removed v1.16.8, v1.17.9 from docs.
12+
* Added support for reserved public IP address for NAT gateway
13+
* Bug fix: Use correct calico file to install calico for networking policy only (#307)
14+
* Added support for GPU and ARM shapes (#302)
15+
1016
= 3.2.0 (May 12, 2021)
1117

1218
=== Additions

docs/terraformoptions.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -574,8 +574,8 @@ admission_controller_options = {
574574

575575
|`kubernetes_version`
576576
|The version of Kubernetes to provision. This is based on the available versions in OKE. By default, the latest version is selected. The use of 'LATEST' is no longer permitted in order to facilitate upgrades.
577-
|v1.16.8, v1.17.9, v1.18.10, v1.19.7
578-
|v1.19.7
577+
|v1.18.10, v1.19.7, v1.19.12, v1.20.8
578+
|v1.20.8
579579

580580
|`node_pools`
581581
a|The number, shape of node pools and node_pool_size to create. Each key and tuple pair corresponds to 1 node pool.

terraform.tfvars.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ check_node_active = "none"
210210

211211
dashboard_enabled = false
212212

213-
kubernetes_version = "v1.19.7"
213+
kubernetes_version = "v1.20.8"
214214

215215
node_pools = {
216216
np1 = {shape="VM.Standard.E3.Flex",ocpus=2,memory=20,node_pool_size=2,boot_volume_size=150}

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ variable "dashboard_enabled" {
371371
}
372372

373373
variable "kubernetes_version" {
374-
default = "v1.19.7"
374+
default = "v1.20.8"
375375
description = "The version of kubernetes to use when provisioning OKE or to upgrade an existing OKE cluster to."
376376
type = string
377377
}

0 commit comments

Comments
 (0)