@@ -13,12 +13,12 @@ BASE_OS_IMAGE="${BASE_OS_IMAGE:-adoptopenjdk/openjdk11-openj9:ubi}"
13
13
#
14
14
# Version of Open Liberty runtime to use within both inner and outer loops
15
15
#
16
- OL_RUNTIME_VERSION=" ${OL_RUNTIME_VERSION:- 20.0.0.11 } "
16
+ OL_RUNTIME_VERSION=" ${OL_RUNTIME_VERSION:- 20.0.0.12 } "
17
17
18
18
#
19
19
# The Open Liberty base image used in the final stage of the outer loop Dockerfile used to build your application image from
20
20
#
21
- OL_UBI_IMAGE=" ${OL_UBI_IMAGE:- openliberty/ open-liberty: 20.0.0.11 -kernel-slim-java11-openj9-ubi} "
21
+ OL_UBI_IMAGE=" ${OL_UBI_IMAGE:- openliberty/ open-liberty: 20.0.0.12 -kernel-slim-java11-openj9-ubi} "
22
22
23
23
#
24
24
# The name and tag of the "stack image you will build. This will used to create your inner loop development containers, and also as the base image for the first stage of your outer loop image build.
@@ -28,13 +28,14 @@ STACK_IMAGE="${STACK_IMAGE:-openliberty/application-stack:0.4}"
28
28
#
29
29
# URL at which your outer loop Dockerfile is hosted
30
30
#
31
- DEVFILE_DOCKERFILE_LOC=" ${DEVFILE_DOCKERFILE_LOC:- https:// github.com/ OpenLiberty/ application-stack/ releases/ download/ outer-loop-0.4.0-rc.1 / Dockerfile} "
31
+ DEVFILE_DOCKERFILE_LOC=" ${DEVFILE_DOCKERFILE_LOC:- https:// github.com/ OpenLiberty/ application-stack/ releases/ download/ outer-loop-0.4.0/ Dockerfile} "
32
32
33
33
#
34
34
# URL at which your outer loop deploy YAML template is hosted
35
35
#
36
- DEVFILE_DEPLOY_YAML_LOC=" ${DEVFILE_DEPLOY_YAML_LOC:- https:// github.com/ OpenLiberty/ application-stack/ releases/ download/ outer-loop-0.4.0-rc.1 / app-deploy.yaml} "
36
+ DEVFILE_DEPLOY_YAML_LOC=" ${DEVFILE_DEPLOY_YAML_LOC:- https:// github.com/ OpenLiberty/ application-stack/ releases/ download/ outer-loop-0.4.0/ app-deploy.yaml} "
37
37
38
+ # Generates application stack artifacts.
38
39
generate () {
39
40
# Base customization.
40
41
mkdir -p generated
@@ -45,8 +46,7 @@ generate() {
45
46
sed -e " s!{{.STACK_IMAGE}}!$STACK_IMAGE !; s!{{.OL_UBI_IMAGE}}!$OL_UBI_IMAGE !" templates/outer-loop/Dockerfile > generated/Dockerfile
46
47
}
47
48
48
-
49
- # set the action, default to generate if none passed.
49
+ # Execute the specified action. The generate action is the default if none is specified.
50
50
ACTION=" generate"
51
51
if [ $# -ge 1 ]; then
52
52
ACTION=$1
@@ -57,7 +57,7 @@ case "${ACTION}" in
57
57
generate
58
58
;;
59
59
* )
60
- echo " Invalid input action. Allowed values: generate. Default: generate."
60
+ echo " Invalid input action. Allowed action values: generate. Default: generate."
61
61
exit 1
62
62
;;
63
63
esac
0 commit comments