├── .gitignore ├── README.md ├── images ├── cluster-info.png ├── cost-over-10-days.png ├── frontends.png └── us-west4-spot-discounts.png ├── petstore-pkg-dev.yaml ├── petstore-upstream.yaml ├── petstore-virtualservice.yaml ├── petstore.yaml ├── terraform ├── certs │ ├── self-signed.crt │ └── self-signed.key ├── gke.tf ├── gloo.tf ├── http.tf ├── https.tf ├── load-balancer.tf ├── main.tf ├── nat.tf ├── scripts │ ├── install-gloo.sh │ └── values.yaml ├── terraform.tfvars.template └── versions.tf └── update-ssl-cert.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/README.md -------------------------------------------------------------------------------- /images/cluster-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/images/cluster-info.png -------------------------------------------------------------------------------- /images/cost-over-10-days.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/images/cost-over-10-days.png -------------------------------------------------------------------------------- /images/frontends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/images/frontends.png -------------------------------------------------------------------------------- /images/us-west4-spot-discounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/images/us-west4-spot-discounts.png -------------------------------------------------------------------------------- /petstore-pkg-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/petstore-pkg-dev.yaml -------------------------------------------------------------------------------- /petstore-upstream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/petstore-upstream.yaml -------------------------------------------------------------------------------- /petstore-virtualservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/petstore-virtualservice.yaml -------------------------------------------------------------------------------- /petstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/petstore.yaml -------------------------------------------------------------------------------- /terraform/certs/self-signed.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/terraform/certs/self-signed.crt -------------------------------------------------------------------------------- /terraform/certs/self-signed.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/terraform/certs/self-signed.key -------------------------------------------------------------------------------- /terraform/gke.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/terraform/gke.tf -------------------------------------------------------------------------------- /terraform/gloo.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/terraform/gloo.tf -------------------------------------------------------------------------------- /terraform/http.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/terraform/http.tf -------------------------------------------------------------------------------- /terraform/https.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/terraform/https.tf -------------------------------------------------------------------------------- /terraform/load-balancer.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/terraform/load-balancer.tf -------------------------------------------------------------------------------- /terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/terraform/main.tf -------------------------------------------------------------------------------- /terraform/nat.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/terraform/nat.tf -------------------------------------------------------------------------------- /terraform/scripts/install-gloo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/terraform/scripts/install-gloo.sh -------------------------------------------------------------------------------- /terraform/scripts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/terraform/scripts/values.yaml -------------------------------------------------------------------------------- /terraform/terraform.tfvars.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/terraform/terraform.tfvars.template -------------------------------------------------------------------------------- /terraform/versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/terraform/versions.tf -------------------------------------------------------------------------------- /update-ssl-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphye/cheap-gke-cluster/HEAD/update-ssl-cert.sh --------------------------------------------------------------------------------