Skip to content

Commit

Permalink
Update K1 tooling to 1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
toschneck committed Dec 5, 2024
1 parent eafa204 commit 5c67a0b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions container/kubeone-tool-container/Makefile
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
## See https://github.com/kubermatic/kubeone/releases
KUBEONE_VERSION ?= 1.8.3
KUBEONE_VERSION ?= 1.9.0
DOCKER_REPO ?= 'quay.io/kubermatic-labs/kubeone-tooling'
FINAL_TAG ?= ${KUBEONE_VERSION}
TAG_DATE ?= ${KUBEONE_VERSION}-$(shell date -I)
BASE_IMAGE ?= amd64/ubuntu:22.04
PLATFORM ?= linux/amd64
CONTAINER_USER ?= kubermatic
CONTAINER_USER_HOME ?= /home/kubermatic
.PHONY: docker-release docker-build

docker-build:
docker build --pull --build-arg BASE_IMAGE=${BASE_IMAGE} --build-arg kubeone_version=${KUBEONE_VERSION} --build-arg USER=${CONTAINER_USER} --build-arg USER_HOME=${CONTAINER_USER_HOME} -t ${DOCKER_REPO}:${TAG_DATE} .
docker build --platform ${PLATFORM} --pull --build-arg BASE_IMAGE=${BASE_IMAGE} --build-arg kubeone_version=${KUBEONE_VERSION} --build-arg USER=${CONTAINER_USER} --build-arg USER_HOME=${CONTAINER_USER_HOME} -t ${DOCKER_REPO}:${TAG_DATE} .

docker-run-local: docker-build
docker run -it -v $(shell pwd):/home/kubermatic/mnt ${DOCKER_REPO}:${TAG_DATE} bash
Expand Down

0 comments on commit 5c67a0b

Please sign in to comment.