I am setting an environment variable inside a makefile.
makeflie:
...
export KINDPORT=30000
...
I want to pass it to the YAML file that I am using (for kind cluster configuration file):
...
extraPortMappings:
- containerPort: ${KINDPORT}
hostPort: ${KINDPORT}
protocol: TCP
...
What is the correct syntax for this?