Hi there,
I have a varfile as a dot env files:
garden.env
----
url=
https://app.${var.userId}.${environment.name}.example.com
--
with
a garden.yaml
--
apiVersion: garden.io/v1
kind: Project
name: myproject
defaultEnvironment: "local"
environments:
- name: local
varfile: garden.env
__
and I use it in a pod manifest
--
spec:
manifests:
- apiVersion: v1
kind: ConfigMap
metadata:
name: config
data:
$merge: ${var}
LOG_LEVEL: info
--
I would expect that the variable substituted, but it still shows up as
url=
https://app.${var.userId}.${environment.name}.example.com
This has worked before, but now doesn't-
garden version: 0.13.53
Could some one please help me debug this issue?