Skip to content

Commit

Permalink
Version update 0.8.11
Browse files Browse the repository at this point in the history
Signed-off-by: junior <[email protected]>
  • Loading branch information
junior committed Dec 12, 2022
1 parent d0fed41 commit b80f75e
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 24 deletions.
62 changes: 42 additions & 20 deletions .terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.10
0.8.11
6 changes: 3 additions & 3 deletions modules/cluster-tools/cluster-tools.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ locals {
jetstack = "https://charts.jetstack.io" # cert-manager
jetstack_version = "1.10.1" # cert-manager
grafana = "https://grafana.github.io/helm-charts"
grafana_version = "6.45.0"
grafana_version = "6.47.1"
prometheus = "https://prometheus-community.github.io/helm-charts"
prometheus_version = "18.4.0"
prometheus_version = "19.0.1"
metrics_server = "https://kubernetes-sigs.github.io/metrics-server"
metrics_server_version = "3.8.2"
metrics_server_version = "3.8.3"
}
use_cluster_tools_namespace = anytrue([var.grafana_enabled, var.ingress_nginx_enabled, var.cert_manager_enabled, var.prometheus_enabled]) ? true : false
}
Expand Down
17 changes: 17 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -289,13 +289,30 @@ variable "image_operating_system_version_1" {
default = "8"
description = "The OS/image version installed on all nodes in the node pool."
}
variable "node_pool_oke_init_params_1" {
type = string
default = ""
description = "OKE Init params"
}
variable "node_pool_cloud_init_parts_1" {
type = list(object({
content_type = string
content = string
filename = string
}))
default = []
description = "Node Pool nodes Cloud init parts"
}
variable "generate_public_ssh_key" {
default = true
}
variable "public_ssh_key" {
default = ""
description = "In order to access your private nodes with a public SSH key you will need to set up a bastion host (a.k.a. jump box). If using public nodes, bastion is not needed. Left blank to not import keys."
}
################################################################################
# Variables: OKE Extra Node Pools
################################################################################
variable "extra_node_pools" {
default = []
description = "Extra node pools to be added to the cluster"
Expand Down

0 comments on commit b80f75e

Please sign in to comment.