Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added binding-name, timeout and namespace parameters #4086

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 29 additions & 1 deletion src/schemas/json/mtad.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@
"description": "The name of the application in the Cloud Foundry environment to be deployed for this module, based on the module name.",
"type": "string"
},
"apply-namespace": {
"description": "Apply namespace to application name.",
"type": "boolean"
},
"buildpack": {
"description": "The name or the URL of a custom buildpack required by the application.",
"type": "string"
Expand Down Expand Up @@ -185,12 +189,27 @@
"description": "Use this parameter to define which prebuilt root file system (rootfs) you want to use.",
"type": "string"
},
"stage-timeout": {
"description": "Defines how long, in seconds, your application can take during staging before the MTA operation times out.",
"type": "number",
"minimum": 0
},
"start-timeout": {
"description": "Defines how long, in seconds, your application can take to start before the MTA operation times out.",
"type": "number",
"minimum": 0
},
"tasks": {
"$ref": "#/definitions/module-parameters-tasks",
"description": "Specify tasks, which are available for execution in the current droplet of the application. Also provide use of environment variables which are specified with the env scope."
},
"task-execution-timeout": {
"description": "Defines how long, in seconds, your application can take to execute a task before the MTA operation times out.",
"type": "number",
"minimum": 0
},
"upload-timeout": {
"description": "The application upload timeout in seconds.",
"description": "Defines how long, in seconds, you can upload your application binary before the MTA operation times out.",
"type": "number",
"minimum": 0
}
Expand Down Expand Up @@ -235,6 +254,7 @@
"type": "boolean"
},
"apply-namespace": {
"description": "Apply namespace to application routes.",
"type": "boolean"
}
}
Expand Down Expand Up @@ -358,6 +378,10 @@
"content-target": {
"description": "Specify that the resource would be used as a target for the module content deployment.",
"type": "boolean"
},
"binding-name": {
"description": "Provide a binding name for the association between an application and a service instance.",
"type": "string"
}
}
},
Expand Down Expand Up @@ -486,6 +510,10 @@
}
]
},
"apply-namespace": {
"description": "Apply namespace to service name.",
"type": "boolean"
},
"service-key-name": {
"description": "Used when consuming an existing service key. Specifies the name of the service key. See Consumption of existing service keys for more information.",
"type": "string"
Expand Down