You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For this chapters build template demos, we will be using the following Knative build template that will use maven to build the Java application. The build template leverages https://buildah.io[buildah] to build and push the container image based on the Java application built using maven.
32
+
For this chapter's build template demos, we will be using the following Knative build template that will use maven to build the Java application. The build template leverages https://buildah.io[buildah] to build and push the container image based on the Java application built using maven.
33
33
34
34
[.text-center]
35
35
.maven-build-template.yaml
@@ -52,7 +52,7 @@ spec:
52
52
- "/usr/local/bin/buildah.sh"
53
53
env:
54
54
- name: WORK_DIR
55
-
value: /workspace/${CONTEXT_DIR}
55
+
value: ${CONTEXT_DIR}
56
56
- name: DESTINATION_NAME
57
57
value: ${IMAGE}
58
58
# uncomment this if you have MAVEN_MIRROR thats is reachable from your kube cluster
0 commit comments