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

Add APP_SUFFIX in app template #7

Merged
merged 1 commit into from
Jun 9, 2017
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
28 changes: 26 additions & 2 deletions ose3/s2i-java-build_in_ose3.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,12 @@
"displayName": "Application name",
"required": true
},
{
"description": "Jar file suffix to use to locate the generated artifact to use (e.g. xxxxx${APP_SUFFIX}.jar)",
"name": "APP_SUFFIX",
"value": "",
"displayName": "Jar file suffix"
},
{
"description": "Custom hostname for service routes. Leave blank for default hostname, e.g.: <application-name>.<project>.<default-domain-suffix>",
"name": "APPLICATION_HOSTNAME",
Expand Down Expand Up @@ -188,7 +194,13 @@
"from": {
"kind": "ImageStreamTag",
"name": "s2i-java:latest"
}
},
"env": [
{
"name": "APP_SUFFIX",
"value": "${APP_SUFFIX}"
}
]
}
},
"output": {
Expand Down Expand Up @@ -353,6 +365,12 @@
"displayName": "Application name",
"required": true
},
{
"description": "Jar file suffix to use to locate the generated artifact to use (e.g. xxxxx${APP_SUFFIX}.jar)",
"name": "APP_SUFFIX",
"value": "",
"displayName": "Jar file suffix"
},
{
"description": "Custom hostname for service routes. Leave blank for default hostname, e.g.: <application-name>.<project>.<default-domain-suffix>",
"name": "APPLICATION_HOSTNAME",
Expand Down Expand Up @@ -426,7 +444,13 @@
"from": {
"kind": "ImageStreamTag",
"name": "s2i-java:latest"
}
},
"env": [
{
"name": "APP_SUFFIX",
"value": "${APP_SUFFIX}"
}
]
}
},
"output": {
Expand Down