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

Fix for gcloud-terraform-cluster make target #1688

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
2 changes: 1 addition & 1 deletion build/terraform/gke/module.tf
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ module "gke_cluster" {
}

module "helm_agones" {
source = "../../../install/terraform/modules/helm"
source = "../../../install/terraform/modules/helm3"

agones_version = var.agones_version
values_file = var.values_file
Expand Down
4 changes: 2 additions & 2 deletions site/content/en/docs/Installation/Install Agones/yaml.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ Example of setting `featureGates` and `generateTLS` helm parameters in `install.
```
helm pull --untar https://agones.dev/chart/stable/agones-{{< release-version >}}.tgz && \
cd agones && \
helm3 template agones-manual --namespace agones-system . \
helm template agones-manual --namespace agones-system . \
--set agones.controller.generateTLS=false \
--set agones.allocator.generateTLS=false \
--set agones.crds.cleanupOnDelete=false \
--set agones.featureGates="PlayerTracking=true" \
> install-custom.yaml
```
Note: `pull` command was introduced in helm 3.
Note: `pull` command was introduced in Helm version 3.

You can also find the install.yaml in the latest `agones-install` zip from the [releases](https://github.com/googleforgames/agones/releases) archive.

Expand Down