This repository attempts to serve as a guide on handling workloads as a tenant of the MCSH cluster.
Please note the following:
- Your first namespace is assigned. In this example, team-test is the namespace assigned.
- Your cluster-admin service account. This is a namespace-scoped SA. The name will be the same as your namespace. In this example, team-test is the SA assigned. Note, this SA is used as an example to allow flux to control resources in child namespaces. Feel free to follow the same model or make your own SA/RB with the least permissions necessary for flux
In this example repo, the ops folder serves as a GitOps reference used by flux's multitenant system. An HNC namespace named sub-team is created via the snsanchor definition inside team-test. Included in this folder is a helm chart that deploys pod-info.
graph TD;
TeamTest-->SNSAnchor;
TeamTest-->GitOpsRepoSync;
SNSAnchor-->SubTeam;
SubTeam-->HelmDeployment;
[sam@sampc multitenant-example]$ kubectl get GitRepository -n team-test
NAME URL AGE READY STATUS
team-test ssh://[email protected]/mcserverhosting-net/multitenant-example 38m True stored artifact for revision 'main/c1c00408541671d195e59eee67a294d2b672a962'
kubectl hns tree team-test
team-test
└── [s] sub-team
[s] indicates subnamespaces
[sam@sampc multitenant-example]$ kubectl get helmrelease,pods -n sub-team
NAME AGE READY STATUS
helmrelease.helm.toolkit.fluxcd.io/podinfo 52s True Release reconciliation succeeded
NAME READY STATUS RESTARTS AGE
pod/podinfo-5d4bcccb5c-lqh6x 1/1 Running 0 50s
Note, when utilizing HNC, one must manually create the RoleBindings for subnamespaces to allow flux to control them from a serviceaccount of the parent namespace. The objects can be managed thereafter via GitOps.
Note the example:
flux reconcile kustomization team-test -n team-test
► annotating Kustomization team-test in team-test namespace
✔ Kustomization annotated
◎ waiting for Kustomization reconciliation
✗ Kustomization reconciliation failed: RoleBinding/sub-team/sa-rb dry-run failed, reason: Forbidden, error: rolebindings.rbac.authorization.k8s.io "sa-rb" is forbidden: User "system:serviceaccount:team-test:team-test" cannot patch resource "rolebindings" in API group "rbac.authorization.k8s.io" in the namespace "sub-team"
###
kubectl create -f multitenant-example/ops/namespace/sub-team/rb.yaml
rolebinding.rbac.authorization.k8s.io/sa-rb created
###
flux reconcile kustomization team-test -n team-test
► annotating Kustomization team-test in team-test namespace
✔ Kustomization annotated
◎ waiting for Kustomization reconciliation
✔ applied revision main/5f5ffb490ad00274379e23f990fc45b3f0b854f6