Skip to content

Commit

Permalink
Merge branch 'main' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiFleKs committed Jul 17, 2024
2 parents 6c40b48 + 53fbf5e commit 50e0b55
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 16 deletions.
4 changes: 2 additions & 2 deletions helm-dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ dependencies:
version: 2.39.3
repository: https://charts.konghq.com
- name: kube-prometheus-stack
version: 61.3.1
version: 61.3.2
repository: https://prometheus-community.github.io/helm-charts
- name: linkerd2-cni
version: 30.12.2
Expand Down Expand Up @@ -120,5 +120,5 @@ dependencies:
version: 0.14.0
repository: https://nerdswords.github.io/yet-another-cloudwatch-exporter
- name: reloader
version: 1.0.116
version: 1.0.119
repository: https://stakater.github.io/stakater-charts
2 changes: 1 addition & 1 deletion modules/aws/kube-prometheus.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ locals {
thanos_bucket = "thanos-store-${var.cluster-name}"
thanos_bucket_force_destroy = false
thanos_store_config = null
thanos_version = "v0.34.1"
thanos_version = "v0.35.1"
enabled = false
allowed_cidrs = ["0.0.0.0/0"]
default_network_policy = true
Expand Down
2 changes: 1 addition & 1 deletion modules/google/kube-prometheus.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ locals {
thanos_bucket_location = ""
thanos_kms_bucket_location = ""
thanos_store_config = null
thanos_version = "v0.34.1"
thanos_version = "v0.35.1"
thanos_service_account = ""
enabled = false
allowed_cidrs = ["0.0.0.0/0"]
Expand Down
2 changes: 1 addition & 1 deletion modules/scaleway/kube-prometheus.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ locals {
thanos_bucket = "thanos-store-${var.cluster-name}"
thanos_bucket_region = local.scaleway["region"]
thanos_store_config = null
thanos_version = "v0.34.1"
thanos_version = "v0.35.1"
enabled = false
allowed_cidrs = ["0.0.0.0/0"]
default_network_policy = true
Expand Down
31 changes: 20 additions & 11 deletions modules/scaleway/templates/cert-manager-cluster-issuers.yaml.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,25 @@ spec:
%{ if acme_dns01_enabled }
%{ if acme_dns01_provider == "route53" }
- dns01:
route53:
hostedZoneID: ${acme_dns01_hosted_zone_id}
%{ if acme_dns01_region != "" }
region: '${acme_dns01_region}'
%{ endif }
accessKeyIDSecretRef:
name: ${acme_dns01_aws_secret}
key: ${acme_dns01_aws_access_key_id}
secretAccessKeySecretRef:
name: ${acme_dns01_aws_secret}
key: ${acme_dns01_aws_access_key_secret}
route53:
hostedZoneID: ${acme_dns01_hosted_zone_id}
%{ if acme_dns01_region != "" }
region: '${acme_dns01_region}'
%{ endif }
accessKeyIDSecretRef:
name: ${acme_dns01_aws_secret}
key: ${acme_dns01_aws_access_key_id}
secretAccessKeySecretRef:
name: ${acme_dns01_aws_secret}
key: ${acme_dns01_aws_access_key_secret}
%{ else }
%{if acme_dns01_provider == "google" }
- dns01:
clouddns:
project: '${acme_dns01_google_project}'
serviceAccountSecretRef:
name: '${acme_dns01_google_secret}'
key: '${acme_dns01_google_service_account_key}'
%{ else }
- dns01:
webhook:
Expand All @@ -38,6 +46,7 @@ spec:
name: '${secret_name}'
%{ endif }
%{ endif }
%{ endif }
%{ if acme_http01_enabled }
- http01:
ingress:
Expand Down

0 comments on commit 50e0b55

Please sign in to comment.