Open narun4sk opened 4 years ago
Given the following:
parameters: elasticsearch: image: "quay.io/pires/docker-elasticsearch-kubernetes:5.5.0" java_opts: "-Xms512m -Xmx512m" replicas: 1 masters: 1 roles: master: image: ${elasticsearch:image}
Instead of specifying ${elasticsearch:image} I would like to be able to use a relative path, something similar to ${...:image}.
${elasticsearch:image}
${...:image}
Hence:
${.:key_name}
key_name
master
${..:key_name}
roles
Given the following:
Instead of specifying
${elasticsearch:image}
I would like to be able to use a relative path, something similar to${...:image}
.Hence:
${.:key_name}
- looks upkey_name
in the local context (here all keys withinmaster
)${..:key_name}
- looks upkey_name
in the context one level up (here all keys withinroles
)