├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── SECURITY.md ├── header-checker-lint.yml ├── renovate.json ├── snippet-bot.yml └── workflows │ └── asm-acm-tutorial-ci.yaml ├── .gitignore ├── LICENSE ├── README.md ├── asm-acm-tutorial ├── README.md ├── ingress-gateway │ ├── authorization-policies │ │ └── kustomization.yaml │ ├── deployments │ │ └── kustomization.yaml │ └── init │ │ └── kustomization.yaml ├── online-boutique │ ├── authorization-policies │ │ ├── for-ingress-gateway │ │ │ └── kustomization.yaml │ │ └── kustomization.yaml │ ├── deployments │ │ └── kustomization.yaml │ └── init │ │ └── kustomization.yaml └── root-sync │ ├── deploy-authorization-policies │ ├── ingress-gateway │ │ └── kustomization.yaml │ ├── kustomization.yaml │ └── online-boutique │ │ └── kustomization.yaml │ ├── deployments │ ├── ingress-gateway │ │ └── kustomization.yaml │ ├── kustomization.yaml │ └── online-boutique │ │ └── kustomization.yaml │ ├── enforce-authorization-policies │ ├── kustomization.yaml │ └── policies │ │ ├── authz-source-principals-not-all.yaml │ │ ├── default-deny-authorization-policies.yaml │ │ └── kustomization.yaml │ ├── enforce-sidecar-injection │ ├── kustomization.yaml │ ├── namespace-sidecar-injection-label.yaml │ └── pod-sidecar-injection-annotation.yaml │ ├── enforce-strict-mtls │ ├── gatekeeper-system │ │ ├── config-referential-constraints.yaml │ │ ├── kustomization.yaml │ │ └── namespace.yaml │ ├── kustomization.yaml │ └── policies │ │ ├── destinationrule-tls-enabled.yaml │ │ ├── kustomization.yaml │ │ ├── mesh-level-strict-mtls.yaml │ │ └── peerauthentication-strict-mtls.yaml │ ├── fix-default-deny-authorization-policy │ ├── default-deny-authorization-policy │ │ ├── authorizationpolicy.yaml │ │ └── kustomization.yaml │ └── kustomization.yaml │ ├── fix-strict-mtls │ ├── enable-mesh-strict-mtls │ │ ├── kustomization.yaml │ │ └── peerauthentication.yaml │ └── kustomization.yaml │ └── init │ ├── ingress-gateway-repo-sync │ ├── kustomization.yaml │ ├── reposync-namespace.yaml │ ├── reposync-role-binding.yaml │ └── reposync.yaml │ ├── istio-clusterrole.yaml │ ├── kustomization.yaml │ └── online-boutique-repo-sync │ ├── kustomization.yaml │ ├── reposync-namespace.yaml │ ├── reposync-role-binding.yaml │ └── reposync.yaml ├── ci-app ├── README.md ├── acm-repo │ ├── README.md │ ├── cluster │ │ ├── deployment-must-have-owner.yaml │ │ └── requiredlabels.yaml │ ├── clusterregistry │ │ └── .gitkeep │ ├── namespaces │ │ └── .gitkeep │ └── system │ │ ├── README.md │ │ └── repo.yaml └── app-repo │ ├── cloudbuild.yaml │ └── config │ ├── base │ ├── deployment.yaml │ └── kustomization.yaml │ └── prod │ └── kustomization.yaml ├── ci-pipeline-unstructured ├── README.md ├── cloudbuild.yaml └── config-root │ ├── configmap.yaml │ └── constraints │ ├── banned-key-constraint.yaml │ └── banned-key-template.yaml ├── ci-pipeline ├── README.md ├── cloudbuild.yaml └── config-root │ ├── cluster │ ├── fulfillmentcenter-crd.yaml │ ├── namespace-reader-clusterrole.yaml │ ├── namespace-reader-clusterrolebinding.yaml │ ├── pod-creator-clusterrole.yaml │ ├── pod-security-policy.yaml │ ├── required-labels-constraint.yaml │ └── required-labels-template.yaml │ ├── namespaces │ ├── audit │ │ └── namespace.yaml │ ├── online │ │ └── shipping-app-backend │ │ │ ├── pod-creator-rolebinding.yaml │ │ │ ├── quota.yaml │ │ │ ├── shipping-dev │ │ │ ├── job-creator-role.yaml │ │ │ ├── job-creator-rolebinding.yaml │ │ │ └── namespace.yaml │ │ │ ├── shipping-prod │ │ │ ├── fulfillmentcenter.yaml │ │ │ └── namespace.yaml │ │ │ └── shipping-staging │ │ │ ├── fulfillmentcenter.yaml │ │ │ └── namespace.yaml │ ├── sre-rolebinding.yaml │ ├── sre-supported-selector.yaml │ └── viewers-rolebinding.yaml │ └── system │ ├── README.md │ └── repo.yaml ├── config-controller-quickstart ├── pubsub-api.yaml └── pubsub-topic.yaml ├── config-sync-quickstart ├── README.md └── multirepo │ ├── namespaces │ └── gamestore │ │ ├── configmap-inventory.yaml │ │ └── webstore.yaml │ └── root │ ├── acm-monitor │ ├── acm-prometheus-config.yaml │ ├── namespace-monitoring.yaml │ └── prometheus-operator.yaml │ ├── clusterrole-namespace-reader.yaml │ ├── clusterrole-webstore-admin.yaml │ ├── crd-anvil.yaml │ ├── crd-webstore.yaml │ ├── namespace-gamestore.yaml │ ├── reposync-gamestore.yaml │ ├── rolebinding-gamestore-admin.yaml │ └── rolebinding-gamestore-webstore-admin.yaml ├── crds └── configmanagement_v1_configmanagement.yaml ├── fleet-packages-quickstart ├── README.md └── config │ └── nginx.yaml ├── fleet-tenancy ├── README.md ├── config │ ├── backend-bookstore-reposync.yaml │ ├── backend-namespace-selector.yaml │ ├── backend-network-policy.yaml │ ├── frontend-namespace-selector.yaml │ └── frontend-resource-quota.yaml ├── images │ ├── fleet-team-structure.svg │ └── fleet-tenancy-resources.png ├── teams │ └── backend │ │ └── bookstore │ │ └── config.yaml └── terraform │ ├── 1-fleet │ ├── README.md │ ├── main.tf │ └── variables.tf │ ├── 2-fleet-default-config │ ├── README.md │ ├── main.tf │ └── variables.tf │ ├── 3-clusters │ ├── README.md │ ├── cluster │ │ └── cluster.tf │ ├── main.tf │ └── variables.tf │ └── 4-scopes-and-namespaces │ ├── README.md │ ├── main.tf │ └── variables.tf ├── foo-corp ├── README.md ├── cluster │ ├── fulfillmentcenter-crd.yaml │ ├── namespace-reader-clusterrole.yaml │ ├── namespace-reader-clusterrolebinding.yaml │ └── pod-creator-clusterrole.yaml ├── namespaces │ ├── audit │ │ └── namespace.yaml │ ├── online │ │ └── shipping-app-backend │ │ │ ├── pod-creator-rolebinding.yaml │ │ │ ├── quota.yaml │ │ │ ├── shipping-dev │ │ │ ├── job-creator-role.yaml │ │ │ ├── job-creator-rolebinding.yaml │ │ │ └── namespace.yaml │ │ │ ├── shipping-prod │ │ │ ├── fulfillmentcenter.yaml │ │ │ └── namespace.yaml │ │ │ └── shipping-staging │ │ │ ├── fulfillmentcenter.yaml │ │ │ └── namespace.yaml │ ├── sre-rolebinding.yaml │ ├── sre-supported-selector.yaml │ └── viewers-rolebinding.yaml └── system │ ├── README.md │ └── repo.yaml ├── hello-namespace ├── README.md ├── config-root │ ├── README.md │ ├── cluster │ │ └── README.md │ ├── clusterregistry │ │ └── README.md │ ├── namespaces │ │ ├── README.md │ │ └── hello │ │ │ └── namespace.yaml │ └── system │ │ ├── README.md │ │ └── repo.yaml └── setup │ └── hello-namespace │ └── config-management.yaml ├── helm-component ├── README.md ├── automated-rendering │ ├── README.md │ ├── base │ │ └── kustomization.yaml │ ├── ignore-deployment-mutation-patch.yaml │ └── kustomization.yaml └── manual-rendering │ ├── README.md │ ├── cert-manager │ └── manifests │ ├── README.md │ ├── cert-manager │ └── templates │ │ ├── cainjector-deployment.yaml │ │ ├── cainjector-rbac.yaml │ │ ├── cainjector-serviceaccount.yaml │ │ ├── deployment.yaml │ │ ├── rbac.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── webhook-deployment.yaml │ │ ├── webhook-mutating-webhook.yaml │ │ ├── webhook-rbac.yaml │ │ ├── webhook-service.yaml │ │ ├── webhook-serviceaccount.yaml │ │ └── webhook-validating-webhook.yaml │ └── namespace-cert-manager.yaml ├── hierarchical-format ├── README.md ├── compiled │ ├── README.md │ ├── clusterrole_namespace-reader.yaml │ ├── clusterrole_secret-admin.yaml │ ├── clusterrole_secret-reader.yaml │ ├── clusterrolebinding_namespace-reader.yaml │ ├── customresourcedefinition_crontabs.stable.example.com.yaml │ ├── namespace_team-1.yaml │ ├── namespace_team-2.yaml │ ├── team-1 │ │ ├── crontab_my-new-cron-object.yaml │ │ ├── limitrange_limits.yaml │ │ ├── networkpolicy_default-deny-egress.yaml │ │ ├── resourcequota_pvc.yaml │ │ ├── rolebinding_secret-reader.yaml │ │ └── serviceaccount_sa.yaml │ └── team-2 │ │ ├── crontab_my-new-cron-object.yaml │ │ ├── limitrange_limits.yaml │ │ ├── networkpolicy_default-deny-all.yaml │ │ ├── resourcequota_pvc.yaml │ │ ├── rolebinding_secret-admin.yaml │ │ └── serviceaccount_sa.yaml └── config │ ├── README.md │ ├── cluster │ ├── clusterrole-namespace-reader.yaml │ ├── clusterrole-secret-admin.yaml │ ├── clusterrole-secret-reader.yaml │ ├── clusterrolebinding-namespace-reader.yaml │ └── crontab-crd.yaml │ ├── namespaces │ ├── limit-range.yaml │ ├── team-1 │ │ ├── crontab.yaml │ │ ├── namespace.yaml │ │ ├── network-policy-default-deny-egress.yaml │ │ ├── resource-quota-pvc.yaml │ │ ├── rolebinding-secret-reader.yaml │ │ └── sa.yaml │ └── team-2 │ │ ├── crontab.yaml │ │ ├── namespace.yaml │ │ ├── network-policy-default-deny-all.yaml │ │ ├── resource-quota-pvc.yaml │ │ ├── rolebinding-secret-admin.yaml │ │ └── sa.yaml │ └── system │ └── repo.yaml ├── kustomize-pipeline ├── README.md ├── build │ └── cloudbuild.yaml ├── config-management.yaml ├── deploy-config │ └── README.md └── source-config │ ├── bases │ └── roles │ │ ├── clusterrole-namespace-reader.yaml │ │ └── kustomization.yaml │ └── kustomization.yaml ├── locality-specific-policy ├── README.md ├── config-root │ ├── README.md │ ├── cluster │ │ ├── README.md │ │ ├── clusterrole.auditor.yaml │ │ └── clusterrolebinding.auditors.yaml │ ├── clusterregistry │ │ ├── README.md │ │ ├── cluster.belgium-2.yaml │ │ ├── cluster.belgium.yaml │ │ ├── cluster.iowa.yaml │ │ ├── cluster.taiwan.yaml │ │ ├── clusterselector.select-env-prod.yaml │ │ └── clusterselector.select-location-belgium.yaml │ ├── namespaces │ │ └── README.md │ └── system │ │ ├── README.md │ │ └── repo.yaml └── setup │ ├── belgium-2.config-management.yaml │ ├── belgium.config-management.yaml │ ├── iowa.config-management.yaml │ └── taiwan.config-management.yaml ├── multi-cluster-access-and-quota ├── README.md ├── docs │ └── architecture.png └── repos │ └── platform │ ├── configsync-src │ ├── all-clusters │ │ ├── all-namespaces │ │ │ ├── kustomization.yaml │ │ │ └── resource-quota.yaml │ │ ├── kustomization.yaml │ │ ├── namespaces.yaml │ │ └── namespaces │ │ │ ├── tenant-a │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ │ ├── tenant-b │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ │ │ └── tenant-c │ │ │ ├── kustomization.yaml │ │ │ └── rbac.yaml │ └── clusters │ │ ├── cluster-east │ │ ├── kustomization.yaml │ │ └── namespaces │ │ │ ├── tenant-a │ │ │ ├── kustomization.yaml │ │ │ └── resource-quota.yaml │ │ │ ├── tenant-b │ │ │ └── kustomization.yaml │ │ │ └── tenant-c │ │ │ └── kustomization.yaml │ │ └── cluster-west │ │ ├── kustomization.yaml │ │ └── namespaces │ │ ├── tenant-a │ │ └── kustomization.yaml │ │ ├── tenant-b │ │ └── kustomization.yaml │ │ └── tenant-c │ │ └── kustomization.yaml │ ├── configsync │ └── clusters │ │ ├── cluster-east │ │ ├── namespaces │ │ │ ├── tenant-a │ │ │ │ ├── rbac.authorization.k8s.io_v1_rolebinding_namespace-viewer.yaml │ │ │ │ └── v1_resourcequota_hard-limit.yaml │ │ │ ├── tenant-b │ │ │ │ ├── rbac.authorization.k8s.io_v1_rolebinding_namespace-viewer.yaml │ │ │ │ └── v1_resourcequota_hard-limit.yaml │ │ │ └── tenant-c │ │ │ │ ├── rbac.authorization.k8s.io_v1_rolebinding_namespace-viewer.yaml │ │ │ │ └── v1_resourcequota_hard-limit.yaml │ │ ├── v1_namespace_tenant-a.yaml │ │ ├── v1_namespace_tenant-b.yaml │ │ └── v1_namespace_tenant-c.yaml │ │ └── cluster-west │ │ ├── namespaces │ │ ├── tenant-a │ │ │ ├── rbac.authorization.k8s.io_v1_rolebinding_namespace-viewer.yaml │ │ │ └── v1_resourcequota_hard-limit.yaml │ │ ├── tenant-b │ │ │ ├── rbac.authorization.k8s.io_v1_rolebinding_namespace-viewer.yaml │ │ │ └── v1_resourcequota_hard-limit.yaml │ │ └── tenant-c │ │ │ ├── rbac.authorization.k8s.io_v1_rolebinding_namespace-viewer.yaml │ │ │ └── v1_resourcequota_hard-limit.yaml │ │ ├── v1_namespace_tenant-a.yaml │ │ ├── v1_namespace_tenant-b.yaml │ │ └── v1_namespace_tenant-c.yaml │ └── scripts │ └── render.sh ├── multi-cluster-acm-setup └── README.md ├── multi-cluster-fan-out ├── README.md ├── docs │ └── architecture.png └── repos │ └── platform │ └── configsync │ └── all-clusters │ ├── namespaces.yaml │ └── namespaces │ ├── tenant-a │ ├── quota.yaml │ └── rbac.yaml │ ├── tenant-b │ ├── quota.yaml │ └── rbac.yaml │ └── tenant-c │ ├── quota.yaml │ └── rbac.yaml ├── multi-cluster-ingress ├── README.md ├── docs │ └── architecture.png └── repos │ ├── platform │ ├── configsync-src │ │ ├── all-clusters │ │ │ ├── gke-networking-rbac.yaml │ │ │ ├── kustomization.yaml │ │ │ └── namespaces.yaml │ │ └── clusters │ │ │ ├── cluster-east │ │ │ └── kustomization.yaml │ │ │ └── cluster-west │ │ │ └── kustomization.yaml │ ├── configsync │ │ └── clusters │ │ │ ├── cluster-east │ │ │ └── v1_namespace_zoneprinter.yaml │ │ │ └── cluster-west │ │ │ └── v1_namespace_zoneprinter.yaml │ └── scripts │ │ └── render.sh │ └── zoneprinter │ ├── configsync-src │ ├── all-clusters │ │ └── namespaces │ │ │ └── zoneprinter │ │ │ ├── kustomization.yaml │ │ │ └── zoneprinter-deployment.yaml │ └── clusters │ │ ├── cluster-east │ │ └── namespaces │ │ │ └── zoneprinter │ │ │ └── kustomization.yaml │ │ └── cluster-west │ │ └── namespaces │ │ └── zoneprinter │ │ ├── kustomization.yaml │ │ └── mci.yaml │ ├── configsync │ └── clusters │ │ ├── cluster-east │ │ └── namespaces │ │ │ └── zoneprinter │ │ │ └── apps_v1_deployment_zoneprinter.yaml │ │ └── cluster-west │ │ └── namespaces │ │ └── zoneprinter │ │ ├── apps_v1_deployment_zoneprinter.yaml │ │ ├── networking.gke.io_v1_multiclusteringress_zoneprinter.yaml │ │ └── networking.gke.io_v1_multiclusterservice_zoneprinter.yaml │ └── scripts │ └── render.sh ├── multi-environments-kustomize ├── README.md ├── cleanup.sh ├── cloud-build-rendering │ ├── cloudbuilder-kustomize │ │ └── Dockerfile │ └── install-config │ │ ├── config-management-dev.yaml │ │ └── config-management-prod.yaml ├── config-source │ ├── README.md │ ├── base │ │ ├── foo │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ └── serviceaccount.yaml │ │ ├── kustomization.yaml │ │ ├── pod-creator-clusterrole.yaml │ │ └── pod-creator-rolebinding.yaml │ ├── cloudbuild.yaml │ └── overlays │ │ ├── dev │ │ └── kustomization.yaml │ │ └── prod │ │ └── kustomization.yaml ├── config-sync-rendering │ └── install-config │ │ ├── config-management-dev.yaml │ │ └── config-management-prod.yaml ├── create-clusters.sh ├── create-repos.sh ├── install-config-sync.sh ├── register-clusters.sh └── secret-manager-git.sh ├── namespace-inheritance ├── README.md ├── compiled │ ├── analytics │ │ ├── networkpolicy_allow-gamestore-ingress.yaml │ │ ├── networkpolicy_default-deny-all-traffic.yaml │ │ ├── resourcequota_quota.yaml │ │ ├── role_eng-viewer.yaml │ │ ├── rolebinding_eng-admin.yaml │ │ └── rolebinding_viewers.yaml │ ├── clusterrole_foo-admin.yaml │ ├── clusterrole_namespace-reader.yaml │ ├── clusterrole_rbac-viewer.yaml │ ├── clusterrolebinding_namespace-readers.yaml │ ├── clusterrolebinding_rbac-viewers.yaml │ ├── gamestore │ │ ├── configmap_store-inventory.yaml │ │ ├── networkpolicy_allow-gamestore-ingress.yaml │ │ ├── networkpolicy_default-deny-all-traffic.yaml │ │ ├── resourcequota_quota.yaml │ │ ├── role_eng-viewer.yaml │ │ ├── rolebinding_bob-rolebinding.yaml │ │ ├── rolebinding_eng-admin.yaml │ │ └── rolebinding_viewers.yaml │ ├── incubator-1 │ │ ├── networkpolicy_default-deny-all-traffic.yaml │ │ ├── role_incubator-1-admin.yaml │ │ └── rolebinding_viewers.yaml │ ├── incubator-2 │ │ ├── networkpolicy_default-deny-all-traffic.yaml │ │ └── rolebinding_viewers.yaml │ ├── namespace_analytics.yaml │ ├── namespace_gamestore.yaml │ ├── namespace_incubator-1.yaml │ └── namespace_incubator-2.yaml └── config │ ├── cluster │ ├── admin-clusterrole.yaml │ ├── namespace-reader-clusterrole.yaml │ ├── namespace-reader-clusterrolebinding.yaml │ ├── rbac-viewer-clusterrole.yaml │ └── rbac-viewers.yaml │ ├── namespaces │ ├── eng │ │ ├── analytics │ │ │ └── namespace.yaml │ │ ├── eng-role.yaml │ │ ├── eng-roleinding.yaml │ │ ├── gamestore │ │ │ ├── bob-rolebinding.yaml │ │ │ ├── inventory-configmap.yaml │ │ │ └── namespace.yaml │ │ ├── network-policy-allow-gamestore-ingress.yaml │ │ ├── quota.yaml │ │ └── selectors.yaml │ ├── network-policy-default-deny-all.yaml │ ├── rnd │ │ ├── incubator-1 │ │ │ ├── incubator-1-admin-role.yaml │ │ │ └── namespace.yaml │ │ └── incubator-2 │ │ │ └── namespace.yaml │ └── viewers-rolebinding.yaml │ └── system │ ├── README.md │ └── repo.yaml ├── namespace-specific-policy ├── README.md ├── automated-rendering │ ├── README.md │ ├── configsync-src │ └── kustomization.yaml ├── configsync-src │ ├── example │ │ ├── base │ │ │ ├── kustomization.yaml │ │ │ ├── namespace.yaml │ │ │ ├── networkpolicy.yaml │ │ │ ├── role.yaml │ │ │ └── rolebinding.yaml │ │ ├── kustomization.yaml │ │ ├── team-a │ │ │ └── kustomization.yaml │ │ ├── team-b │ │ │ └── kustomization.yaml │ │ └── team-c │ │ │ └── kustomization.yaml │ ├── external-data.txt │ └── external-team │ │ └── kustomization.yaml └── manual-rendering │ ├── README.md │ ├── configsync │ ├── external-team_networking.k8s.io_v1_networkpolicy_deny-all.yaml │ ├── external-team_rbac.authorization.k8s.io_v1_role_team-admin.yaml │ ├── external-team_rbac.authorization.k8s.io_v1_rolebinding_team-admin-rolebinding.yaml │ ├── my-namespace_v1_configmap_my-configmap-5f4h4hkd89.yaml │ ├── team-a_networking.k8s.io_v1_networkpolicy_deny-all.yaml │ ├── team-a_rbac.authorization.k8s.io_v1_role_team-admin.yaml │ ├── team-a_rbac.authorization.k8s.io_v1_rolebinding_team-admin-rolebinding.yaml │ ├── team-b_networking.k8s.io_v1_networkpolicy_deny-all.yaml │ ├── team-b_rbac.authorization.k8s.io_v1_role_team-admin.yaml │ ├── team-b_rbac.authorization.k8s.io_v1_rolebinding_team-admin-rolebinding.yaml │ ├── team-c_networking.k8s.io_v1_networkpolicy_deny-all.yaml │ ├── team-c_rbac.authorization.k8s.io_v1_role_team-admin.yaml │ ├── team-c_rbac.authorization.k8s.io_v1_rolebinding_team-admin-rolebinding.yaml │ ├── v1_namespace_external-team.yaml │ ├── v1_namespace_team-a.yaml │ ├── v1_namespace_team-b.yaml │ └── v1_namespace_team-c.yaml │ └── scripts │ └── render.sh ├── pre-sync └── oci-image-verification │ ├── Dockerfile │ ├── README.md │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── signature-verification-deployment.yaml │ └── signature-verification-validatingwebhookconfiguration.yaml ├── quickstart ├── README.md ├── config-sync │ ├── namespaces │ │ └── hello.yaml │ └── policies │ │ └── no-ext-services.yaml └── resources │ └── service.yaml ├── screenshots ├── ci-app-pipeline.svg ├── hello-namespace.svg └── locality-specific-policy.svg └── third_party └── cert-manager ├── Chart.yaml ├── LICENSE ├── README.md ├── templates ├── NOTES.txt ├── _helpers.tpl ├── cainjector-deployment.yaml ├── cainjector-psp-clusterrole.yaml ├── cainjector-psp-clusterrolebinding.yaml ├── cainjector-psp.yaml ├── cainjector-rbac.yaml ├── cainjector-serviceaccount.yaml ├── crds.yaml ├── deployment.yaml ├── psp-clusterrole.yaml ├── psp-clusterrolebinding.yaml ├── psp.yaml ├── rbac.yaml ├── service.yaml ├── serviceaccount.yaml ├── servicemonitor.yaml ├── webhook-deployment.yaml ├── webhook-mutating-webhook.yaml ├── webhook-psp-clusterrole.yaml ├── webhook-psp-clusterrolebinding.yaml ├── webhook-psp.yaml ├── webhook-rbac.yaml ├── webhook-service.yaml ├── webhook-serviceaccount.yaml └── webhook-validating-webhook.yaml └── values.yaml /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/header-checker-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/.github/header-checker-lint.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/snippet-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/.github/snippet-bot.yml -------------------------------------------------------------------------------- /.github/workflows/asm-acm-tutorial-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/.github/workflows/asm-acm-tutorial-ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/README.md -------------------------------------------------------------------------------- /asm-acm-tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/README.md -------------------------------------------------------------------------------- /asm-acm-tutorial/ingress-gateway/authorization-policies/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/ingress-gateway/authorization-policies/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/ingress-gateway/deployments/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/ingress-gateway/deployments/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/ingress-gateway/init/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/ingress-gateway/init/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/online-boutique/authorization-policies/for-ingress-gateway/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/online-boutique/authorization-policies/for-ingress-gateway/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/online-boutique/authorization-policies/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/online-boutique/authorization-policies/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/online-boutique/deployments/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/online-boutique/deployments/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/online-boutique/init/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/online-boutique/init/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/deploy-authorization-policies/ingress-gateway/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/deploy-authorization-policies/ingress-gateway/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/deploy-authorization-policies/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/deploy-authorization-policies/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/deploy-authorization-policies/online-boutique/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/deploy-authorization-policies/online-boutique/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/deployments/ingress-gateway/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/deployments/ingress-gateway/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/deployments/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/deployments/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/deployments/online-boutique/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/deployments/online-boutique/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/enforce-authorization-policies/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/enforce-authorization-policies/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/enforce-authorization-policies/policies/authz-source-principals-not-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/enforce-authorization-policies/policies/authz-source-principals-not-all.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/enforce-authorization-policies/policies/default-deny-authorization-policies.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/enforce-authorization-policies/policies/default-deny-authorization-policies.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/enforce-authorization-policies/policies/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/enforce-authorization-policies/policies/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/enforce-sidecar-injection/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/enforce-sidecar-injection/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/enforce-sidecar-injection/namespace-sidecar-injection-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/enforce-sidecar-injection/namespace-sidecar-injection-label.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/enforce-sidecar-injection/pod-sidecar-injection-annotation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/enforce-sidecar-injection/pod-sidecar-injection-annotation.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/enforce-strict-mtls/gatekeeper-system/config-referential-constraints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/enforce-strict-mtls/gatekeeper-system/config-referential-constraints.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/enforce-strict-mtls/gatekeeper-system/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/enforce-strict-mtls/gatekeeper-system/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/enforce-strict-mtls/gatekeeper-system/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/enforce-strict-mtls/gatekeeper-system/namespace.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/enforce-strict-mtls/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/enforce-strict-mtls/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/enforce-strict-mtls/policies/destinationrule-tls-enabled.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/enforce-strict-mtls/policies/destinationrule-tls-enabled.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/enforce-strict-mtls/policies/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/enforce-strict-mtls/policies/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/enforce-strict-mtls/policies/mesh-level-strict-mtls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/enforce-strict-mtls/policies/mesh-level-strict-mtls.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/enforce-strict-mtls/policies/peerauthentication-strict-mtls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/enforce-strict-mtls/policies/peerauthentication-strict-mtls.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/fix-default-deny-authorization-policy/default-deny-authorization-policy/authorizationpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/fix-default-deny-authorization-policy/default-deny-authorization-policy/authorizationpolicy.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/fix-default-deny-authorization-policy/default-deny-authorization-policy/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/fix-default-deny-authorization-policy/default-deny-authorization-policy/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/fix-default-deny-authorization-policy/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/fix-default-deny-authorization-policy/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/fix-strict-mtls/enable-mesh-strict-mtls/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/fix-strict-mtls/enable-mesh-strict-mtls/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/fix-strict-mtls/enable-mesh-strict-mtls/peerauthentication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/fix-strict-mtls/enable-mesh-strict-mtls/peerauthentication.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/fix-strict-mtls/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/fix-strict-mtls/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/init/ingress-gateway-repo-sync/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/init/ingress-gateway-repo-sync/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/init/ingress-gateway-repo-sync/reposync-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/init/ingress-gateway-repo-sync/reposync-namespace.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/init/ingress-gateway-repo-sync/reposync-role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/init/ingress-gateway-repo-sync/reposync-role-binding.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/init/ingress-gateway-repo-sync/reposync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/init/ingress-gateway-repo-sync/reposync.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/init/istio-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/init/istio-clusterrole.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/init/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/init/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/init/online-boutique-repo-sync/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/init/online-boutique-repo-sync/kustomization.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/init/online-boutique-repo-sync/reposync-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/init/online-boutique-repo-sync/reposync-namespace.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/init/online-boutique-repo-sync/reposync-role-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/init/online-boutique-repo-sync/reposync-role-binding.yaml -------------------------------------------------------------------------------- /asm-acm-tutorial/root-sync/init/online-boutique-repo-sync/reposync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/asm-acm-tutorial/root-sync/init/online-boutique-repo-sync/reposync.yaml -------------------------------------------------------------------------------- /ci-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-app/README.md -------------------------------------------------------------------------------- /ci-app/acm-repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-app/acm-repo/README.md -------------------------------------------------------------------------------- /ci-app/acm-repo/cluster/deployment-must-have-owner.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-app/acm-repo/cluster/deployment-must-have-owner.yaml -------------------------------------------------------------------------------- /ci-app/acm-repo/cluster/requiredlabels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-app/acm-repo/cluster/requiredlabels.yaml -------------------------------------------------------------------------------- /ci-app/acm-repo/clusterregistry/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci-app/acm-repo/namespaces/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ci-app/acm-repo/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-app/acm-repo/system/README.md -------------------------------------------------------------------------------- /ci-app/acm-repo/system/repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-app/acm-repo/system/repo.yaml -------------------------------------------------------------------------------- /ci-app/app-repo/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-app/app-repo/cloudbuild.yaml -------------------------------------------------------------------------------- /ci-app/app-repo/config/base/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-app/app-repo/config/base/deployment.yaml -------------------------------------------------------------------------------- /ci-app/app-repo/config/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-app/app-repo/config/base/kustomization.yaml -------------------------------------------------------------------------------- /ci-app/app-repo/config/prod/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-app/app-repo/config/prod/kustomization.yaml -------------------------------------------------------------------------------- /ci-pipeline-unstructured/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline-unstructured/README.md -------------------------------------------------------------------------------- /ci-pipeline-unstructured/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline-unstructured/cloudbuild.yaml -------------------------------------------------------------------------------- /ci-pipeline-unstructured/config-root/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline-unstructured/config-root/configmap.yaml -------------------------------------------------------------------------------- /ci-pipeline-unstructured/config-root/constraints/banned-key-constraint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline-unstructured/config-root/constraints/banned-key-constraint.yaml -------------------------------------------------------------------------------- /ci-pipeline-unstructured/config-root/constraints/banned-key-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline-unstructured/config-root/constraints/banned-key-template.yaml -------------------------------------------------------------------------------- /ci-pipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/README.md -------------------------------------------------------------------------------- /ci-pipeline/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/cloudbuild.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/cluster/fulfillmentcenter-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/cluster/fulfillmentcenter-crd.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/cluster/namespace-reader-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/cluster/namespace-reader-clusterrole.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/cluster/namespace-reader-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/cluster/namespace-reader-clusterrolebinding.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/cluster/pod-creator-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/cluster/pod-creator-clusterrole.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/cluster/pod-security-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/cluster/pod-security-policy.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/cluster/required-labels-constraint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/cluster/required-labels-constraint.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/cluster/required-labels-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/cluster/required-labels-template.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/namespaces/audit/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/namespaces/audit/namespace.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/namespaces/online/shipping-app-backend/pod-creator-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/namespaces/online/shipping-app-backend/pod-creator-rolebinding.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/namespaces/online/shipping-app-backend/quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/namespaces/online/shipping-app-backend/quota.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/namespaces/online/shipping-app-backend/shipping-dev/job-creator-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/namespaces/online/shipping-app-backend/shipping-dev/job-creator-role.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/namespaces/online/shipping-app-backend/shipping-dev/job-creator-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/namespaces/online/shipping-app-backend/shipping-dev/job-creator-rolebinding.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/namespaces/online/shipping-app-backend/shipping-dev/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/namespaces/online/shipping-app-backend/shipping-dev/namespace.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/namespaces/online/shipping-app-backend/shipping-prod/fulfillmentcenter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/namespaces/online/shipping-app-backend/shipping-prod/fulfillmentcenter.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/namespaces/online/shipping-app-backend/shipping-prod/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/namespaces/online/shipping-app-backend/shipping-prod/namespace.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/namespaces/online/shipping-app-backend/shipping-staging/fulfillmentcenter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/namespaces/online/shipping-app-backend/shipping-staging/fulfillmentcenter.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/namespaces/online/shipping-app-backend/shipping-staging/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/namespaces/online/shipping-app-backend/shipping-staging/namespace.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/namespaces/sre-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/namespaces/sre-rolebinding.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/namespaces/sre-supported-selector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/namespaces/sre-supported-selector.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/namespaces/viewers-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/namespaces/viewers-rolebinding.yaml -------------------------------------------------------------------------------- /ci-pipeline/config-root/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/system/README.md -------------------------------------------------------------------------------- /ci-pipeline/config-root/system/repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/ci-pipeline/config-root/system/repo.yaml -------------------------------------------------------------------------------- /config-controller-quickstart/pubsub-api.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/config-controller-quickstart/pubsub-api.yaml -------------------------------------------------------------------------------- /config-controller-quickstart/pubsub-topic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/config-controller-quickstart/pubsub-topic.yaml -------------------------------------------------------------------------------- /config-sync-quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/config-sync-quickstart/README.md -------------------------------------------------------------------------------- /config-sync-quickstart/multirepo/namespaces/gamestore/configmap-inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/config-sync-quickstart/multirepo/namespaces/gamestore/configmap-inventory.yaml -------------------------------------------------------------------------------- /config-sync-quickstart/multirepo/namespaces/gamestore/webstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/config-sync-quickstart/multirepo/namespaces/gamestore/webstore.yaml -------------------------------------------------------------------------------- /config-sync-quickstart/multirepo/root/acm-monitor/acm-prometheus-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/config-sync-quickstart/multirepo/root/acm-monitor/acm-prometheus-config.yaml -------------------------------------------------------------------------------- /config-sync-quickstart/multirepo/root/acm-monitor/namespace-monitoring.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/config-sync-quickstart/multirepo/root/acm-monitor/namespace-monitoring.yaml -------------------------------------------------------------------------------- /config-sync-quickstart/multirepo/root/acm-monitor/prometheus-operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/config-sync-quickstart/multirepo/root/acm-monitor/prometheus-operator.yaml -------------------------------------------------------------------------------- /config-sync-quickstart/multirepo/root/clusterrole-namespace-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/config-sync-quickstart/multirepo/root/clusterrole-namespace-reader.yaml -------------------------------------------------------------------------------- /config-sync-quickstart/multirepo/root/clusterrole-webstore-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/config-sync-quickstart/multirepo/root/clusterrole-webstore-admin.yaml -------------------------------------------------------------------------------- /config-sync-quickstart/multirepo/root/crd-anvil.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/config-sync-quickstart/multirepo/root/crd-anvil.yaml -------------------------------------------------------------------------------- /config-sync-quickstart/multirepo/root/crd-webstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/config-sync-quickstart/multirepo/root/crd-webstore.yaml -------------------------------------------------------------------------------- /config-sync-quickstart/multirepo/root/namespace-gamestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/config-sync-quickstart/multirepo/root/namespace-gamestore.yaml -------------------------------------------------------------------------------- /config-sync-quickstart/multirepo/root/reposync-gamestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/config-sync-quickstart/multirepo/root/reposync-gamestore.yaml -------------------------------------------------------------------------------- /config-sync-quickstart/multirepo/root/rolebinding-gamestore-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/config-sync-quickstart/multirepo/root/rolebinding-gamestore-admin.yaml -------------------------------------------------------------------------------- /config-sync-quickstart/multirepo/root/rolebinding-gamestore-webstore-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/config-sync-quickstart/multirepo/root/rolebinding-gamestore-webstore-admin.yaml -------------------------------------------------------------------------------- /crds/configmanagement_v1_configmanagement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/crds/configmanagement_v1_configmanagement.yaml -------------------------------------------------------------------------------- /fleet-packages-quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-packages-quickstart/README.md -------------------------------------------------------------------------------- /fleet-packages-quickstart/config/nginx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-packages-quickstart/config/nginx.yaml -------------------------------------------------------------------------------- /fleet-tenancy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/README.md -------------------------------------------------------------------------------- /fleet-tenancy/config/backend-bookstore-reposync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/config/backend-bookstore-reposync.yaml -------------------------------------------------------------------------------- /fleet-tenancy/config/backend-namespace-selector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/config/backend-namespace-selector.yaml -------------------------------------------------------------------------------- /fleet-tenancy/config/backend-network-policy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/config/backend-network-policy.yaml -------------------------------------------------------------------------------- /fleet-tenancy/config/frontend-namespace-selector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/config/frontend-namespace-selector.yaml -------------------------------------------------------------------------------- /fleet-tenancy/config/frontend-resource-quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/config/frontend-resource-quota.yaml -------------------------------------------------------------------------------- /fleet-tenancy/images/fleet-team-structure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/images/fleet-team-structure.svg -------------------------------------------------------------------------------- /fleet-tenancy/images/fleet-tenancy-resources.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/images/fleet-tenancy-resources.png -------------------------------------------------------------------------------- /fleet-tenancy/teams/backend/bookstore/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/teams/backend/bookstore/config.yaml -------------------------------------------------------------------------------- /fleet-tenancy/terraform/1-fleet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/terraform/1-fleet/README.md -------------------------------------------------------------------------------- /fleet-tenancy/terraform/1-fleet/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/terraform/1-fleet/main.tf -------------------------------------------------------------------------------- /fleet-tenancy/terraform/1-fleet/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/terraform/1-fleet/variables.tf -------------------------------------------------------------------------------- /fleet-tenancy/terraform/2-fleet-default-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/terraform/2-fleet-default-config/README.md -------------------------------------------------------------------------------- /fleet-tenancy/terraform/2-fleet-default-config/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/terraform/2-fleet-default-config/main.tf -------------------------------------------------------------------------------- /fleet-tenancy/terraform/2-fleet-default-config/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/terraform/2-fleet-default-config/variables.tf -------------------------------------------------------------------------------- /fleet-tenancy/terraform/3-clusters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/terraform/3-clusters/README.md -------------------------------------------------------------------------------- /fleet-tenancy/terraform/3-clusters/cluster/cluster.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/terraform/3-clusters/cluster/cluster.tf -------------------------------------------------------------------------------- /fleet-tenancy/terraform/3-clusters/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/terraform/3-clusters/main.tf -------------------------------------------------------------------------------- /fleet-tenancy/terraform/3-clusters/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/terraform/3-clusters/variables.tf -------------------------------------------------------------------------------- /fleet-tenancy/terraform/4-scopes-and-namespaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/terraform/4-scopes-and-namespaces/README.md -------------------------------------------------------------------------------- /fleet-tenancy/terraform/4-scopes-and-namespaces/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/terraform/4-scopes-and-namespaces/main.tf -------------------------------------------------------------------------------- /fleet-tenancy/terraform/4-scopes-and-namespaces/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/fleet-tenancy/terraform/4-scopes-and-namespaces/variables.tf -------------------------------------------------------------------------------- /foo-corp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/README.md -------------------------------------------------------------------------------- /foo-corp/cluster/fulfillmentcenter-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/cluster/fulfillmentcenter-crd.yaml -------------------------------------------------------------------------------- /foo-corp/cluster/namespace-reader-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/cluster/namespace-reader-clusterrole.yaml -------------------------------------------------------------------------------- /foo-corp/cluster/namespace-reader-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/cluster/namespace-reader-clusterrolebinding.yaml -------------------------------------------------------------------------------- /foo-corp/cluster/pod-creator-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/cluster/pod-creator-clusterrole.yaml -------------------------------------------------------------------------------- /foo-corp/namespaces/audit/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/namespaces/audit/namespace.yaml -------------------------------------------------------------------------------- /foo-corp/namespaces/online/shipping-app-backend/pod-creator-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/namespaces/online/shipping-app-backend/pod-creator-rolebinding.yaml -------------------------------------------------------------------------------- /foo-corp/namespaces/online/shipping-app-backend/quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/namespaces/online/shipping-app-backend/quota.yaml -------------------------------------------------------------------------------- /foo-corp/namespaces/online/shipping-app-backend/shipping-dev/job-creator-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/namespaces/online/shipping-app-backend/shipping-dev/job-creator-role.yaml -------------------------------------------------------------------------------- /foo-corp/namespaces/online/shipping-app-backend/shipping-dev/job-creator-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/namespaces/online/shipping-app-backend/shipping-dev/job-creator-rolebinding.yaml -------------------------------------------------------------------------------- /foo-corp/namespaces/online/shipping-app-backend/shipping-dev/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/namespaces/online/shipping-app-backend/shipping-dev/namespace.yaml -------------------------------------------------------------------------------- /foo-corp/namespaces/online/shipping-app-backend/shipping-prod/fulfillmentcenter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/namespaces/online/shipping-app-backend/shipping-prod/fulfillmentcenter.yaml -------------------------------------------------------------------------------- /foo-corp/namespaces/online/shipping-app-backend/shipping-prod/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/namespaces/online/shipping-app-backend/shipping-prod/namespace.yaml -------------------------------------------------------------------------------- /foo-corp/namespaces/online/shipping-app-backend/shipping-staging/fulfillmentcenter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/namespaces/online/shipping-app-backend/shipping-staging/fulfillmentcenter.yaml -------------------------------------------------------------------------------- /foo-corp/namespaces/online/shipping-app-backend/shipping-staging/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/namespaces/online/shipping-app-backend/shipping-staging/namespace.yaml -------------------------------------------------------------------------------- /foo-corp/namespaces/sre-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/namespaces/sre-rolebinding.yaml -------------------------------------------------------------------------------- /foo-corp/namespaces/sre-supported-selector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/namespaces/sre-supported-selector.yaml -------------------------------------------------------------------------------- /foo-corp/namespaces/viewers-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/namespaces/viewers-rolebinding.yaml -------------------------------------------------------------------------------- /foo-corp/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/system/README.md -------------------------------------------------------------------------------- /foo-corp/system/repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/foo-corp/system/repo.yaml -------------------------------------------------------------------------------- /hello-namespace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hello-namespace/README.md -------------------------------------------------------------------------------- /hello-namespace/config-root/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hello-namespace/config-root/README.md -------------------------------------------------------------------------------- /hello-namespace/config-root/cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hello-namespace/config-root/cluster/README.md -------------------------------------------------------------------------------- /hello-namespace/config-root/clusterregistry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hello-namespace/config-root/clusterregistry/README.md -------------------------------------------------------------------------------- /hello-namespace/config-root/namespaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hello-namespace/config-root/namespaces/README.md -------------------------------------------------------------------------------- /hello-namespace/config-root/namespaces/hello/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hello-namespace/config-root/namespaces/hello/namespace.yaml -------------------------------------------------------------------------------- /hello-namespace/config-root/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hello-namespace/config-root/system/README.md -------------------------------------------------------------------------------- /hello-namespace/config-root/system/repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hello-namespace/config-root/system/repo.yaml -------------------------------------------------------------------------------- /hello-namespace/setup/hello-namespace/config-management.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hello-namespace/setup/hello-namespace/config-management.yaml -------------------------------------------------------------------------------- /helm-component/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/README.md -------------------------------------------------------------------------------- /helm-component/automated-rendering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/automated-rendering/README.md -------------------------------------------------------------------------------- /helm-component/automated-rendering/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/automated-rendering/base/kustomization.yaml -------------------------------------------------------------------------------- /helm-component/automated-rendering/ignore-deployment-mutation-patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/automated-rendering/ignore-deployment-mutation-patch.yaml -------------------------------------------------------------------------------- /helm-component/automated-rendering/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/automated-rendering/kustomization.yaml -------------------------------------------------------------------------------- /helm-component/manual-rendering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/manual-rendering/README.md -------------------------------------------------------------------------------- /helm-component/manual-rendering/cert-manager: -------------------------------------------------------------------------------- 1 | ../../third_party/cert-manager/ -------------------------------------------------------------------------------- /helm-component/manual-rendering/manifests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/manual-rendering/manifests/README.md -------------------------------------------------------------------------------- /helm-component/manual-rendering/manifests/cert-manager/templates/cainjector-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/manual-rendering/manifests/cert-manager/templates/cainjector-deployment.yaml -------------------------------------------------------------------------------- /helm-component/manual-rendering/manifests/cert-manager/templates/cainjector-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/manual-rendering/manifests/cert-manager/templates/cainjector-rbac.yaml -------------------------------------------------------------------------------- /helm-component/manual-rendering/manifests/cert-manager/templates/cainjector-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/manual-rendering/manifests/cert-manager/templates/cainjector-serviceaccount.yaml -------------------------------------------------------------------------------- /helm-component/manual-rendering/manifests/cert-manager/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/manual-rendering/manifests/cert-manager/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-component/manual-rendering/manifests/cert-manager/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/manual-rendering/manifests/cert-manager/templates/rbac.yaml -------------------------------------------------------------------------------- /helm-component/manual-rendering/manifests/cert-manager/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/manual-rendering/manifests/cert-manager/templates/service.yaml -------------------------------------------------------------------------------- /helm-component/manual-rendering/manifests/cert-manager/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/manual-rendering/manifests/cert-manager/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-component/manual-rendering/manifests/cert-manager/templates/webhook-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/manual-rendering/manifests/cert-manager/templates/webhook-deployment.yaml -------------------------------------------------------------------------------- /helm-component/manual-rendering/manifests/cert-manager/templates/webhook-mutating-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/manual-rendering/manifests/cert-manager/templates/webhook-mutating-webhook.yaml -------------------------------------------------------------------------------- /helm-component/manual-rendering/manifests/cert-manager/templates/webhook-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/manual-rendering/manifests/cert-manager/templates/webhook-rbac.yaml -------------------------------------------------------------------------------- /helm-component/manual-rendering/manifests/cert-manager/templates/webhook-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/manual-rendering/manifests/cert-manager/templates/webhook-service.yaml -------------------------------------------------------------------------------- /helm-component/manual-rendering/manifests/cert-manager/templates/webhook-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/manual-rendering/manifests/cert-manager/templates/webhook-serviceaccount.yaml -------------------------------------------------------------------------------- /helm-component/manual-rendering/manifests/cert-manager/templates/webhook-validating-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/manual-rendering/manifests/cert-manager/templates/webhook-validating-webhook.yaml -------------------------------------------------------------------------------- /helm-component/manual-rendering/manifests/namespace-cert-manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/helm-component/manual-rendering/manifests/namespace-cert-manager.yaml -------------------------------------------------------------------------------- /hierarchical-format/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/README.md -------------------------------------------------------------------------------- /hierarchical-format/compiled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/README.md -------------------------------------------------------------------------------- /hierarchical-format/compiled/clusterrole_namespace-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/clusterrole_namespace-reader.yaml -------------------------------------------------------------------------------- /hierarchical-format/compiled/clusterrole_secret-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/clusterrole_secret-admin.yaml -------------------------------------------------------------------------------- /hierarchical-format/compiled/clusterrole_secret-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/clusterrole_secret-reader.yaml -------------------------------------------------------------------------------- /hierarchical-format/compiled/clusterrolebinding_namespace-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/clusterrolebinding_namespace-reader.yaml -------------------------------------------------------------------------------- /hierarchical-format/compiled/customresourcedefinition_crontabs.stable.example.com.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/customresourcedefinition_crontabs.stable.example.com.yaml -------------------------------------------------------------------------------- /hierarchical-format/compiled/namespace_team-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/namespace_team-1.yaml -------------------------------------------------------------------------------- /hierarchical-format/compiled/namespace_team-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/namespace_team-2.yaml -------------------------------------------------------------------------------- /hierarchical-format/compiled/team-1/crontab_my-new-cron-object.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/team-1/crontab_my-new-cron-object.yaml -------------------------------------------------------------------------------- /hierarchical-format/compiled/team-1/limitrange_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/team-1/limitrange_limits.yaml -------------------------------------------------------------------------------- /hierarchical-format/compiled/team-1/networkpolicy_default-deny-egress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/team-1/networkpolicy_default-deny-egress.yaml -------------------------------------------------------------------------------- /hierarchical-format/compiled/team-1/resourcequota_pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/team-1/resourcequota_pvc.yaml -------------------------------------------------------------------------------- /hierarchical-format/compiled/team-1/rolebinding_secret-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/team-1/rolebinding_secret-reader.yaml -------------------------------------------------------------------------------- /hierarchical-format/compiled/team-1/serviceaccount_sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/team-1/serviceaccount_sa.yaml -------------------------------------------------------------------------------- /hierarchical-format/compiled/team-2/crontab_my-new-cron-object.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/team-2/crontab_my-new-cron-object.yaml -------------------------------------------------------------------------------- /hierarchical-format/compiled/team-2/limitrange_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/team-2/limitrange_limits.yaml -------------------------------------------------------------------------------- /hierarchical-format/compiled/team-2/networkpolicy_default-deny-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/team-2/networkpolicy_default-deny-all.yaml -------------------------------------------------------------------------------- /hierarchical-format/compiled/team-2/resourcequota_pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/team-2/resourcequota_pvc.yaml -------------------------------------------------------------------------------- /hierarchical-format/compiled/team-2/rolebinding_secret-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/team-2/rolebinding_secret-admin.yaml -------------------------------------------------------------------------------- /hierarchical-format/compiled/team-2/serviceaccount_sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/compiled/team-2/serviceaccount_sa.yaml -------------------------------------------------------------------------------- /hierarchical-format/config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/README.md -------------------------------------------------------------------------------- /hierarchical-format/config/cluster/clusterrole-namespace-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/cluster/clusterrole-namespace-reader.yaml -------------------------------------------------------------------------------- /hierarchical-format/config/cluster/clusterrole-secret-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/cluster/clusterrole-secret-admin.yaml -------------------------------------------------------------------------------- /hierarchical-format/config/cluster/clusterrole-secret-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/cluster/clusterrole-secret-reader.yaml -------------------------------------------------------------------------------- /hierarchical-format/config/cluster/clusterrolebinding-namespace-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/cluster/clusterrolebinding-namespace-reader.yaml -------------------------------------------------------------------------------- /hierarchical-format/config/cluster/crontab-crd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/cluster/crontab-crd.yaml -------------------------------------------------------------------------------- /hierarchical-format/config/namespaces/limit-range.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/namespaces/limit-range.yaml -------------------------------------------------------------------------------- /hierarchical-format/config/namespaces/team-1/crontab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/namespaces/team-1/crontab.yaml -------------------------------------------------------------------------------- /hierarchical-format/config/namespaces/team-1/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/namespaces/team-1/namespace.yaml -------------------------------------------------------------------------------- /hierarchical-format/config/namespaces/team-1/network-policy-default-deny-egress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/namespaces/team-1/network-policy-default-deny-egress.yaml -------------------------------------------------------------------------------- /hierarchical-format/config/namespaces/team-1/resource-quota-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/namespaces/team-1/resource-quota-pvc.yaml -------------------------------------------------------------------------------- /hierarchical-format/config/namespaces/team-1/rolebinding-secret-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/namespaces/team-1/rolebinding-secret-reader.yaml -------------------------------------------------------------------------------- /hierarchical-format/config/namespaces/team-1/sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/namespaces/team-1/sa.yaml -------------------------------------------------------------------------------- /hierarchical-format/config/namespaces/team-2/crontab.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/namespaces/team-2/crontab.yaml -------------------------------------------------------------------------------- /hierarchical-format/config/namespaces/team-2/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/namespaces/team-2/namespace.yaml -------------------------------------------------------------------------------- /hierarchical-format/config/namespaces/team-2/network-policy-default-deny-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/namespaces/team-2/network-policy-default-deny-all.yaml -------------------------------------------------------------------------------- /hierarchical-format/config/namespaces/team-2/resource-quota-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/namespaces/team-2/resource-quota-pvc.yaml -------------------------------------------------------------------------------- /hierarchical-format/config/namespaces/team-2/rolebinding-secret-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/namespaces/team-2/rolebinding-secret-admin.yaml -------------------------------------------------------------------------------- /hierarchical-format/config/namespaces/team-2/sa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/namespaces/team-2/sa.yaml -------------------------------------------------------------------------------- /hierarchical-format/config/system/repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/hierarchical-format/config/system/repo.yaml -------------------------------------------------------------------------------- /kustomize-pipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/kustomize-pipeline/README.md -------------------------------------------------------------------------------- /kustomize-pipeline/build/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/kustomize-pipeline/build/cloudbuild.yaml -------------------------------------------------------------------------------- /kustomize-pipeline/config-management.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/kustomize-pipeline/config-management.yaml -------------------------------------------------------------------------------- /kustomize-pipeline/deploy-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/kustomize-pipeline/deploy-config/README.md -------------------------------------------------------------------------------- /kustomize-pipeline/source-config/bases/roles/clusterrole-namespace-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/kustomize-pipeline/source-config/bases/roles/clusterrole-namespace-reader.yaml -------------------------------------------------------------------------------- /kustomize-pipeline/source-config/bases/roles/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/kustomize-pipeline/source-config/bases/roles/kustomization.yaml -------------------------------------------------------------------------------- /kustomize-pipeline/source-config/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/kustomize-pipeline/source-config/kustomization.yaml -------------------------------------------------------------------------------- /locality-specific-policy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/locality-specific-policy/README.md -------------------------------------------------------------------------------- /locality-specific-policy/config-root/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/locality-specific-policy/config-root/README.md -------------------------------------------------------------------------------- /locality-specific-policy/config-root/cluster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/locality-specific-policy/config-root/cluster/README.md -------------------------------------------------------------------------------- /locality-specific-policy/config-root/cluster/clusterrole.auditor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/locality-specific-policy/config-root/cluster/clusterrole.auditor.yaml -------------------------------------------------------------------------------- /locality-specific-policy/config-root/cluster/clusterrolebinding.auditors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/locality-specific-policy/config-root/cluster/clusterrolebinding.auditors.yaml -------------------------------------------------------------------------------- /locality-specific-policy/config-root/clusterregistry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/locality-specific-policy/config-root/clusterregistry/README.md -------------------------------------------------------------------------------- /locality-specific-policy/config-root/clusterregistry/cluster.belgium-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/locality-specific-policy/config-root/clusterregistry/cluster.belgium-2.yaml -------------------------------------------------------------------------------- /locality-specific-policy/config-root/clusterregistry/cluster.belgium.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/locality-specific-policy/config-root/clusterregistry/cluster.belgium.yaml -------------------------------------------------------------------------------- /locality-specific-policy/config-root/clusterregistry/cluster.iowa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/locality-specific-policy/config-root/clusterregistry/cluster.iowa.yaml -------------------------------------------------------------------------------- /locality-specific-policy/config-root/clusterregistry/cluster.taiwan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/locality-specific-policy/config-root/clusterregistry/cluster.taiwan.yaml -------------------------------------------------------------------------------- /locality-specific-policy/config-root/clusterregistry/clusterselector.select-env-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/locality-specific-policy/config-root/clusterregistry/clusterselector.select-env-prod.yaml -------------------------------------------------------------------------------- /locality-specific-policy/config-root/clusterregistry/clusterselector.select-location-belgium.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/locality-specific-policy/config-root/clusterregistry/clusterselector.select-location-belgium.yaml -------------------------------------------------------------------------------- /locality-specific-policy/config-root/namespaces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/locality-specific-policy/config-root/namespaces/README.md -------------------------------------------------------------------------------- /locality-specific-policy/config-root/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/locality-specific-policy/config-root/system/README.md -------------------------------------------------------------------------------- /locality-specific-policy/config-root/system/repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/locality-specific-policy/config-root/system/repo.yaml -------------------------------------------------------------------------------- /locality-specific-policy/setup/belgium-2.config-management.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/locality-specific-policy/setup/belgium-2.config-management.yaml -------------------------------------------------------------------------------- /locality-specific-policy/setup/belgium.config-management.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/locality-specific-policy/setup/belgium.config-management.yaml -------------------------------------------------------------------------------- /locality-specific-policy/setup/iowa.config-management.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/locality-specific-policy/setup/iowa.config-management.yaml -------------------------------------------------------------------------------- /locality-specific-policy/setup/taiwan.config-management.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/locality-specific-policy/setup/taiwan.config-management.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/README.md -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/docs/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/docs/architecture.png -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/all-namespaces/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/all-namespaces/kustomization.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/all-namespaces/resource-quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/all-namespaces/resource-quota.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/kustomization.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/namespaces.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/namespaces/tenant-a/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/namespaces/tenant-a/kustomization.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/namespaces/tenant-a/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/namespaces/tenant-a/rbac.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/namespaces/tenant-b/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/namespaces/tenant-b/kustomization.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/namespaces/tenant-b/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/namespaces/tenant-b/rbac.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/namespaces/tenant-c/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/namespaces/tenant-c/kustomization.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/namespaces/tenant-c/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync-src/all-clusters/namespaces/tenant-c/rbac.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync-src/clusters/cluster-east/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync-src/clusters/cluster-east/kustomization.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync-src/clusters/cluster-east/namespaces/tenant-a/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync-src/clusters/cluster-east/namespaces/tenant-a/kustomization.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync-src/clusters/cluster-east/namespaces/tenant-a/resource-quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync-src/clusters/cluster-east/namespaces/tenant-a/resource-quota.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync-src/clusters/cluster-east/namespaces/tenant-b/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync-src/clusters/cluster-east/namespaces/tenant-b/kustomization.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync-src/clusters/cluster-east/namespaces/tenant-c/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync-src/clusters/cluster-east/namespaces/tenant-c/kustomization.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync-src/clusters/cluster-west/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync-src/clusters/cluster-west/kustomization.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync-src/clusters/cluster-west/namespaces/tenant-a/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync-src/clusters/cluster-west/namespaces/tenant-a/kustomization.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync-src/clusters/cluster-west/namespaces/tenant-b/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync-src/clusters/cluster-west/namespaces/tenant-b/kustomization.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync-src/clusters/cluster-west/namespaces/tenant-c/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync-src/clusters/cluster-west/namespaces/tenant-c/kustomization.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-east/namespaces/tenant-a/rbac.authorization.k8s.io_v1_rolebinding_namespace-viewer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-east/namespaces/tenant-a/rbac.authorization.k8s.io_v1_rolebinding_namespace-viewer.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-east/namespaces/tenant-a/v1_resourcequota_hard-limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-east/namespaces/tenant-a/v1_resourcequota_hard-limit.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-east/namespaces/tenant-b/rbac.authorization.k8s.io_v1_rolebinding_namespace-viewer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-east/namespaces/tenant-b/rbac.authorization.k8s.io_v1_rolebinding_namespace-viewer.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-east/namespaces/tenant-b/v1_resourcequota_hard-limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-east/namespaces/tenant-b/v1_resourcequota_hard-limit.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-east/namespaces/tenant-c/rbac.authorization.k8s.io_v1_rolebinding_namespace-viewer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-east/namespaces/tenant-c/rbac.authorization.k8s.io_v1_rolebinding_namespace-viewer.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-east/namespaces/tenant-c/v1_resourcequota_hard-limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-east/namespaces/tenant-c/v1_resourcequota_hard-limit.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-east/v1_namespace_tenant-a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-east/v1_namespace_tenant-a.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-east/v1_namespace_tenant-b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-east/v1_namespace_tenant-b.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-east/v1_namespace_tenant-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-east/v1_namespace_tenant-c.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-west/namespaces/tenant-a/rbac.authorization.k8s.io_v1_rolebinding_namespace-viewer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-west/namespaces/tenant-a/rbac.authorization.k8s.io_v1_rolebinding_namespace-viewer.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-west/namespaces/tenant-a/v1_resourcequota_hard-limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-west/namespaces/tenant-a/v1_resourcequota_hard-limit.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-west/namespaces/tenant-b/rbac.authorization.k8s.io_v1_rolebinding_namespace-viewer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-west/namespaces/tenant-b/rbac.authorization.k8s.io_v1_rolebinding_namespace-viewer.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-west/namespaces/tenant-b/v1_resourcequota_hard-limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-west/namespaces/tenant-b/v1_resourcequota_hard-limit.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-west/namespaces/tenant-c/rbac.authorization.k8s.io_v1_rolebinding_namespace-viewer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-west/namespaces/tenant-c/rbac.authorization.k8s.io_v1_rolebinding_namespace-viewer.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-west/namespaces/tenant-c/v1_resourcequota_hard-limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-west/namespaces/tenant-c/v1_resourcequota_hard-limit.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-west/v1_namespace_tenant-a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-west/v1_namespace_tenant-a.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-west/v1_namespace_tenant-b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-west/v1_namespace_tenant-b.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-west/v1_namespace_tenant-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/configsync/clusters/cluster-west/v1_namespace_tenant-c.yaml -------------------------------------------------------------------------------- /multi-cluster-access-and-quota/repos/platform/scripts/render.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-access-and-quota/repos/platform/scripts/render.sh -------------------------------------------------------------------------------- /multi-cluster-acm-setup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-acm-setup/README.md -------------------------------------------------------------------------------- /multi-cluster-fan-out/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-fan-out/README.md -------------------------------------------------------------------------------- /multi-cluster-fan-out/docs/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-fan-out/docs/architecture.png -------------------------------------------------------------------------------- /multi-cluster-fan-out/repos/platform/configsync/all-clusters/namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-fan-out/repos/platform/configsync/all-clusters/namespaces.yaml -------------------------------------------------------------------------------- /multi-cluster-fan-out/repos/platform/configsync/all-clusters/namespaces/tenant-a/quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-fan-out/repos/platform/configsync/all-clusters/namespaces/tenant-a/quota.yaml -------------------------------------------------------------------------------- /multi-cluster-fan-out/repos/platform/configsync/all-clusters/namespaces/tenant-a/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-fan-out/repos/platform/configsync/all-clusters/namespaces/tenant-a/rbac.yaml -------------------------------------------------------------------------------- /multi-cluster-fan-out/repos/platform/configsync/all-clusters/namespaces/tenant-b/quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-fan-out/repos/platform/configsync/all-clusters/namespaces/tenant-b/quota.yaml -------------------------------------------------------------------------------- /multi-cluster-fan-out/repos/platform/configsync/all-clusters/namespaces/tenant-b/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-fan-out/repos/platform/configsync/all-clusters/namespaces/tenant-b/rbac.yaml -------------------------------------------------------------------------------- /multi-cluster-fan-out/repos/platform/configsync/all-clusters/namespaces/tenant-c/quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-fan-out/repos/platform/configsync/all-clusters/namespaces/tenant-c/quota.yaml -------------------------------------------------------------------------------- /multi-cluster-fan-out/repos/platform/configsync/all-clusters/namespaces/tenant-c/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-fan-out/repos/platform/configsync/all-clusters/namespaces/tenant-c/rbac.yaml -------------------------------------------------------------------------------- /multi-cluster-ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/README.md -------------------------------------------------------------------------------- /multi-cluster-ingress/docs/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/docs/architecture.png -------------------------------------------------------------------------------- /multi-cluster-ingress/repos/platform/configsync-src/all-clusters/gke-networking-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/repos/platform/configsync-src/all-clusters/gke-networking-rbac.yaml -------------------------------------------------------------------------------- /multi-cluster-ingress/repos/platform/configsync-src/all-clusters/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/repos/platform/configsync-src/all-clusters/kustomization.yaml -------------------------------------------------------------------------------- /multi-cluster-ingress/repos/platform/configsync-src/all-clusters/namespaces.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/repos/platform/configsync-src/all-clusters/namespaces.yaml -------------------------------------------------------------------------------- /multi-cluster-ingress/repos/platform/configsync-src/clusters/cluster-east/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/repos/platform/configsync-src/clusters/cluster-east/kustomization.yaml -------------------------------------------------------------------------------- /multi-cluster-ingress/repos/platform/configsync-src/clusters/cluster-west/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/repos/platform/configsync-src/clusters/cluster-west/kustomization.yaml -------------------------------------------------------------------------------- /multi-cluster-ingress/repos/platform/configsync/clusters/cluster-east/v1_namespace_zoneprinter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/repos/platform/configsync/clusters/cluster-east/v1_namespace_zoneprinter.yaml -------------------------------------------------------------------------------- /multi-cluster-ingress/repos/platform/configsync/clusters/cluster-west/v1_namespace_zoneprinter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/repos/platform/configsync/clusters/cluster-west/v1_namespace_zoneprinter.yaml -------------------------------------------------------------------------------- /multi-cluster-ingress/repos/platform/scripts/render.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/repos/platform/scripts/render.sh -------------------------------------------------------------------------------- /multi-cluster-ingress/repos/zoneprinter/configsync-src/all-clusters/namespaces/zoneprinter/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/repos/zoneprinter/configsync-src/all-clusters/namespaces/zoneprinter/kustomization.yaml -------------------------------------------------------------------------------- /multi-cluster-ingress/repos/zoneprinter/configsync-src/all-clusters/namespaces/zoneprinter/zoneprinter-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/repos/zoneprinter/configsync-src/all-clusters/namespaces/zoneprinter/zoneprinter-deployment.yaml -------------------------------------------------------------------------------- /multi-cluster-ingress/repos/zoneprinter/configsync-src/clusters/cluster-east/namespaces/zoneprinter/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/repos/zoneprinter/configsync-src/clusters/cluster-east/namespaces/zoneprinter/kustomization.yaml -------------------------------------------------------------------------------- /multi-cluster-ingress/repos/zoneprinter/configsync-src/clusters/cluster-west/namespaces/zoneprinter/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/repos/zoneprinter/configsync-src/clusters/cluster-west/namespaces/zoneprinter/kustomization.yaml -------------------------------------------------------------------------------- /multi-cluster-ingress/repos/zoneprinter/configsync-src/clusters/cluster-west/namespaces/zoneprinter/mci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/repos/zoneprinter/configsync-src/clusters/cluster-west/namespaces/zoneprinter/mci.yaml -------------------------------------------------------------------------------- /multi-cluster-ingress/repos/zoneprinter/configsync/clusters/cluster-east/namespaces/zoneprinter/apps_v1_deployment_zoneprinter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/repos/zoneprinter/configsync/clusters/cluster-east/namespaces/zoneprinter/apps_v1_deployment_zoneprinter.yaml -------------------------------------------------------------------------------- /multi-cluster-ingress/repos/zoneprinter/configsync/clusters/cluster-west/namespaces/zoneprinter/apps_v1_deployment_zoneprinter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/repos/zoneprinter/configsync/clusters/cluster-west/namespaces/zoneprinter/apps_v1_deployment_zoneprinter.yaml -------------------------------------------------------------------------------- /multi-cluster-ingress/repos/zoneprinter/configsync/clusters/cluster-west/namespaces/zoneprinter/networking.gke.io_v1_multiclusteringress_zoneprinter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/repos/zoneprinter/configsync/clusters/cluster-west/namespaces/zoneprinter/networking.gke.io_v1_multiclusteringress_zoneprinter.yaml -------------------------------------------------------------------------------- /multi-cluster-ingress/repos/zoneprinter/configsync/clusters/cluster-west/namespaces/zoneprinter/networking.gke.io_v1_multiclusterservice_zoneprinter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/repos/zoneprinter/configsync/clusters/cluster-west/namespaces/zoneprinter/networking.gke.io_v1_multiclusterservice_zoneprinter.yaml -------------------------------------------------------------------------------- /multi-cluster-ingress/repos/zoneprinter/scripts/render.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-cluster-ingress/repos/zoneprinter/scripts/render.sh -------------------------------------------------------------------------------- /multi-environments-kustomize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/README.md -------------------------------------------------------------------------------- /multi-environments-kustomize/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/cleanup.sh -------------------------------------------------------------------------------- /multi-environments-kustomize/cloud-build-rendering/cloudbuilder-kustomize/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/cloud-build-rendering/cloudbuilder-kustomize/Dockerfile -------------------------------------------------------------------------------- /multi-environments-kustomize/cloud-build-rendering/install-config/config-management-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/cloud-build-rendering/install-config/config-management-dev.yaml -------------------------------------------------------------------------------- /multi-environments-kustomize/cloud-build-rendering/install-config/config-management-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/cloud-build-rendering/install-config/config-management-prod.yaml -------------------------------------------------------------------------------- /multi-environments-kustomize/config-source/README.md: -------------------------------------------------------------------------------- 1 | # ConfigSync - Foo Source 2 | 3 | -------------------------------------------------------------------------------- /multi-environments-kustomize/config-source/base/foo/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/config-source/base/foo/kustomization.yaml -------------------------------------------------------------------------------- /multi-environments-kustomize/config-source/base/foo/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/config-source/base/foo/namespace.yaml -------------------------------------------------------------------------------- /multi-environments-kustomize/config-source/base/foo/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/config-source/base/foo/serviceaccount.yaml -------------------------------------------------------------------------------- /multi-environments-kustomize/config-source/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/config-source/base/kustomization.yaml -------------------------------------------------------------------------------- /multi-environments-kustomize/config-source/base/pod-creator-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/config-source/base/pod-creator-clusterrole.yaml -------------------------------------------------------------------------------- /multi-environments-kustomize/config-source/base/pod-creator-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/config-source/base/pod-creator-rolebinding.yaml -------------------------------------------------------------------------------- /multi-environments-kustomize/config-source/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/config-source/cloudbuild.yaml -------------------------------------------------------------------------------- /multi-environments-kustomize/config-source/overlays/dev/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/config-source/overlays/dev/kustomization.yaml -------------------------------------------------------------------------------- /multi-environments-kustomize/config-source/overlays/prod/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/config-source/overlays/prod/kustomization.yaml -------------------------------------------------------------------------------- /multi-environments-kustomize/config-sync-rendering/install-config/config-management-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/config-sync-rendering/install-config/config-management-dev.yaml -------------------------------------------------------------------------------- /multi-environments-kustomize/config-sync-rendering/install-config/config-management-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/config-sync-rendering/install-config/config-management-prod.yaml -------------------------------------------------------------------------------- /multi-environments-kustomize/create-clusters.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/create-clusters.sh -------------------------------------------------------------------------------- /multi-environments-kustomize/create-repos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/create-repos.sh -------------------------------------------------------------------------------- /multi-environments-kustomize/install-config-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/install-config-sync.sh -------------------------------------------------------------------------------- /multi-environments-kustomize/register-clusters.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/register-clusters.sh -------------------------------------------------------------------------------- /multi-environments-kustomize/secret-manager-git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/multi-environments-kustomize/secret-manager-git.sh -------------------------------------------------------------------------------- /namespace-inheritance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/README.md -------------------------------------------------------------------------------- /namespace-inheritance/compiled/analytics/networkpolicy_allow-gamestore-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/analytics/networkpolicy_allow-gamestore-ingress.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/analytics/networkpolicy_default-deny-all-traffic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/analytics/networkpolicy_default-deny-all-traffic.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/analytics/resourcequota_quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/analytics/resourcequota_quota.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/analytics/role_eng-viewer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/analytics/role_eng-viewer.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/analytics/rolebinding_eng-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/analytics/rolebinding_eng-admin.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/analytics/rolebinding_viewers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/analytics/rolebinding_viewers.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/clusterrole_foo-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/clusterrole_foo-admin.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/clusterrole_namespace-reader.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/clusterrole_namespace-reader.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/clusterrole_rbac-viewer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/clusterrole_rbac-viewer.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/clusterrolebinding_namespace-readers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/clusterrolebinding_namespace-readers.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/clusterrolebinding_rbac-viewers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/clusterrolebinding_rbac-viewers.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/gamestore/configmap_store-inventory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/gamestore/configmap_store-inventory.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/gamestore/networkpolicy_allow-gamestore-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/gamestore/networkpolicy_allow-gamestore-ingress.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/gamestore/networkpolicy_default-deny-all-traffic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/gamestore/networkpolicy_default-deny-all-traffic.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/gamestore/resourcequota_quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/gamestore/resourcequota_quota.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/gamestore/role_eng-viewer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/gamestore/role_eng-viewer.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/gamestore/rolebinding_bob-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/gamestore/rolebinding_bob-rolebinding.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/gamestore/rolebinding_eng-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/gamestore/rolebinding_eng-admin.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/gamestore/rolebinding_viewers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/gamestore/rolebinding_viewers.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/incubator-1/networkpolicy_default-deny-all-traffic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/incubator-1/networkpolicy_default-deny-all-traffic.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/incubator-1/role_incubator-1-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/incubator-1/role_incubator-1-admin.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/incubator-1/rolebinding_viewers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/incubator-1/rolebinding_viewers.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/incubator-2/networkpolicy_default-deny-all-traffic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/incubator-2/networkpolicy_default-deny-all-traffic.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/incubator-2/rolebinding_viewers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/incubator-2/rolebinding_viewers.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/namespace_analytics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/namespace_analytics.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/namespace_gamestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/namespace_gamestore.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/namespace_incubator-1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/namespace_incubator-1.yaml -------------------------------------------------------------------------------- /namespace-inheritance/compiled/namespace_incubator-2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/compiled/namespace_incubator-2.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/cluster/admin-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/cluster/admin-clusterrole.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/cluster/namespace-reader-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/cluster/namespace-reader-clusterrole.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/cluster/namespace-reader-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/cluster/namespace-reader-clusterrolebinding.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/cluster/rbac-viewer-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/cluster/rbac-viewer-clusterrole.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/cluster/rbac-viewers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/cluster/rbac-viewers.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/namespaces/eng/analytics/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/namespaces/eng/analytics/namespace.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/namespaces/eng/eng-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/namespaces/eng/eng-role.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/namespaces/eng/eng-roleinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/namespaces/eng/eng-roleinding.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/namespaces/eng/gamestore/bob-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/namespaces/eng/gamestore/bob-rolebinding.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/namespaces/eng/gamestore/inventory-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/namespaces/eng/gamestore/inventory-configmap.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/namespaces/eng/gamestore/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/namespaces/eng/gamestore/namespace.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/namespaces/eng/network-policy-allow-gamestore-ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/namespaces/eng/network-policy-allow-gamestore-ingress.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/namespaces/eng/quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/namespaces/eng/quota.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/namespaces/eng/selectors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/namespaces/eng/selectors.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/namespaces/network-policy-default-deny-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/namespaces/network-policy-default-deny-all.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/namespaces/rnd/incubator-1/incubator-1-admin-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/namespaces/rnd/incubator-1/incubator-1-admin-role.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/namespaces/rnd/incubator-1/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/namespaces/rnd/incubator-1/namespace.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/namespaces/rnd/incubator-2/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/namespaces/rnd/incubator-2/namespace.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/namespaces/viewers-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/namespaces/viewers-rolebinding.yaml -------------------------------------------------------------------------------- /namespace-inheritance/config/system/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/system/README.md -------------------------------------------------------------------------------- /namespace-inheritance/config/system/repo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-inheritance/config/system/repo.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/README.md -------------------------------------------------------------------------------- /namespace-specific-policy/automated-rendering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/automated-rendering/README.md -------------------------------------------------------------------------------- /namespace-specific-policy/automated-rendering/configsync-src: -------------------------------------------------------------------------------- 1 | ../configsync-src -------------------------------------------------------------------------------- /namespace-specific-policy/automated-rendering/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/automated-rendering/kustomization.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/configsync-src/example/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/configsync-src/example/base/kustomization.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/configsync-src/example/base/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/configsync-src/example/base/namespace.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/configsync-src/example/base/networkpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/configsync-src/example/base/networkpolicy.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/configsync-src/example/base/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/configsync-src/example/base/role.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/configsync-src/example/base/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/configsync-src/example/base/rolebinding.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/configsync-src/example/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/configsync-src/example/kustomization.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/configsync-src/example/team-a/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/configsync-src/example/team-a/kustomization.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/configsync-src/example/team-b/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/configsync-src/example/team-b/kustomization.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/configsync-src/example/team-c/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/configsync-src/example/team-c/kustomization.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/configsync-src/external-data.txt: -------------------------------------------------------------------------------- 1 | FOO=Bar -------------------------------------------------------------------------------- /namespace-specific-policy/configsync-src/external-team/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/configsync-src/external-team/kustomization.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/manual-rendering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/manual-rendering/README.md -------------------------------------------------------------------------------- /namespace-specific-policy/manual-rendering/configsync/external-team_networking.k8s.io_v1_networkpolicy_deny-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/manual-rendering/configsync/external-team_networking.k8s.io_v1_networkpolicy_deny-all.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/manual-rendering/configsync/external-team_rbac.authorization.k8s.io_v1_role_team-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/manual-rendering/configsync/external-team_rbac.authorization.k8s.io_v1_role_team-admin.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/manual-rendering/configsync/external-team_rbac.authorization.k8s.io_v1_rolebinding_team-admin-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/manual-rendering/configsync/external-team_rbac.authorization.k8s.io_v1_rolebinding_team-admin-rolebinding.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/manual-rendering/configsync/my-namespace_v1_configmap_my-configmap-5f4h4hkd89.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/manual-rendering/configsync/my-namespace_v1_configmap_my-configmap-5f4h4hkd89.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/manual-rendering/configsync/team-a_networking.k8s.io_v1_networkpolicy_deny-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/manual-rendering/configsync/team-a_networking.k8s.io_v1_networkpolicy_deny-all.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/manual-rendering/configsync/team-a_rbac.authorization.k8s.io_v1_role_team-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/manual-rendering/configsync/team-a_rbac.authorization.k8s.io_v1_role_team-admin.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/manual-rendering/configsync/team-a_rbac.authorization.k8s.io_v1_rolebinding_team-admin-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/manual-rendering/configsync/team-a_rbac.authorization.k8s.io_v1_rolebinding_team-admin-rolebinding.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/manual-rendering/configsync/team-b_networking.k8s.io_v1_networkpolicy_deny-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/manual-rendering/configsync/team-b_networking.k8s.io_v1_networkpolicy_deny-all.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/manual-rendering/configsync/team-b_rbac.authorization.k8s.io_v1_role_team-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/manual-rendering/configsync/team-b_rbac.authorization.k8s.io_v1_role_team-admin.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/manual-rendering/configsync/team-b_rbac.authorization.k8s.io_v1_rolebinding_team-admin-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/manual-rendering/configsync/team-b_rbac.authorization.k8s.io_v1_rolebinding_team-admin-rolebinding.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/manual-rendering/configsync/team-c_networking.k8s.io_v1_networkpolicy_deny-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/manual-rendering/configsync/team-c_networking.k8s.io_v1_networkpolicy_deny-all.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/manual-rendering/configsync/team-c_rbac.authorization.k8s.io_v1_role_team-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/manual-rendering/configsync/team-c_rbac.authorization.k8s.io_v1_role_team-admin.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/manual-rendering/configsync/team-c_rbac.authorization.k8s.io_v1_rolebinding_team-admin-rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/manual-rendering/configsync/team-c_rbac.authorization.k8s.io_v1_rolebinding_team-admin-rolebinding.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/manual-rendering/configsync/v1_namespace_external-team.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/manual-rendering/configsync/v1_namespace_external-team.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/manual-rendering/configsync/v1_namespace_team-a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/manual-rendering/configsync/v1_namespace_team-a.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/manual-rendering/configsync/v1_namespace_team-b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/manual-rendering/configsync/v1_namespace_team-b.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/manual-rendering/configsync/v1_namespace_team-c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/manual-rendering/configsync/v1_namespace_team-c.yaml -------------------------------------------------------------------------------- /namespace-specific-policy/manual-rendering/scripts/render.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/namespace-specific-policy/manual-rendering/scripts/render.sh -------------------------------------------------------------------------------- /pre-sync/oci-image-verification/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/pre-sync/oci-image-verification/Dockerfile -------------------------------------------------------------------------------- /pre-sync/oci-image-verification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/pre-sync/oci-image-verification/README.md -------------------------------------------------------------------------------- /pre-sync/oci-image-verification/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/pre-sync/oci-image-verification/go.mod -------------------------------------------------------------------------------- /pre-sync/oci-image-verification/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/pre-sync/oci-image-verification/go.sum -------------------------------------------------------------------------------- /pre-sync/oci-image-verification/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/pre-sync/oci-image-verification/main.go -------------------------------------------------------------------------------- /pre-sync/oci-image-verification/signature-verification-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/pre-sync/oci-image-verification/signature-verification-deployment.yaml -------------------------------------------------------------------------------- /pre-sync/oci-image-verification/signature-verification-validatingwebhookconfiguration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/pre-sync/oci-image-verification/signature-verification-validatingwebhookconfiguration.yaml -------------------------------------------------------------------------------- /quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/quickstart/README.md -------------------------------------------------------------------------------- /quickstart/config-sync/namespaces/hello.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/quickstart/config-sync/namespaces/hello.yaml -------------------------------------------------------------------------------- /quickstart/config-sync/policies/no-ext-services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/quickstart/config-sync/policies/no-ext-services.yaml -------------------------------------------------------------------------------- /quickstart/resources/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/quickstart/resources/service.yaml -------------------------------------------------------------------------------- /screenshots/ci-app-pipeline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/screenshots/ci-app-pipeline.svg -------------------------------------------------------------------------------- /screenshots/hello-namespace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/screenshots/hello-namespace.svg -------------------------------------------------------------------------------- /screenshots/locality-specific-policy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/screenshots/locality-specific-policy.svg -------------------------------------------------------------------------------- /third_party/cert-manager/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/Chart.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/LICENSE -------------------------------------------------------------------------------- /third_party/cert-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/README.md -------------------------------------------------------------------------------- /third_party/cert-manager/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/NOTES.txt -------------------------------------------------------------------------------- /third_party/cert-manager/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/_helpers.tpl -------------------------------------------------------------------------------- /third_party/cert-manager/templates/cainjector-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/cainjector-deployment.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/cainjector-psp-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/cainjector-psp-clusterrole.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/cainjector-psp-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/cainjector-psp-clusterrolebinding.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/cainjector-psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/cainjector-psp.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/cainjector-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/cainjector-rbac.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/cainjector-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/cainjector-serviceaccount.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/crds.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/deployment.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/psp-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/psp-clusterrole.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/psp-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/psp-clusterrolebinding.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/psp.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/rbac.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/service.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/webhook-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/webhook-deployment.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/webhook-mutating-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/webhook-mutating-webhook.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/webhook-psp-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/webhook-psp-clusterrole.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/webhook-psp-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/webhook-psp-clusterrolebinding.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/webhook-psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/webhook-psp.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/webhook-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/webhook-rbac.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/webhook-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/webhook-service.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/webhook-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/webhook-serviceaccount.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/templates/webhook-validating-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/templates/webhook-validating-webhook.yaml -------------------------------------------------------------------------------- /third_party/cert-manager/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/anthos-config-management-samples/HEAD/third_party/cert-manager/values.yaml --------------------------------------------------------------------------------