Configmap details are almost latest and mostly not needed any updation. Please make sure that you have replaced your configmap with your environment name properly. If your env name is abc, then your configmap should be environments/configmap.abc.yaml. Below I will be listing more likely to be changed environment variables.
# Storage class defaults to Azure
# Incase if you need any other provisioner, please update below details.
storageClass:
provisioner: kubernetes.io/azure-file
parameters:
skuName: Standard_LRS
reclaimPolicy: Retain
# Size of your document storage
pvc:
requestStorage: 10Gi
# If you want to enable HPA
# Make sure you enabled service level also
hpa:
enabled: true
# Updating micro service level values
services:
web:
# Updating specific image for any service.
# Giving example for api service.
container:
image: <your_container_registry>/exto360-api:<image_tag>
# Enabling hpa only for particular service
# Make sure you enabled global hpa.
# If thats not enabled, this setting will be ignored.
hpa:
enabled: true