Skip to content

Commit 0e8bea8

Browse files
authored
Merge pull request #417 from mythi/r18
Prepare for release-0.18
2 parents a9dbd72 + fdc4703 commit 0e8bea8

26 files changed

+55
-58
lines changed

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pipeline {
1111
RUNC_VERSION="v1.0.0-rc90"
1212
CRIO_VERSION="v1.18.2"
1313
GOLANGCI_LINT_VERSION="v1.27.0"
14-
BUILDAH_VERSION="v1.15.0"
14+
BUILDAH_VERSION="v1.14.9"
1515
GO_VERSION="1.13.12"
1616
GO_TAR="go${GO_VERSION}.linux-amd64.tar.gz"
1717
GOROOT="/usr/local/go"

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ endif
4141

4242
test-with-kind:
4343
@build/docker/build-image.sh intel/intel-fpga-admissionwebhook buildah
44-
@$(PODMAN) tag localhost/intel/intel-fpga-admissionwebhook:devel docker.io/intel/intel-fpga-admissionwebhook:devel
44+
@$(PODMAN) tag localhost/intel/intel-fpga-admissionwebhook:0.18.0 docker.io/intel/intel-fpga-admissionwebhook:0.18.0
4545
@mkdir -p $(e2e_tmp_dir)
46-
@$(PODMAN) save "docker.io/intel/intel-fpga-admissionwebhook:devel" -o $(e2e_tmp_dir)/$(WEBHOOK_IMAGE_FILE)
46+
@$(PODMAN) save "docker.io/intel/intel-fpga-admissionwebhook:0.18.0" -o $(e2e_tmp_dir)/$(WEBHOOK_IMAGE_FILE)
4747
@$(KIND) create cluster --name "intel-device-plugins" --kubeconfig $(e2e_tmp_dir)/kubeconfig --image "kindest/node:v1.17.0"
4848
@$(KIND) load image-archive --name "intel-device-plugins" $(e2e_tmp_dir)/$(WEBHOOK_IMAGE_FILE)
4949
@$(GO) test -v ./test/e2e -args -kubeconfig $(e2e_tmp_dir)/kubeconfig -kubectl-path $(KUBECTL) -ginkgo.focus "Webhook" || rc=1; \
@@ -88,7 +88,7 @@ clean:
8888

8989
ORG?=intel
9090
REG?=$(ORG)/
91-
TAG?=devel
91+
TAG?=0.18.0
9292
export TAG
9393

9494
pre-pull:

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@ matching Kubernetes versions are listed below:
217217

218218
| Branch | Kubernetes branch/version |
219219
|:------------------|:-------------------------------|
220+
| release-0.18 | Kubernetes 1.18 branch v1.18.x |
220221
| release-0.17 | Kubernetes 1.17 branch v1.17.x |
221222
| release-0.15 | Kubernetes 1.15 branch v1.15.x |
222223
| release-0.11 | Kubernetes 1.11 branch v1.11.x |

build/docker/intel-deviceplugin-operator.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
#
77
# This is used on release branches before tagging a stable version.
88
# The master branch defaults to using the latest Clear Linux.
9-
ARG CLEAR_LINUX_BASE=clearlinux/golang:latest
9+
ARG CLEAR_LINUX_BASE=clearlinux/golang@sha256:9f04d3cc0ca3f6951ab3646639b43eb73e963a7cee7322d619a02c7eeecce711
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

13-
ARG CLEAR_LINUX_VERSION=
13+
ARG CLEAR_LINUX_VERSION="--version=33450"
1414

1515
RUN swupd update --no-boot-update ${CLEAR_LINUX_VERSION}
1616

build/docker/intel-fpga-admissionwebhook.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
#
77
# This is used on release branches before tagging a stable version.
88
# The master branch defaults to using the latest Clear Linux.
9-
ARG CLEAR_LINUX_BASE=clearlinux/golang:latest
9+
ARG CLEAR_LINUX_BASE=clearlinux/golang@sha256:9f04d3cc0ca3f6951ab3646639b43eb73e963a7cee7322d619a02c7eeecce711
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

13-
ARG CLEAR_LINUX_VERSION=
13+
ARG CLEAR_LINUX_VERSION="--version=33450"
1414

1515
RUN swupd update --no-boot-update ${CLEAR_LINUX_VERSION}
1616

build/docker/intel-fpga-initcontainer.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
#
77
# This is used on release branches before tagging a stable version.
88
# The master branch defaults to using the latest Clear Linux.
9-
ARG CLEAR_LINUX_BASE=clearlinux/golang:latest
9+
ARG CLEAR_LINUX_BASE=clearlinux/golang@sha256:9f04d3cc0ca3f6951ab3646639b43eb73e963a7cee7322d619a02c7eeecce711
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

13-
ARG CLEAR_LINUX_VERSION=
13+
ARG CLEAR_LINUX_VERSION="--version=33450"
1414

1515
RUN swupd update --no-boot-update ${CLEAR_LINUX_VERSION}
1616

build/docker/intel-fpga-plugin.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
#
77
# This is used on release branches before tagging a stable version.
88
# The master branch defaults to using the latest Clear Linux.
9-
ARG CLEAR_LINUX_BASE=clearlinux/golang:latest
9+
ARG CLEAR_LINUX_BASE=clearlinux/golang@sha256:9f04d3cc0ca3f6951ab3646639b43eb73e963a7cee7322d619a02c7eeecce711
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

13-
ARG CLEAR_LINUX_VERSION=
13+
ARG CLEAR_LINUX_VERSION="--version=33450"
1414

1515
RUN swupd update --no-boot-update ${CLEAR_LINUX_VERSION}
1616

build/docker/intel-gpu-plugin.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
#
77
# This is used on release branches before tagging a stable version.
88
# The master branch defaults to using the latest Clear Linux.
9-
ARG CLEAR_LINUX_BASE=clearlinux/golang:latest
9+
ARG CLEAR_LINUX_BASE=clearlinux/golang@sha256:9f04d3cc0ca3f6951ab3646639b43eb73e963a7cee7322d619a02c7eeecce711
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

13-
ARG CLEAR_LINUX_VERSION=
13+
ARG CLEAR_LINUX_VERSION="--version=33450"
1414

1515
RUN swupd update --no-boot-update ${CLEAR_LINUX_VERSION}
1616

build/docker/intel-qat-plugin.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
#
77
# This is used on release branches before tagging a stable version.
88
# The master branch defaults to using the latest Clear Linux.
9-
ARG CLEAR_LINUX_BASE=clearlinux/golang:latest
9+
ARG CLEAR_LINUX_BASE=clearlinux/golang@sha256:9f04d3cc0ca3f6951ab3646639b43eb73e963a7cee7322d619a02c7eeecce711
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

13-
ARG CLEAR_LINUX_VERSION=
13+
ARG CLEAR_LINUX_VERSION="--version=33450"
1414

1515
RUN swupd update --no-boot-update ${CLEAR_LINUX_VERSION}
1616

build/docker/intel-vpu-plugin.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
#
77
# This is used on release branches before tagging a stable version.
88
# The master branch defaults to using the latest Clear Linux.
9-
ARG CLEAR_LINUX_BASE=clearlinux/golang:latest
9+
ARG CLEAR_LINUX_BASE=clearlinux/golang@sha256:9f04d3cc0ca3f6951ab3646639b43eb73e963a7cee7322d619a02c7eeecce711
1010
FROM ${CLEAR_LINUX_BASE} as builder
11-
ARG CLEAR_LINUX_VERSION=
11+
ARG CLEAR_LINUX_VERSION="--version=33450"
1212

1313
RUN swupd update --no-boot-update ${CLEAR_LINUX_VERSION}
1414
RUN swupd bundle-add devpkg-libusb

0 commit comments

Comments
 (0)