Skip to content

Commit 0970d20

Browse files
committed
stage2: fix indentation and quote "true"
quote "true" to avoid OpenShift trying to interpret it as a Boolean type. Signed-off-by: Jonathan Dowland <[email protected]>
1 parent 7d669fb commit 0970d20

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

templates/jlink/jlink-builder/jlink-builder-template.yaml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -74,21 +74,21 @@ objects:
7474
spec:
7575
source:
7676
type: Git
77-
git:
78-
uri: ${APPLICATION}
79-
ref: ${REF}
80-
contextDir: ${CONTEXT_DIR}
81-
strategy:
82-
sourceStrategy:
83-
from:
84-
kind: ImageStreamTag
85-
name: ubi9-openjdk-${JDK_VERSION}-jlink:latest # Output Imagestream for Stage 1
86-
pullPolicy: Always
87-
env:
88-
- name: S2I_ENABLE_JLINK
89-
value: true
90-
- name: LOGGING_SCRIPT_DEBUG
91-
value: true
77+
git:
78+
uri: ${APPLICATION}
79+
ref: ${REF}
80+
contextDir: ${CONTEXT_DIR}
81+
strategy:
82+
sourceStrategy:
83+
from:
84+
kind: ImageStreamTag
85+
name: ubi9-openjdk-${JDK_VERSION}-jlink:latest # Output Imagestream for Stage 1
86+
pullPolicy: Always
87+
env:
88+
- name: S2I_ENABLE_JLINK
89+
value: "true"
90+
- name: LOGGING_SCRIPT_DEBUG
91+
value: "true"
9292
output:
9393
to:
9494
kind: ImageStreamTag

0 commit comments

Comments
 (0)