Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

double helm release timeout for intermittent test cluster failures #197

Merged
merged 1 commit into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions prometheus.tf
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ resource "helm_release" "prometheus_operator_eks" {
namespace = kubernetes_namespace.monitoring.id
version = "41.9.1"
skip_crds = true # Crds are managed seperately using resource kubectl_manifest.prometheus_operator_crds
timeout = 600

values = [templatefile("${path.module}/templates/prometheus-operator-eks.yaml.tpl", {
alertmanager_ingress = local.alertmanager_ingress
Expand Down
3 changes: 3 additions & 0 deletions proxy.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ resource "helm_release" "prometheus_proxy" {
repository = "https://oauth2-proxy.github.io/manifests"
chart = "oauth2-proxy"
version = "6.2.1"
timeout = 600

values = [
data.template_file.prometheus_proxy.rendered,
Expand Down Expand Up @@ -81,6 +82,7 @@ resource "helm_release" "alertmanager_proxy" {
repository = "https://oauth2-proxy.github.io/manifests"
chart = "oauth2-proxy"
version = "6.2.1"
timeout = 600

values = [
data.template_file.alertmanager_proxy.rendered,
Expand Down Expand Up @@ -194,6 +196,7 @@ resource "helm_release" "thanos_proxy" {
repository = "https://oauth2-proxy.github.io/manifests"
chart = "oauth2-proxy"
version = "6.2.1"
timeout = 600

values = [
data.template_file.thanos_proxy.rendered,
Expand Down
Loading