Skip to content

Commit

Permalink
fix(build): short repo name for default baseImage
Browse files Browse the repository at this point in the history
  • Loading branch information
gansheer authored and squakez committed Jun 22, 2023
1 parent 1f01fba commit 58f354f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/modules/ROOT/pages/pipeline/pipeline.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ Altough the main goal of this custom task execution is to have a success/failure
lastUpdateTime: "2023-05-19T09:56:02Z"
message: |
...
{"level":"info","ts":1684490148.080175,"logger":"camel-k.builder","msg":"base image: docker.io/eclipse-temurin:11"}
{"level":"info","ts":1684490148.0801787,"logger":"camel-k.builder","msg":"resolved base image: docker.io/eclipse-temurin:11"}
{"level":"info","ts":1684490148.080175,"logger":"camel-k.builder","msg":"base image: eclipse-temurin:11"}
{"level":"info","ts":1684490148.0801787,"logger":"camel-k.builder","msg":"resolved base image: eclipse-temurin:11"}
reason: Completed (0)
status: "True"
type: Container builder succeeded
Expand Down
2 changes: 1 addition & 1 deletion pkg/util/defaults/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const (
KanikoVersion = "1.9.1"

// baseImage --
baseImage = "docker.io/eclipse-temurin:11"
baseImage = "eclipse-temurin:11"

// LocalRepository --
LocalRepository = "/etc/maven/m2"
Expand Down
2 changes: 1 addition & 1 deletion script/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ CODEGEN_VERSION := v0.25.6
OPERATOR_SDK_VERSION := v1.28.0
KUSTOMIZE_VERSION := v4.5.4
OPM_VERSION := v1.24.0
BASE_IMAGE := docker.io/eclipse-temurin:11
BASE_IMAGE := eclipse-temurin:11
DEFAULT_PVC := camel-k-pvc
LOCAL_REPOSITORY := /etc/maven/m2
IMAGE_NAME ?= docker.io/apache/camel-k
Expand Down

0 comments on commit 58f354f

Please sign in to comment.