Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to node-feature-discovery v0.15.4 #17

Merged
merged 1 commit into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ platform:
steps:
- name: build
pull: always
image: rancher/hardened-build-base:v1.21.8b1
image: rancher/hardened-build-base:v1.22.2b1
commands:
- make DRONE_TAG=${DRONE_TAG}
volumes:
- name: docker
path: /var/run/docker.sock

- name: publish
image: rancher/hardened-build-base:v1.21.8b1
image: rancher/hardened-build-base:v1.22.2b1
commands:
- docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD
- make DRONE_TAG=${DRONE_TAG} image-push
Expand All @@ -37,7 +37,7 @@ steps:
- drone-publish.rancher.io

- name: scan
image: rancher/hardened-build-base:v1.21.8b1
image: rancher/hardened-build-base:v1.22.2b1
commands:
- make DRONE_TAG=${DRONE_TAG} image-scan
volumes:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BUILDER_IMAGE=rancher/hardened-build-base:v1.21.8b1
ARG BUILDER_IMAGE=rancher/hardened-build-base:v1.22.2b1
ARG BASE_IMAGE_MINIMAL=registry.suse.com/bci/bci-micro:latest

######
Expand All @@ -16,7 +16,7 @@ RUN go-assert-boring.sh bin/*

# Build node feature discovery
ARG ARCH="amd64"
ARG TAG="v0.15.3"
ARG TAG="v0.15.4"
ARG PKG="github.com/kubernetes-sigs/node-feature-discovery"
RUN git clone --depth=1 https://${PKG}.git $GOPATH/src/${PKG}
WORKDIR $GOPATH/src/${PKG}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ BUILD_META=-build$(shell date +%Y%m%d)
ORG ?= rancher
PKG ?= "github.com/kubernetes-sigs/node-feature-discovery"
SRC ?= "github.com/kubernetes-sigs/node-feature-discovery"
TAG ?= v0.15.3$(BUILD_META)
TAG ?= v0.15.4$(BUILD_META)

ifneq ($(DRONE_TAG),)
TAG := $(DRONE_TAG)
Expand Down