-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add samples for the "Right-size your GKE workloads at scale" tutorial (…
…#497) * initial commit * initial commit * updated code * added files * update commands * updated deploy instructions * work: * Initial commit * updated readme * Update .gitignore * Update .gitignore * removed WIP folder * removed folder * removed tags * removed broken tag * work * initial commit * initial commit * inital commit * update * fixed cloud scheduler permission error * update * updated hpa exporter image name * removed unnecessary files * .gitignore * update gitignore * workflow files * updated ci files * update * initial commit * remove gke-stateful-kafka folder * removed kafka folder * Update .gitignore * Fix VPA recommendations CI workflow * Fix typo in metrics-exporter Cloud Build config * Delete google_cloudbuild.yaml * Fix typo in hpa-metrics-exporter Cloud Build config * Fix typos in TF config --------- Co-authored-by: Olivier Bourgeois <[email protected]>
- Loading branch information
1 parent
5e2d2f5
commit cc4775d
Showing
46 changed files
with
8,398 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: gke-vpa-recommendations-ci | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- '.github/workflows/gke-vpa-recommendations-ci.yml' | ||
- 'gke-vpa-recommendations/**' | ||
pull_request: | ||
paths: | ||
- '.github/workflows/gke-vpa-recommendations-ci.yml' | ||
- 'gke-vpa-recommendations/**' | ||
jobs: | ||
job: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: build metric-exporter container | ||
run: | | ||
cd gke-vpa-recommendations/metrics-exporter | ||
docker build --tag metric-exporter . | ||
- name: build hpa-metrics-exporter container | ||
run: | | ||
cd gke-vpa-recommendations/scripts | ||
docker build --tag hpa-metrics-exporter . |
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
|
||
# Misc. | ||
.DS_Store | ||
.idea/ | ||
.idea/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Right-size your GKE workloads at scale | ||
|
||
See step by step tutorial at [Right-size your GKE workloads at scale] | ||
(https://cloud.google.com/kubernetes-engine/docs/tutorials/right-size-workloads-at-scale) |
Oops, something went wrong.