Skip to content

Commit

Permalink
Merge pull request #1827 from fmuyassarov/fix-go-mod
Browse files Browse the repository at this point in the history
tilt: sync up builder go version with project go.mod
  • Loading branch information
k8s-ci-robot committed Aug 8, 2024
2 parents d38e116 + a7d8448 commit c1db298
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

BASE_IMAGE_MINIMAL="gcr.io/distroless/base"
BASE_IMAGE_FULL="debian:bullseye-slim"
BUILDER_IMAGE="golang:1.19-bullseye"
BUILDER_IMAGE="golang:1.22-bullseye"
HOSTMOUNT_PREFIX="/host-"
IMAGE_TAG_NAME = os.getenv('IMAGE_TAG_NAME', "master")
IMAGE_REGISTRY = os.getenv('IMAGE_REGISTRY', "gcr.io/k8s-staging-nfd")
Expand All @@ -12,6 +12,7 @@ IMAGE_NAME = os.getenv('IMAGE_NAME', "node-feature-discovery")
# registry.k8s.io/nfd/node-feature-discovery:master
IMAGE = "/".join([IMAGE_REGISTRY, IMAGE_NAME])
TAGGED_IMAGE = ":".join([IMAGE, IMAGE_TAG_NAME])
allow_k8s_contexts('kubernetes-admin@kubernetes')

# Builds container image
def build_image():
Expand Down

0 comments on commit c1db298

Please sign in to comment.