jamiegwatkin

Results 3 comments of jamiegwatkin

I had the same problems as described above, I managed to expose the dashboard by doing the following: Set `values.yaml` in helm to: ``` ingressRoute: dashboard: enabled: true # Additional...

Same issue here, I'm using the `terraform-aws-modules` which works well with the official `kubernetes` when following the recommended provider setup: ``` provider "kubernetes" { host = data.aws_eks_cluster.cluster.endpoint cluster_ca_certificate = base64decode(data.aws_eks_cluster.cluster.certificate_authority.0.data)...

I'm having the same issue: ``` provider "kubernetes-alpha" { config_path = "./kubeconfig_refinery-staging" } resource "kubernetes_manifest" "nginx" { provider = kubernetes-alpha depends_on = [helm_release.consul] manifest = { apiVersion = "consul.hashicorp.com/v1alpha1" kind...