A Platform Engineer is managing a stateful application running on a TKG cluster. The application's data volume (db-data) is running out of space. The underlying vSphere Storage Policy supports expansion.
Review the PVC definition:
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: db-data
namespace: app-prod
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 10Gi
storageClassName: gold-policy
Which steps are required to resize this volume to 20Gi without downtime? (Choose 2.)
A Platform Engineer is optimizing the IP address consumption of the NSX Advanced Load Balancer (Avi) used by a Supervisor Cluster. The current "Essentials" edition deployment consumes a new Service Engine (SE) IP and a VIP for every LoadBalancer service, leading to IP exhaustion.
The engineer wants to switch to a design where multiple Kubernetes Services share the same Service Engine group and potentially consolidate VIPs where possible (using L7 Ingress), but the immediate concern is the backend SE scaling.
Review the current setting: Service Engine Group: Default-Group Max VS per SE: 10 What configuration change on the Avi Controller would optimize resource usage for this VKS deployment? (Select all that apply.)
A Platform Engineer needs to provide a custom Virtual Machine Class to the Data Science team.
They require a VM with exactly 16 vCPUs and 64 GB of RAM for a specific model training workload. The default classes do not match these specifications.
Which sequence of steps allows the engineer to make this specific configuration available to the team's namespace? (Choose 2.)
What three components run in a VMware vSphere Kubernetes Service (VKS) cluster? (Choose three.)
A Platform Engineer needs to enable the Cluster Autoscaler for an existing TKG cluster named web- cluster to handle bursty traffic. The cluster currently has a static worker node count.
Review the TanzuKubernetesCluster YAML snippet:
spec:
topology:
workers:
replicas: 3
vmClass: best-effort-medium
storageClass: default-storage
Which modification to the YAML manifest correctly enables autoscaling for the worker node pool?