Skip to content

Commit

Permalink
Merge pull request #286 from junior/versions_update
Browse files Browse the repository at this point in the history
Versions update
  • Loading branch information
junior authored Jul 27, 2021
2 parents 5aab220 + 1370fb9 commit 84634dd
Show file tree
Hide file tree
Showing 10 changed files with 58 additions and 49 deletions.
32 changes: 16 additions & 16 deletions deploy/basic/terraform/.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 deploy/basic/terraform/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0
2.0.1
6 changes: 5 additions & 1 deletion deploy/basic/terraform/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,23 @@ terraform {
required_providers {
oci = {
source = "hashicorp/oci"
version = ">= 4.31.0"
version = ">= 4.36.0"
# https://registry.terraform.io/providers/hashicorp/oci/4.36.0
}
local = {
source = "hashicorp/local"
version = "2.1.0" # Latest version as June 2021 = 2.1.0.
# https://registry.terraform.io/providers/hashicorp/local/2.1.0
}
random = {
source = "hashicorp/random"
version = "3.1.0" # Latest version as June 2021 = 3.1.0.
# https://registry.terraform.io/providers/hashicorp/random/3.1.0
}
tls = {
source = "hashicorp/tls"
version = "3.1.0" # Latest version as June 2021 = 3.1.0.
# https://registry.terraform.io/providers/hashicorp/tls/3.1.0
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions deploy/complete/helm-chart/setup/requirements.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
dependencies:
# Prometheus
- name: prometheus
version: 14.1.1
version: 14.4.1
condition: prometheus.enabled
repository: https://prometheus-community.github.io/helm-charts
# Grafana
- name: grafana
version: 6.12.0
version: 6.14.1
condition: grafana.enabled
repository: https://grafana.github.io/helm-charts
# HPA Metrics
Expand All @@ -20,7 +20,7 @@ dependencies:
repository: https://charts.helm.sh/stable
# Ingress Controller
- name: ingress-nginx
version: 3.33.0
version: 3.34.0
condition: ingress-nginx.enabled
repository: https://kubernetes.github.io/ingress-nginx
# Service Catalog
Expand All @@ -30,7 +30,7 @@ dependencies:
repository: https://kubernetes-sigs.github.io/service-catalog
# cert-manager
- name: cert-manager
version: 1.3.1
version: 1.4.1
condition: cert-manager.enabled
repository: https://charts.jetstack.io
# jenkins
Expand Down
32 changes: 16 additions & 16 deletions deploy/complete/terraform/.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 deploy/complete/terraform/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.0
3.0.1
8 changes: 4 additions & 4 deletions deploy/complete/terraform/mushop-utilities.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ resource "helm_release" "prometheus" {
name = "prometheus"
repository = local.helm_repository.prometheus
chart = "prometheus"
version = "14.1.1"
version = "14.4.1"
namespace = kubernetes_namespace.cluster_utilities_namespace.id
wait = false

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

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

Expand Down Expand Up @@ -161,7 +161,7 @@ resource "helm_release" "cert_manager" {
name = "cert-manager"
repository = local.helm_repository.jetstack
chart = "cert-manager"
version = "1.3.1"
version = "1.4.1"
namespace = kubernetes_namespace.cluster_utilities_namespace.id
wait = true # wait to allow the webhook be properly configured

Expand Down
4 changes: 2 additions & 2 deletions deploy/complete/terraform/mushop-variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ variable "create_oci_service_user" {
description = "Creates OCI Service User. Service user is needed for Email Delivery (Newsletter feature) and Stream services."
}
variable "newsletter_subscription_enabled" {
default = true
description = "Enables newsletter subscription feature. Deploys API Gateway, Newsletter Function and uses Email Sender service"
default = false
description = "(Currently only supported on the US-Ashburn-1 region) Enables newsletter subscription feature. Deploys API Gateway, Newsletter Function and uses Email Sender service"
}
variable "newsletter_email_sender" {
default = "[email protected]"
Expand Down
8 changes: 7 additions & 1 deletion deploy/complete/terraform/providers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,33 @@ terraform {
required_providers {
oci = {
source = "hashicorp/oci"
version = ">= 4.32.0"
version = ">= 4.36.0"
# https://registry.terraform.io/providers/hashicorp/oci/4.36.0
}
kubernetes = {
source = "hashicorp/kubernetes"
version = "2.2.0" # Latest version as June 2021 = 2.3.2. Using 2.2.0 (May, 2021) for ORM compatibility
# https://registry.terraform.io/providers/hashicorp/kubernetes/2.2.0
}
helm = {
source = "hashicorp/helm"
version = "2.1.0" # Latest version as June 2021 = 2.2.0. Using 2.1.0 (March, 2021) for ORM compatibility
# https://registry.terraform.io/providers/hashicorp/helm/2.1.0
}
tls = {
source = "hashicorp/tls"
version = "3.1.0" # Latest version as June 2021 = 3.1.0.
# https://registry.terraform.io/providers/hashicorp/tls/3.1.0
}
local = {
source = "hashicorp/local"
version = "2.1.0" # Latest version as June 2021 = 2.1.0.
# https://registry.terraform.io/providers/hashicorp/local/2.1.0
}
random = {
source = "hashicorp/random"
version = "3.1.0" # Latest version as June 2021 = 3.1.0.
# https://registry.terraform.io/providers/hashicorp/random/3.1.0
}
}
}
Expand Down
5 changes: 2 additions & 3 deletions deploy/complete/terraform/schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,9 @@ variables:
type: enum
enum: # Necessary hardcoded supported versions, as ORM does not retrieve the versions from OKE.
- "Latest"
- "v1.19.7"
- "v1.20.8"
- "v1.19.12"
- "v1.18.10"
- "v1.17.13"
- "v1.16.15"
title: "Kubernetes Version"
required: true
visible:
Expand Down

0 comments on commit 84634dd

Please sign in to comment.