├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets ├── logo-2048.png ├── logo-256.png └── logo-512.png ├── gke-fleets-with-argocd ├── README.md ├── argo-cd-gke │ ├── base │ │ ├── argocd-namespace.yaml │ │ └── kustomization.yaml │ └── overlays │ │ ├── anthos │ │ ├── configmap.yaml │ │ ├── fleetwi.yaml │ │ ├── kustomization.yaml │ │ └── service.yaml │ │ └── gke_ingress │ │ ├── argocd-managed-cert.yaml │ │ ├── argocd-sa.yaml │ │ ├── argocd-server-backend-config.yaml │ │ ├── argocd-server-deployment_patch.yaml │ │ ├── argocd-server-frontend-config.yaml │ │ ├── argocd-server-ingress.yaml │ │ ├── argocd-server-svc_patch.yaml │ │ └── kustomization.yaml ├── argo-repo-sync │ ├── app-clusters-config │ │ ├── argo-rollouts │ │ │ └── argo-rollouts.yaml │ │ ├── asm-gateways │ │ │ ├── asm-gateways-namespace.yaml │ │ │ ├── asm-ingress-gateway.yaml │ │ │ ├── asm-webhook-wait-job-rbac.yaml │ │ │ ├── asm-webhook-wait-job-sa.yaml │ │ │ ├── asm-webhook-wait-job.yaml │ │ │ ├── deployment.yaml │ │ │ ├── role.yaml │ │ │ └── service.yaml │ │ ├── istio-system │ │ │ ├── asm.yaml │ │ │ └── istio-system-namespace.yaml │ │ └── prod-tools │ │ │ ├── prom-frontend.yaml │ │ │ └── success-rate-analysis-template.yaml │ ├── app-template │ │ ├── base │ │ │ ├── kustomization.yaml │ │ │ ├── quota.yaml │ │ │ ├── rbac.yaml │ │ │ ├── service-canary.yaml │ │ │ └── service-stable.yaml │ │ └── new-app │ │ │ ├── applicationset-wave-1.yaml │ │ │ ├── applicationset-wave-2.yaml │ │ │ ├── argocd-project.yaml │ │ │ ├── destination-rule-central.yaml │ │ │ ├── destination-rule-east.yaml │ │ │ ├── destination-rule-west.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── rollout.yaml │ │ │ └── virtual-service.yaml │ ├── generators │ │ ├── app-clusters-tooling-applicationset.yaml │ │ ├── central-clusters-applicationset.yaml │ │ ├── east-clusters-applicationset.yaml │ │ ├── multi-cluster-controller-applicationset.yaml │ │ └── west-clusters-applicationset.yaml │ ├── multi-cluster-controllers │ │ └── asm-gateways │ │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_gatewayclasses.gateway.networking.k8s.io.yaml │ │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_gateways.gateway.networking.k8s.io.yaml │ │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_httproutes.gateway.networking.k8s.io.yaml │ │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_referencepolicies.gateway.networking.k8s.io.yaml │ │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_tcproutes.gateway.networking.k8s.io.yaml │ │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_tlsroutes.gateway.networking.k8s.io.yaml │ │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_udproutes.gateway.networking.k8s.io.yaml │ │ │ ├── asm-namespace .yaml │ │ │ ├── backendcongfig.yaml │ │ │ ├── istio-namespace.yaml │ │ │ ├── loadgen-deploy.yaml │ │ │ ├── multi-cluster-ingress.yaml │ │ │ └── multi-cluster-services.yaml │ └── region-clusters-config │ │ ├── us-central-clusters-config │ │ ├── team-1-rollout-demo-destination-rule.yaml │ │ └── team-2-whereami-destination-rule.yaml │ │ ├── us-east-clusters-config │ │ ├── team-1-rollout-demo-destination-rule.yaml │ │ └── team-2-whereami-destination-rule.yaml │ │ └── us-west-clusters-config │ │ ├── team-1-rollout-demo-destination-rule.yaml │ │ └── team-2-whereami-destination-rule.yaml ├── assets │ └── diagram.png ├── config.yaml └── scripts │ ├── fleet_cluster_add.sh │ ├── fleet_cluster_remove.sh │ ├── fleet_prep.sh │ ├── team_app_add.sh │ ├── team_app_remove.sh │ └── team_app_rollout.sh ├── gke-fleets-with-config-sync-and-argo-rollouts ├── README.md ├── app-template │ ├── base │ │ ├── destination-rule-central.yaml │ │ ├── destination-rule-east.yaml │ │ ├── destination-rule-west.yaml │ │ ├── kustomization.yaml │ │ ├── quota.yaml │ │ ├── rbac.yaml │ │ ├── rollout-wave1.yaml │ │ ├── rollout-wave2.yaml │ │ ├── service-canary.yaml │ │ ├── service-stable.yaml │ │ └── virtual-service.yaml │ ├── new-app │ │ ├── destination-rule-central.yaml │ │ ├── destination-rule-east.yaml │ │ ├── destination-rule-west.yaml │ │ ├── namespace.yaml │ │ ├── quota.yaml │ │ ├── rbac.yaml │ │ ├── rollout-wave1.yaml │ │ ├── rollout-wave2.yaml │ │ ├── service-canary.yaml │ │ ├── service-stable.yaml │ │ └── virtual-service.yaml │ └── prod │ │ └── kustomization.yaml ├── assets │ └── diagram.png ├── config.yaml ├── gke-poc-config-sync │ ├── all-clusters │ │ ├── istio-namespace.yaml │ │ └── mesh-config.yaml │ ├── app-clusters-config │ │ ├── argo-rollouts │ │ │ ├── argo-rollouts.yaml │ │ │ └── namespace.yaml │ │ ├── asm-gateways │ │ │ ├── asm-ingress-gateway.yaml │ │ │ ├── deployment.yaml │ │ │ ├── namespace.yaml │ │ │ ├── role.yaml │ │ │ └── service.yaml │ │ └── prod-tools │ │ │ ├── namespace.yaml │ │ │ ├── prom-frontend.yaml │ │ │ └── success-rate-analysis-template.yaml │ ├── clusterregistry │ │ ├── mccp-central-01.yaml │ │ ├── selector-controller.yaml │ │ ├── selector-prod.yaml │ │ ├── selector-us-central1.yaml │ │ ├── selector-us-east1.yaml │ │ ├── selector-us-west1.yaml │ │ ├── selector-wave-one.yaml │ │ └── selector-wave-two.yaml │ ├── multi-cluster-controllers │ │ └── asm-gateways │ │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_gatewayclasses.gateway.networking.k8s.io.yaml │ │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_gateways.gateway.networking.k8s.io.yaml │ │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_httproutes.gateway.networking.k8s.io.yaml │ │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_referencepolicies.gateway.networking.k8s.io.yaml │ │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_tcproutes.gateway.networking.k8s.io.yaml │ │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_tlsroutes.gateway.networking.k8s.io.yaml │ │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_udproutes.gateway.networking.k8s.io.yaml │ │ │ ├── backendcongfig.yaml │ │ │ ├── loadgen-deploy.yaml │ │ │ ├── multi-cluster-ingress.yaml │ │ │ ├── multi-cluster-services.yaml │ │ │ └── namespace.yaml │ ├── region-clusters-config │ │ ├── us-central-clusters-config │ │ │ ├── team-1-rollout-demo-destination-rule.yaml │ │ │ └── team-2-whereami-destination-rule.yaml │ │ ├── us-east-clusters-config │ │ │ ├── team-1-rollout-demo-destination-rule.yaml │ │ │ └── team-2-whereami-destination-rule.yaml │ │ └── us-west-clusters-config │ │ │ ├── team-1-rollout-demo-destination-rule.yaml │ │ │ └── team-2-whereami-destination-rule.yaml │ └── root-sync.yaml ├── multi-cluster-controllers │ └── asm-gateways │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_gatewayclasses.gateway.networking.k8s.io.yaml │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_gateways.gateway.networking.k8s.io.yaml │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_httproutes.gateway.networking.k8s.io.yaml │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_referencepolicies.gateway.networking.k8s.io.yaml │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_tcproutes.gateway.networking.k8s.io.yaml │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_tlsroutes.gateway.networking.k8s.io.yaml │ │ ├── apiextensions.k8s.io_v1_customresourcedefinition_udproutes.gateway.networking.k8s.io.yaml │ │ ├── backendcongfig.yaml │ │ ├── loadgen-deploy.yaml │ │ ├── multi-cluster-ingress.yaml │ │ ├── multi-cluster-services.yaml │ │ └── namespace.yaml └── scripts │ ├── fleet_cluster_add.sh │ ├── fleet_cluster_remove.sh │ ├── fleet_prep.sh │ ├── team_app_add.sh │ ├── team_app_remove.sh │ └── team_app_rollout.sh ├── multi-cluster-network-resiliency ├── README.md └── config.yaml └── online-boutique-single-cluster ├── README.md ├── config.yaml └── screenshots ├── cartservice-pod.png ├── config-management-status.png ├── deployments.png ├── logs.png ├── memory.png ├── node-pool-details.png ├── online-boutique-arch.png └── online-boutique-frontend.png /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo-2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/assets/logo-2048.png -------------------------------------------------------------------------------- /assets/logo-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/assets/logo-256.png -------------------------------------------------------------------------------- /assets/logo-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/assets/logo-512.png -------------------------------------------------------------------------------- /gke-fleets-with-argocd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/README.md -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-cd-gke/base/argocd-namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: argocd 5 | -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-cd-gke/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-cd-gke/base/kustomization.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-cd-gke/overlays/anthos/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-cd-gke/overlays/anthos/configmap.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-cd-gke/overlays/anthos/fleetwi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-cd-gke/overlays/anthos/fleetwi.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-cd-gke/overlays/anthos/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-cd-gke/overlays/anthos/kustomization.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-cd-gke/overlays/anthos/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-cd-gke/overlays/anthos/service.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-cd-gke/overlays/gke_ingress/argocd-managed-cert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-cd-gke/overlays/gke_ingress/argocd-managed-cert.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-cd-gke/overlays/gke_ingress/argocd-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-cd-gke/overlays/gke_ingress/argocd-sa.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-cd-gke/overlays/gke_ingress/argocd-server-backend-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-cd-gke/overlays/gke_ingress/argocd-server-backend-config.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-cd-gke/overlays/gke_ingress/argocd-server-deployment_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-cd-gke/overlays/gke_ingress/argocd-server-deployment_patch.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-cd-gke/overlays/gke_ingress/argocd-server-frontend-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-cd-gke/overlays/gke_ingress/argocd-server-frontend-config.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-cd-gke/overlays/gke_ingress/argocd-server-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-cd-gke/overlays/gke_ingress/argocd-server-ingress.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-cd-gke/overlays/gke_ingress/argocd-server-svc_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-cd-gke/overlays/gke_ingress/argocd-server-svc_patch.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-cd-gke/overlays/gke_ingress/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-cd-gke/overlays/gke_ingress/kustomization.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/argo-rollouts/argo-rollouts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/argo-rollouts/argo-rollouts.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/asm-gateways/asm-gateways-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/asm-gateways/asm-gateways-namespace.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/asm-gateways/asm-ingress-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/asm-gateways/asm-ingress-gateway.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/asm-gateways/asm-webhook-wait-job-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/asm-gateways/asm-webhook-wait-job-rbac.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/asm-gateways/asm-webhook-wait-job-sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/asm-gateways/asm-webhook-wait-job-sa.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/asm-gateways/asm-webhook-wait-job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/asm-gateways/asm-webhook-wait-job.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/asm-gateways/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/asm-gateways/deployment.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/asm-gateways/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/asm-gateways/role.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/asm-gateways/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/asm-gateways/service.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/istio-system/asm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/istio-system/asm.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/istio-system/istio-system-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/istio-system/istio-system-namespace.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/prod-tools/prom-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/prod-tools/prom-frontend.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/prod-tools/success-rate-analysis-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-clusters-config/prod-tools/success-rate-analysis-template.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-template/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-template/base/kustomization.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-template/base/quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-template/base/quota.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-template/base/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-template/base/rbac.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-template/base/service-canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-template/base/service-canary.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-template/base/service-stable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-template/base/service-stable.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/applicationset-wave-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/applicationset-wave-1.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/applicationset-wave-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/applicationset-wave-2.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/argocd-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/argocd-project.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/destination-rule-central.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/destination-rule-central.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/destination-rule-east.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/destination-rule-east.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/destination-rule-west.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/destination-rule-west.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/kustomization.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/namespace.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/rollout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/rollout.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/virtual-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/app-template/new-app/virtual-service.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/generators/app-clusters-tooling-applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/generators/app-clusters-tooling-applicationset.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/generators/central-clusters-applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/generators/central-clusters-applicationset.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/generators/east-clusters-applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/generators/east-clusters-applicationset.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/generators/multi-cluster-controller-applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/generators/multi-cluster-controller-applicationset.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/generators/west-clusters-applicationset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/generators/west-clusters-applicationset.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_gatewayclasses.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_gatewayclasses.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_gateways.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_gateways.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_httproutes.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_httproutes.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_referencepolicies.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_referencepolicies.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_tcproutes.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_tcproutes.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_tlsroutes.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_tlsroutes.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_udproutes.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_udproutes.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/asm-namespace .yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/asm-namespace .yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/backendcongfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/backendcongfig.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/istio-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/istio-namespace.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/loadgen-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/loadgen-deploy.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/multi-cluster-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/multi-cluster-ingress.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/multi-cluster-services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/multi-cluster-controllers/asm-gateways/multi-cluster-services.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/region-clusters-config/us-central-clusters-config/team-1-rollout-demo-destination-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/region-clusters-config/us-central-clusters-config/team-1-rollout-demo-destination-rule.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/region-clusters-config/us-central-clusters-config/team-2-whereami-destination-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/region-clusters-config/us-central-clusters-config/team-2-whereami-destination-rule.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/region-clusters-config/us-east-clusters-config/team-1-rollout-demo-destination-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/region-clusters-config/us-east-clusters-config/team-1-rollout-demo-destination-rule.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/region-clusters-config/us-east-clusters-config/team-2-whereami-destination-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/region-clusters-config/us-east-clusters-config/team-2-whereami-destination-rule.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/region-clusters-config/us-west-clusters-config/team-1-rollout-demo-destination-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/region-clusters-config/us-west-clusters-config/team-1-rollout-demo-destination-rule.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/argo-repo-sync/region-clusters-config/us-west-clusters-config/team-2-whereami-destination-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/argo-repo-sync/region-clusters-config/us-west-clusters-config/team-2-whereami-destination-rule.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/assets/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/assets/diagram.png -------------------------------------------------------------------------------- /gke-fleets-with-argocd/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/config.yaml -------------------------------------------------------------------------------- /gke-fleets-with-argocd/scripts/fleet_cluster_add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/scripts/fleet_cluster_add.sh -------------------------------------------------------------------------------- /gke-fleets-with-argocd/scripts/fleet_cluster_remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/scripts/fleet_cluster_remove.sh -------------------------------------------------------------------------------- /gke-fleets-with-argocd/scripts/fleet_prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/scripts/fleet_prep.sh -------------------------------------------------------------------------------- /gke-fleets-with-argocd/scripts/team_app_add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/scripts/team_app_add.sh -------------------------------------------------------------------------------- /gke-fleets-with-argocd/scripts/team_app_remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/scripts/team_app_remove.sh -------------------------------------------------------------------------------- /gke-fleets-with-argocd/scripts/team_app_rollout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-argocd/scripts/team_app_rollout.sh -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/README.md -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/destination-rule-central.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/destination-rule-central.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/destination-rule-east.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/destination-rule-east.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/destination-rule-west.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/destination-rule-west.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/kustomization.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/quota.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/rbac.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/rollout-wave1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/rollout-wave1.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/rollout-wave2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/rollout-wave2.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/service-canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/service-canary.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/service-stable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/service-stable.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/virtual-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/base/virtual-service.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/destination-rule-central.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/destination-rule-central.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/destination-rule-east.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/destination-rule-east.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/destination-rule-west.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/destination-rule-west.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/namespace.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/quota.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/rbac.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/rollout-wave1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/rollout-wave1.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/rollout-wave2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/rollout-wave2.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/service-canary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/service-canary.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/service-stable.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/service-stable.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/virtual-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/new-app/virtual-service.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/app-template/prod/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/app-template/prod/kustomization.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/assets/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/assets/diagram.png -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/config.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/all-clusters/istio-namespace.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: istio-system -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/all-clusters/mesh-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/all-clusters/mesh-config.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/argo-rollouts/argo-rollouts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/argo-rollouts/argo-rollouts.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/argo-rollouts/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/argo-rollouts/namespace.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/asm-gateways/asm-ingress-gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/asm-gateways/asm-ingress-gateway.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/asm-gateways/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/asm-gateways/deployment.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/asm-gateways/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/asm-gateways/namespace.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/asm-gateways/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/asm-gateways/role.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/asm-gateways/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/asm-gateways/service.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/prod-tools/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/prod-tools/namespace.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/prod-tools/prom-frontend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/prod-tools/prom-frontend.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/prod-tools/success-rate-analysis-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/app-clusters-config/prod-tools/success-rate-analysis-template.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/clusterregistry/mccp-central-01.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/clusterregistry/mccp-central-01.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/clusterregistry/selector-controller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/clusterregistry/selector-controller.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/clusterregistry/selector-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/clusterregistry/selector-prod.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/clusterregistry/selector-us-central1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/clusterregistry/selector-us-central1.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/clusterregistry/selector-us-east1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/clusterregistry/selector-us-east1.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/clusterregistry/selector-us-west1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/clusterregistry/selector-us-west1.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/clusterregistry/selector-wave-one.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/clusterregistry/selector-wave-one.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/clusterregistry/selector-wave-two.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/clusterregistry/selector-wave-two.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_gatewayclasses.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_gatewayclasses.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_gateways.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_gateways.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_httproutes.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_httproutes.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_referencepolicies.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_referencepolicies.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_tcproutes.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_tcproutes.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_tlsroutes.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_tlsroutes.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_udproutes.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_udproutes.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/backendcongfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/backendcongfig.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/loadgen-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/loadgen-deploy.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/multi-cluster-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/multi-cluster-ingress.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/multi-cluster-services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/multi-cluster-services.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/multi-cluster-controllers/asm-gateways/namespace.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/region-clusters-config/us-central-clusters-config/team-1-rollout-demo-destination-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/region-clusters-config/us-central-clusters-config/team-1-rollout-demo-destination-rule.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/region-clusters-config/us-central-clusters-config/team-2-whereami-destination-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/region-clusters-config/us-central-clusters-config/team-2-whereami-destination-rule.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/region-clusters-config/us-east-clusters-config/team-1-rollout-demo-destination-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/region-clusters-config/us-east-clusters-config/team-1-rollout-demo-destination-rule.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/region-clusters-config/us-east-clusters-config/team-2-whereami-destination-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/region-clusters-config/us-east-clusters-config/team-2-whereami-destination-rule.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/region-clusters-config/us-west-clusters-config/team-1-rollout-demo-destination-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/region-clusters-config/us-west-clusters-config/team-1-rollout-demo-destination-rule.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/region-clusters-config/us-west-clusters-config/team-2-whereami-destination-rule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/region-clusters-config/us-west-clusters-config/team-2-whereami-destination-rule.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/root-sync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/gke-poc-config-sync/root-sync.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_gatewayclasses.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_gatewayclasses.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_gateways.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_gateways.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_httproutes.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_httproutes.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_referencepolicies.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_referencepolicies.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_tcproutes.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_tcproutes.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_tlsroutes.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_tlsroutes.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_udproutes.gateway.networking.k8s.io.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/apiextensions.k8s.io_v1_customresourcedefinition_udproutes.gateway.networking.k8s.io.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/backendcongfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/backendcongfig.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/loadgen-deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/loadgen-deploy.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/multi-cluster-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/multi-cluster-ingress.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/multi-cluster-services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/multi-cluster-services.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/multi-cluster-controllers/asm-gateways/namespace.yaml -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/scripts/fleet_cluster_add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/scripts/fleet_cluster_add.sh -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/scripts/fleet_cluster_remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/scripts/fleet_cluster_remove.sh -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/scripts/fleet_prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/scripts/fleet_prep.sh -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/scripts/team_app_add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/scripts/team_app_add.sh -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/scripts/team_app_remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/scripts/team_app_remove.sh -------------------------------------------------------------------------------- /gke-fleets-with-config-sync-and-argo-rollouts/scripts/team_app_rollout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/gke-fleets-with-config-sync-and-argo-rollouts/scripts/team_app_rollout.sh -------------------------------------------------------------------------------- /multi-cluster-network-resiliency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/multi-cluster-network-resiliency/README.md -------------------------------------------------------------------------------- /multi-cluster-network-resiliency/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/multi-cluster-network-resiliency/config.yaml -------------------------------------------------------------------------------- /online-boutique-single-cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/online-boutique-single-cluster/README.md -------------------------------------------------------------------------------- /online-boutique-single-cluster/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/online-boutique-single-cluster/config.yaml -------------------------------------------------------------------------------- /online-boutique-single-cluster/screenshots/cartservice-pod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/online-boutique-single-cluster/screenshots/cartservice-pod.png -------------------------------------------------------------------------------- /online-boutique-single-cluster/screenshots/config-management-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/online-boutique-single-cluster/screenshots/config-management-status.png -------------------------------------------------------------------------------- /online-boutique-single-cluster/screenshots/deployments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/online-boutique-single-cluster/screenshots/deployments.png -------------------------------------------------------------------------------- /online-boutique-single-cluster/screenshots/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/online-boutique-single-cluster/screenshots/logs.png -------------------------------------------------------------------------------- /online-boutique-single-cluster/screenshots/memory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/online-boutique-single-cluster/screenshots/memory.png -------------------------------------------------------------------------------- /online-boutique-single-cluster/screenshots/node-pool-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/online-boutique-single-cluster/screenshots/node-pool-details.png -------------------------------------------------------------------------------- /online-boutique-single-cluster/screenshots/online-boutique-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/online-boutique-single-cluster/screenshots/online-boutique-arch.png -------------------------------------------------------------------------------- /online-boutique-single-cluster/screenshots/online-boutique-frontend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/gke-poc-toolkit-demos/HEAD/online-boutique-single-cluster/screenshots/online-boutique-frontend.png --------------------------------------------------------------------------------