Tenancy at Namespace Level of Kubernetes/OpenShift Cluster
This section elaborates the steps to enable Tenancy in
AKO
to map each namespace in a single Kubernetes/OpenShift cluster uniquely to a tenant in Avi Load Balancer
. The following are the prerequisites to enable tenancy in AKO at the namespace level:
To enable tenancy:
- At the namespace level, this can be achieved by adding an annotation to the namespace with the corresponding tenant name inAvi Load Balancer. This allows all resources within the namespace to use the annotated tenant, establishing a relationship between the namespace and the tenant inAvi Load Balancer.
- AKOwill determine the tenant to createAvi Load Balancerobjects based on the annotation value of theako.vmware.com/tenant-namespecified in the namespace of the Kubernetes/OpenShift objects.
- If theako.vmware.com/tenant-nameannotation is empty or missing,AKOwill determine the tenant from thetenantNamefield.
- AllAvi Load Balancerobject references in namespace scopedAKOCRDs must be accessible to theAKOuser within the tenant specified by the namespace annotation. If they are inaccessible, the CRD will transition to an error status and will not be applied to the virtual services.
- AKOusers must be assigned the ako-tenant role for all tenants in use, allowing them to create or updateAKOobjects.
- If a tenant is updated on a namespace, anAKOrestart will be required to delete staleAvi Load Balancerobjects and update the status correctly on Kubernetes/OpenShift objects.
- This feature is not supported for services of type LoadBalancer using shared VIP.
Example of an Annotated Tenant in AKO
AKO
In this example,
AKO
will create virtual services in the billing tenant for Kubernetes/OpenShift objects within the n1 namespace. For other namespaces that do not have the annotation, virtual services will be created in the tenant where AKO
is installed.apiVersion: v1 kind: Namespace metadata: annotations: ako.vmware.com/tenant-name: billing name: n1
With the above configuration,
AKO
will map the n1 namespace to the billing tenant, and all objects will be created within that tenant.