Readiness probe failed in helm chart installation

I am currently installing Discourse with helm charts. Here the deployment takes place in Terraform, but I hope it is understandable.

resource "helm_release" "discourse" {
  name             = "discourse"
  namespace        = "discourse"
  create_namespace = true
  repository       = "https://charts.bitnami.com/bitnami"
  chart            = "discourse"

  version = "8.0.4"

  set {
    name = "auth.email"
    value = "test@test.com"
  }

  set {
    name = "auth.username"
    value = "user"
  }

  set {
    name = "auth.password"
    value = "abcd1234"
  }

  set {
    name = "ingress.enabled"
    value = true
  }

  set {
    name = "ingress.hostname"
    value    = "discourse.my-domain.com"
  }

  set {
    name = "ingress.ingressClassName"
    value = "nginx"
  }
}

Sadly, when I run it, the deployment fails, saying for the discourse container in the discourse pod has the issue

Readiness probe failed: Get "http://192.168.4.41:8080/srv/status": dial tcp 192.168.4.41:8080: connect: connection refused

Do you know how to fix that?

We do not support the bitnami packaging of Discourse in any way here. Their support is located at Issues · bitnami/charts · GitHub.

3 Likes

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.