In last post of this series, we learn how to install and integrate CSE plugin with VCD for easier management of Kubernetes container. In this post we will learn how tenants can leverage CSE plugin to deploy K8 clusters.
If you have landed directly on this post by mistake, I would recommend reading previous articles from this series.
1: Container Service Extension Introduction & Architecture
3: CSE Plugin Integration With VCD
Onboarding Tenants
Before a tenant can start provisioning K8 cluster from CLI or UI (via CSE plugin), we need to enable the tenant to do so. This can be done directly from CSE server or login to any machine where vcd-cli utility is installed. To onboard a tenant, use following commands:
Note: These commands needs to be run as VCD system admin.
# vcd login vcd.vstellar.local system admin -iw
# vcd right add -o <org-name> “{cse}:CSE NATIVE DEPLOY RIGHT”
Example: # vcd right add -o cse_org “{cse}:CSE NATIVE DEPLOY RIGHT”
Rights added to the Org ‘cse_org’
Note: At this point of time, if we run command vcd cse ovdc list, it will show us no K8 provider has been configured for the tenants.… Read More