Complete the code to specify the image tag in a Helm values file.
image:
tag: [1]The tag field sets the image version. Here, v1.0.0 is a specific version tag.
Complete the code to set the number of replicas in a Helm values file.
replicaCount: [1]The replicaCount field defines how many pod copies run. It must be a number, like 3.
Fix the error in the Helm values snippet to enable service type LoadBalancer.
service:
type: [1]To expose the service externally, the type must be LoadBalancer.
Fill both blanks to customize resource limits in Helm values.
resources:
limits:
cpu: [1]
memory: [2]CPU limits use millicores like 500m. Memory limits use units like 512Mi.
Fill all four blanks to define environment variables in Helm values.
env: - name: [1] value: [2] - name: [3] value: [4]
Environment variables need a name and a value for each variable.
