A VKS Administrator needs to scale out a production Tanzu Kubernetes Grid (TKG) cluster named prod-cluster-01 to handle increased load. The goal is to increase the number of worker nodes from 3 to
5.
Review the following YAML snippet of the cluster definition:
apiVersion: run.tanzu.vmware.com/v1alpha3
kind: TanzuKubernetesCluster
metadata:
name: prod-cluster-01
namespace: production
spec:
topology:
controlPlane:
replicas: 3
vmClass: guaranteed-medium
storageClass: gold-policy
workers:
replicas: 3
vmClass: best-effort-large
storageClass: silver-policy
Which specific modification to the YAML file or kubectl command will achieve the scaling requirement?
A Platform Engineer needs to deploy the Contour Ingress Controller on a TKG cluster to manage Layer 7 routing for multiple microservices. The engineer wants to manage this installation as a standard Tanzu Package.
Review the following command sequence intended for the installation:
tanzu package available list standard.tanzu.vmware.com
tanzu package install contour \
--package-name contour.tanzu.vmware.com \
--version 1.20.2+vmware.1-tkg.1 \
--values-file contour-values.yaml
What is the primary role of the --values-file (contour-values.yaml) in this deployment model?
A Platform Engineer needs to provision a new VKS cluster using the vcf-cli tool (or kubectl with the VKS plugin). The requirement is to deploy a cluster named dev-cluster-1 into the namespace dev-ns, utilizing a specific Virtual Machine Class guaranteed-large for all nodes to ensure performance.
Which of the following represents a valid configuration approach for defining the node pools in the YAML manifest? (Select all that apply.)
A VKS Administrator wants to Uninstall a Supervisor Service (e.g., a test instance of MinIO) to free up resources.
What is the impact of uninstalling a service on the Persistent Data associated with it (e.g., the MinIO buckets)?
In a vSphere with Tanzu environment, what is the primary Kubernetes resource used to define the specific storage provider parameters (such as the vSphere CSI driver retention policy) required to provision a volume snapshot?