PodSecurityPolicy: unable to admit pod: in Tanzu Kubernetes Clusters

In vSphere with Tanzu, when you deploy Tanzu Kubernetes Clusters, the clusters are deployed with PodSecurityPolicy Admission Controller enabled. This would mean that you would need a pod security policy to deploy workloads to the guest clusters. Read the documentation here for more information. When you set permissions for a user on the supervisor cluster, a Cluster Role Binding will get created. You can review this by running the command kubectl get clusterrolebinding | grep vmware-system...

November 1, 2021 · 2 min · Jahnin Rajamoni

Antrea Agents in CrashLoopBackOff - CIDRNotAvailable

When using the Antrea CNI, it takes care of ip address management for each of the pods that are deployed onto the worker nodes. It achieves this with an OVS bridge named br-int on each of the nodes in the Tanzu kuberentes clusters. The OVS bridge also has a tunnel port that will create an overlay tunnel to other nodes in the Tanzu kubernetes clusters to enable inter-pod comms. Each worker node in the Tanzu kubernetes cluster is assigned its own unique /24 subnet....

October 29, 2021 · 4 min · Jahnin Rajamoni

Missing Tanzu Kubernetes Releases?

Tanzu Kubernetes Releases are Kubernetes distributions that are signed and supported by VMware for Tanzu Kubernetes Clusters. More info here There are two ways in which you can populate the Tanzu Kubernetes Releases(images) in your vSphere with Tanzu environment. These images are OVF templates that are backed by a Photon OS VM and about 16GB in size. More info here Use a subscribed content library. The subscribed content library will synchronize with a public VMware content library: https://wp-content....

October 19, 2021 · 3 min · Jahnin Rajamoni

vSphere with Tanzu - Zero Trust with NSX-T DFW

To enable zero trust for the Supervisor Cluster and the guest cluster, you need to first define a default deny-all rule in the NSX-T distributed firewall. You can then allow the required ports as per https://ports.esp.vmware.com/home/vSphere-7 (Filter with the keyword “Tanzu “) The problem? vSphere with Tanzu expects to have a default allow-all rule. Specifically for egress (Source is Master VM Subnet and Destination is the whole cluster CIDR block) After enabling zero trust, the default deny-all rule blocks both ingress and egress traffic....

October 10, 2021 · 6 min · Jahnin Rajamoni

vSphere with Tanzu kubectl Cheat Sheet

Lately I’ve been using multiple notes to keep a track of all the kubectl commands that I’ve come across when troubelshooting vSphere with Tanzu. The idea behind this post is to create a reference kubectl cheat sheet for all kubectl commands in vSphere with Tanzu. Login LOGIN TO A SUPERVISOR CLUSTER Command: kubectl vsphere login –server IP/FQDN -u USERNAME –insecure-skip-tls-verify Example: kubectl vsphere login --server kube.gs.labs -u administrator@vsphere.local --insecure-skip-tls-verify LOGIN TO A GUEST CLUSTER...

October 7, 2021 · 7 min · Jahnin Rajamoni