Skip to content

Commit

Permalink
Update the consul helm chart to use HashiCorp's Official Helm Chart. (#…
Browse files Browse the repository at this point in the history
…2150)

* Update the consul helm chart to use HashiCorp's Official Helm Chart.

* Update the name of the consul stateful set in the e2e runner.
  • Loading branch information
roberthbailey authored Jun 23, 2021
1 parent b0c87b2 commit 5a29c91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/e2e-image/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ then
fi
gcloud container clusters get-credentials $TEST_CLUSTER_NAME \
--zone=us-west1-c --project=agones-images
kubectl port-forward statefulset/consul 8500:8500 &
kubectl port-forward statefulset/consul-consul-server 8500:8500 &
echo "Waiting consul port-forward to launch on 8500..."
timeout 60 bash -c 'until printf "" 2>>/dev/null >>/dev/tcp/$0/$1; do sleep 1; done' 127.0.0.1 8500
echo "consul port-forward launched. Starting e2e tests..."
Expand Down
6 changes: 3 additions & 3 deletions build/terraform/e2e/module.tf
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,16 @@ provider "helm" {
}

resource "helm_release" "consul" {
chart = "stable/consul"
chart = "hashicorp/consul"
name = "consul"

set {
name = "Replicas"
name = "server.replicas"
value = "1"
}

set {
name = "uiService.type"
name = "ui.service.type"
value = "ClusterIP"
}
}
Expand Down

0 comments on commit 5a29c91

Please sign in to comment.