This example exhibits how to configure policy that applies only to resources in specific regions.
We will create a RoleBinding named Auditor
that only applies to clusters within a prescribed region.
- Install the Cloud SDK (gcloud CLI)
- Install kubectl
- Install the nomos CLI for managing ACM across clusters
- Create or select four GKE Clusters with the ACM Operator installed * The configs in this repository assume the cluster names to be "belgium", "belgium-2", "iowa" and "taiwan".
This repository contains the following files.
locality-specific-policy/
├── setup/ # configuration for each cluster's ACM Operator
│ ├── belgium.config-management.yaml
│ ├── belgium-2.config-management.yaml
│ ├── iowa.config-management.yaml
| └── taiwan.config-management.yaml
└── config-root/ # directory ACM monitors for policy
├── README.md
├── system/
├── namespaces/
├── cluster/ # cluster scoped objects
│ ├──clusterrole.auditor.yaml # uses location-belgium selector
| └── clusterrolebinding.auditor.yaml
└── clusterregistry/ # defines selectors and cluster labels
├── cluster.belgium-2.yaml
├── cluster.belgium.yaml
├── cluster.iowa.yaml
├── cluster.taiwan.yaml
├── clusterregistry.select-location-belgium.yaml
└── clusterregistry.select-prod.yaml
This example assumes you have four clusters with ACM installed and with read access to a fork of this repo.
To setup the clusters for this example you will need to:
- Fork and clone this repo
- Sync each cluster's ACM operator with this directory.
- Update all cluster configs with the names of your clusters.
-
Fork this repo to your account
-
In your terminal, clone this repo locally.
$ git clone https://github.com/<GITHUB_USERNAME>/csp-config-management.git $ cd csp-config-management/docs/
Each cluster's ACM operator must be configured to point to the config-root in locality-specific-policy/.
The setup directory and cluster configs for this example assumed the names "belgium", "belgium-2", "iowa" and "taiwan".
Each cluster has its own config in the [setup/] directory.
If you are not using default names of "belgium", "belgium-2", "iowa" and "taiwan", update the cluster's names in the spec.clusterName
field.
-
Update the files in setup/ to include your cluster names and git username. For example, if your github username is
[email protected]
, change each YAML to includegit: syncRepo: [email protected]:[email protected]/csp-config-management.git
-
Sync the ACM Operator for both clusters by repeating the following steps for "belgium", "belgium-2", "iowa" and "taiwan" clusters.
# Get kubeconfig credentials for your cluster $ gcloud container clusters get-credentials <cluster name> --zone <cluster zone> # Ensure kubectl is using correct context $ kubectl config get-context # Apply the configuration to your cluster $ kubectl apply -f setup/<cluster name>.config-management.yaml
-
Confirm the sync was successful with
nomos status
$ nomos status Connecting to clusters... Context Status Last Synced Token ------- ------ ----------------- belgium-cluster-context SYNCED <some commit hash> belgium-2-cluster-context SYNCED <some commit hash> iowa-cluster-context SYNCED <some commit hash> taiwan-cluster-context SYNCED <some commit hash>
ClusterSelectors
are used to rollout policy to specific clusters.
For ClusterSelectors
to work, clusters must be labeled with relevant metadata.
The Cluster
configs are located in the clusterregistry/ directory.
ACM uses the metadata.name
field to determine where ClusterSelectors
apply.
If you are not using default names of "belgium", "belgium-2", "iowa" and "taiwan", update the cluster's names in the metadata.name
field. Then push your changes to git for them to be picked up by ACM.
First, ensure your cluster configs are valid.
$ cd config-root/
$ nomos vet
# Commit and push changes to git
$ git add clusterregistry/
$ git commit -m "updated cluster configs to point to my clusters"
$ git push origin master
This config creates a RoleBinding
named auditor
that only applies to clusters that are labelled "belgium".
You use ClusterSelectors
to rollout policy to specific clusters.
ClusterSelectors
limit which clusters a config applies to by checking the
cluster's labels. Read more about ClusterSelectors here.
ClusterSelectors
must reference labels associated with a cluster. You can specify these labels in a Cluster
config.
ClusterSelectors
and Cluster
configs are stored in the clusterregistry/ directory.
Each Cluster
config has a label that defines environment and location. The ClusterSelector
"select-location-belgium" applies configs with the "location: belgium" label.
ClusterSelectors
are referenced in config to limit the clusters they are applied to.
The ClusterRole
"auditor" references "select-location-belgium" in the annotations.configmanagement.gke.io/cluster-selector
field. The "auditor" role is created only in clusters with the "location: belgium" label. This will also apply to the ClusterRoleBinding
"auditors".
We are going to first verify that the "auditors" ClusterRoleBinding
exists in
clusters with a "location: belgium" label.
Repeat the following for both the "belgium" and "belgium-2" clusters.
-
Ensure your kubectl context is pointing to a belgium cluster
# update local kubeconfig to correct cluster $ gcloud container clusters get-credentials <belgium or belgium-2 cluster name> --zone <cluster zone> # ensure kubectl is using correct context $ kubectl config get-context
-
Get ClusterRoleBinding with
kubectl
$ kubectl get clusterrolebinding auditors NAME AGE auditors 5m
Next, let's verify that the "auditors" ClusterRoleBinding
doesn't exist in
clusters with different location labels. Repeat the following for both the "iowa"
and "taiwan" clusters.
-
Ensure your kubectl context is pointing to correct cluster
# update local kubeconfig to correct cluster $ gcloud container clusters get-credentials <taiwan or iowa cluster name> --zone <cluster zone> # ensure kubectl is using correct context $ kubectl config get-context
-
Get ClusterRoleBinding with
kubectl
$ kubectl get clusterrolebinding auditors Error from server (NotFound): clusterrolebindings.rbac.authorization.k8s.io "auditors" not found
By leveraging ClusterSelectors
with RBAC, we have successfully rolled out config selectively based on location.