-
Notifications
You must be signed in to change notification settings - Fork 44
/
mta.yaml
22 lines (21 loc) · 1.14 KB
/
mta.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
ID: a.docker.cf.app
_schema-version: 3.3.0
version: 0.0.0
modules:
# A cf app consuming the configuration
- name: my-mta-managed-app
type: application # value custom would do just as well
parameters: # All parameters are optional and can be deleted - defaults will be taken/detected if non specified.
docker: # Schedule a docker image found in that repository instead of staging bits
image: cloudfoundry/test-app # repo/image:tag
# username: <optional username> # credentials to access docker repo
# password: <optional password>
instances: 1 #optional
routes: # Optional, otherwise one generated by template is assigned
- route: ${org}-${space}-${app-name}.${domain}
properties: # How environment variables are defined
MY_ENV_VAR: "value-of-my-env-var"
build-parameters:
# Use 'no-source' build parameters to instruct the Cloud MTA Build tool not to package any content for this module in the MTA archive
# For more details https://sap.github.io/cloud-mta-build-tool/configuration/#configuring-a-module-that-does-not-have-source-code-to-build-and-package
no-source: true