-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
Description
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
instances: 2
memory: 1GGiven 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_rubyand CF CLI invoked with cf push --vars-file /PATH/vars.yml
then CF CLI pushes an interpolated manifest file.
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
On Hold