Is your feature request related to a problem? Please describe.
As operator, I want to able to leverage new CF CLI syntax, see https://github.com/orange-cloudfoundry/paas-templates/issues/71
and https://docs.cloudfoundry.org/devguide/deploy-apps/manifest-attributes.html#variable-substitution
Given a vars.yml file such as
Given an app manifest file using the following format: ((VARIABLE-NAME)) such as 🔢
---
applications:
- name: test-app
instances: ((instances))
memory: ((memory))
buildpacks:
- go_buildpack
env:
GOPACKAGENAME: go_calls_ruby
command: go_calls_ruby
and CF CLI invoked with cf push --vars-file /PATH/vars.yml
then CF CLI pushes an interpolated manifest file.
Is your feature request related to a problem? Please describe.
As operator, I want to able to leverage new CF CLI syntax, see https://github.com/orange-cloudfoundry/paas-templates/issues/71
and https://docs.cloudfoundry.org/devguide/deploy-apps/manifest-attributes.html#variable-substitution
Given a vars.yml file such as
Given an app manifest file using the following format: ((VARIABLE-NAME)) such as 🔢
and CF CLI invoked with
cf push --vars-file /PATH/vars.ymlthen CF CLI pushes an interpolated manifest file.