Skip to content

Commit 84634dd

Browse files
authored
Merge pull request #286 from junior/versions_update
Versions update
2 parents 5aab220 + 1370fb9 commit 84634dd

File tree

10 files changed

+58
-49
lines changed

10 files changed

+58
-49
lines changed

deploy/basic/terraform/.terraform.lock.hcl

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/basic/terraform/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.0
1+
2.0.1

deploy/basic/terraform/providers.tf

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,23 @@ terraform {
77
required_providers {
88
oci = {
99
source = "hashicorp/oci"
10-
version = ">= 4.31.0"
10+
version = ">= 4.36.0"
11+
# https://registry.terraform.io/providers/hashicorp/oci/4.36.0
1112
}
1213
local = {
1314
source = "hashicorp/local"
1415
version = "2.1.0" # Latest version as June 2021 = 2.1.0.
16+
# https://registry.terraform.io/providers/hashicorp/local/2.1.0
1517
}
1618
random = {
1719
source = "hashicorp/random"
1820
version = "3.1.0" # Latest version as June 2021 = 3.1.0.
21+
# https://registry.terraform.io/providers/hashicorp/random/3.1.0
1922
}
2023
tls = {
2124
source = "hashicorp/tls"
2225
version = "3.1.0" # Latest version as June 2021 = 3.1.0.
26+
# https://registry.terraform.io/providers/hashicorp/tls/3.1.0
2327
}
2428
}
2529
}

deploy/complete/helm-chart/setup/requirements.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
dependencies:
66
# Prometheus
77
- name: prometheus
8-
version: 14.1.1
8+
version: 14.4.1
99
condition: prometheus.enabled
1010
repository: https://prometheus-community.github.io/helm-charts
1111
# Grafana
1212
- name: grafana
13-
version: 6.12.0
13+
version: 6.14.1
1414
condition: grafana.enabled
1515
repository: https://grafana.github.io/helm-charts
1616
# HPA Metrics
@@ -20,7 +20,7 @@ dependencies:
2020
repository: https://charts.helm.sh/stable
2121
# Ingress Controller
2222
- name: ingress-nginx
23-
version: 3.33.0
23+
version: 3.34.0
2424
condition: ingress-nginx.enabled
2525
repository: https://kubernetes.github.io/ingress-nginx
2626
# Service Catalog
@@ -30,7 +30,7 @@ dependencies:
3030
repository: https://kubernetes-sigs.github.io/service-catalog
3131
# cert-manager
3232
- name: cert-manager
33-
version: 1.3.1
33+
version: 1.4.1
3434
condition: cert-manager.enabled
3535
repository: https://charts.jetstack.io
3636
# jenkins

deploy/complete/terraform/.terraform.lock.hcl

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

deploy/complete/terraform/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.0
1+
3.0.1

deploy/complete/terraform/mushop-utilities.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ resource "helm_release" "prometheus" {
1818
name = "prometheus"
1919
repository = local.helm_repository.prometheus
2020
chart = "prometheus"
21-
version = "14.1.1"
21+
version = "14.4.1"
2222
namespace = kubernetes_namespace.cluster_utilities_namespace.id
2323
wait = false
2424

@@ -37,7 +37,7 @@ resource "helm_release" "grafana" {
3737
name = "mushop-utils-grafana" # mushop-utils included to be backwards compatible to the docs and setup chart install
3838
repository = local.helm_repository.grafana
3939
chart = "grafana"
40-
version = "6.12.0"
40+
version = "6.14.1"
4141
namespace = kubernetes_namespace.cluster_utilities_namespace.id
4242
wait = false
4343

@@ -110,7 +110,7 @@ resource "helm_release" "ingress_nginx" {
110110
name = "mushop-utils-ingress-nginx" # mushop-utils included to be backwards compatible to the docs and setup chart install
111111
repository = local.helm_repository.ingress_nginx
112112
chart = "ingress-nginx"
113-
version = "3.33.0"
113+
version = "3.34.0"
114114
namespace = kubernetes_namespace.cluster_utilities_namespace.id
115115
wait = true
116116

@@ -161,7 +161,7 @@ resource "helm_release" "cert_manager" {
161161
name = "cert-manager"
162162
repository = local.helm_repository.jetstack
163163
chart = "cert-manager"
164-
version = "1.3.1"
164+
version = "1.4.1"
165165
namespace = kubernetes_namespace.cluster_utilities_namespace.id
166166
wait = true # wait to allow the webhook be properly configured
167167

deploy/complete/terraform/mushop-variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ variable "create_oci_service_user" {
5151
description = "Creates OCI Service User. Service user is needed for Email Delivery (Newsletter feature) and Stream services."
5252
}
5353
variable "newsletter_subscription_enabled" {
54-
default = true
55-
description = "Enables newsletter subscription feature. Deploys API Gateway, Newsletter Function and uses Email Sender service"
54+
default = false
55+
description = "(Currently only supported on the US-Ashburn-1 region) Enables newsletter subscription feature. Deploys API Gateway, Newsletter Function and uses Email Sender service"
5656
}
5757
variable "newsletter_email_sender" {
5858
default = "no-reply@mushop.ateam.cloud"

deploy/complete/terraform/providers.tf

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,33 @@ terraform {
77
required_providers {
88
oci = {
99
source = "hashicorp/oci"
10-
version = ">= 4.32.0"
10+
version = ">= 4.36.0"
11+
# https://registry.terraform.io/providers/hashicorp/oci/4.36.0
1112
}
1213
kubernetes = {
1314
source = "hashicorp/kubernetes"
1415
version = "2.2.0" # Latest version as June 2021 = 2.3.2. Using 2.2.0 (May, 2021) for ORM compatibility
16+
# https://registry.terraform.io/providers/hashicorp/kubernetes/2.2.0
1517
}
1618
helm = {
1719
source = "hashicorp/helm"
1820
version = "2.1.0" # Latest version as June 2021 = 2.2.0. Using 2.1.0 (March, 2021) for ORM compatibility
21+
# https://registry.terraform.io/providers/hashicorp/helm/2.1.0
1922
}
2023
tls = {
2124
source = "hashicorp/tls"
2225
version = "3.1.0" # Latest version as June 2021 = 3.1.0.
26+
# https://registry.terraform.io/providers/hashicorp/tls/3.1.0
2327
}
2428
local = {
2529
source = "hashicorp/local"
2630
version = "2.1.0" # Latest version as June 2021 = 2.1.0.
31+
# https://registry.terraform.io/providers/hashicorp/local/2.1.0
2732
}
2833
random = {
2934
source = "hashicorp/random"
3035
version = "3.1.0" # Latest version as June 2021 = 3.1.0.
36+
# https://registry.terraform.io/providers/hashicorp/random/3.1.0
3137
}
3238
}
3339
}

deploy/complete/terraform/schema.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,10 +217,9 @@ variables:
217217
type: enum
218218
enum: # Necessary hardcoded supported versions, as ORM does not retrieve the versions from OKE.
219219
- "Latest"
220-
- "v1.19.7"
220+
- "v1.20.8"
221+
- "v1.19.12"
221222
- "v1.18.10"
222-
- "v1.17.13"
223-
- "v1.16.15"
224223
title: "Kubernetes Version"
225224
required: true
226225
visible:

0 commit comments

Comments
 (0)