-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Agones Installation to Cloud Deploy Params (#260)
This is the last piece of removing generating local files from the Terraform configuration to use with Cloud Deploy - everything has now been moved to Cloud Deploy Parameters! This moves the installation of Agones' into each cluster to use a Cloud Deploy parameter set on each Cloud Deploy Target. This also simplifies the Skaffold configuration to remove Kustomize from the yaml. Closes #181
- Loading branch information
1 parent
1a3e51a
commit a0bec03
Showing
7 changed files
with
48 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Copyright 2024 Google LLC All Rights Reserved. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
apiVersion: skaffold/v4beta9 | ||
kind: Config | ||
manifests: | ||
rawYaml: | ||
- agones-system.yaml | ||
helm: | ||
releases: | ||
- name: agones | ||
namespace: agones-system | ||
repo: https://agones.dev/chart/stable | ||
remoteChart: agones | ||
version: 1.40.0 | ||
setValues: | ||
agones.crds.cleanupOnDelete: false | ||
agones.allocator.disableMTLS: true | ||
agones.allocator.disableTLS: true | ||
agones.allocator.service.serviceType: ClusterIP | ||
agones.allocator.service.http.port: 8000 | ||
agones.allocator.service.http.targetPort: 8000 | ||
agones.allocator.service.http.portName: http-alloc | ||
agones.allocator.service.grpc.enabled: false | ||
agones.allocator.labels.istio\.io/rev: asm-managed | ||
# agones.allocator.labels.region: -- set by convention with Cloud Deploy Parameter attached to the target cluster | ||
deploy: | ||
kubectl: | ||
flags: | ||
apply: | ||
- --server-side # Avoid the "Too long: must have at most 262144 bytes" problem | ||
- --force-conflicts | ||
tolerateFailuresUntilDeadline: true # Fixes startup timeouts |