Skip to content

Commit 8267074

Browse files
authored
Merge pull request #306 from mythi/r17
Prepare for release-0.17
2 parents 6e368f4 + e5042ef commit 8267074

20 files changed

+33
-33
lines changed

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ endif
4646

4747
test-with-kind:
4848
@build/docker/build-image.sh intel/intel-fpga-admissionwebhook buildah
49-
@$(PODMAN) tag localhost/intel/intel-fpga-admissionwebhook:devel docker.io/intel/intel-fpga-admissionwebhook:devel
49+
@$(PODMAN) tag localhost/intel/intel-fpga-admissionwebhook:0.17.0 docker.io/intel/intel-fpga-admissionwebhook:0.17.0
5050
@mkdir -p $(e2e_tmp_dir)
51-
@$(PODMAN) save "docker.io/intel/intel-fpga-admissionwebhook:devel" -o $(e2e_tmp_dir)/$(WEBHOOK_IMAGE_FILE)
51+
@$(PODMAN) save "docker.io/intel/intel-fpga-admissionwebhook:0.17.0 -o $(e2e_tmp_dir)/$(WEBHOOK_IMAGE_FILE)
5252
@$(KIND) create cluster --name "intel-device-plugins" --kubeconfig $(e2e_tmp_dir)/kubeconfig --image "kindest/node:v1.17.0"
5353
@$(KIND) load image-archive --name "intel-device-plugins" $(e2e_tmp_dir)/$(WEBHOOK_IMAGE_FILE)
5454
@$(GO) test -v ./test/e2e -args -kubeconfig $(e2e_tmp_dir)/kubeconfig -kubectl-path $(KUBECTL) -ginkgo.focus "Webhook" || rc=1; \
@@ -71,7 +71,7 @@ clean:
7171

7272
ORG?=intel
7373
REG?=$(ORG)/
74-
TAG?=devel
74+
TAG?=0.17.0
7575
export TAG
7676

7777
pre-pull:

build/docker/intel-fpga-admissionwebhook.Dockerfile

+2-2
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:88c32c98c72dab8f5a0760e48c0121d11ee8a962b13b10b362acaa63879a49cb
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

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

build/docker/intel-fpga-initcontainer.Dockerfile

+2-2
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:88c32c98c72dab8f5a0760e48c0121d11ee8a962b13b10b362acaa63879a49cb
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

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

build/docker/intel-fpga-plugin.Dockerfile

+2-2
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:88c32c98c72dab8f5a0760e48c0121d11ee8a962b13b10b362acaa63879a49cb
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

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

build/docker/intel-gpu-plugin.Dockerfile

+2-2
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:88c32c98c72dab8f5a0760e48c0121d11ee8a962b13b10b362acaa63879a49cb
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

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

build/docker/intel-qat-plugin.Dockerfile

+2-2
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:88c32c98c72dab8f5a0760e48c0121d11ee8a962b13b10b362acaa63879a49cb
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

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

build/docker/intel-vpu-plugin.Dockerfile

+3-3
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:88c32c98c72dab8f5a0760e48c0121d11ee8a962b13b10b362acaa63879a49cb
1010
FROM ${CLEAR_LINUX_BASE} as builder
11-
ARG CLEAR_LINUX_VERSION=
11+
ARG CLEAR_LINUX_VERSION="--version=32510"
1212

13-
RUN swupd update --no-boot-update
13+
RUN swupd update --no-boot-update ${CLEAR_LINUX_VERSION}
1414
RUN swupd bundle-add devpkg-libusb
1515
RUN mkdir /install_root \
1616
&& swupd os-install \

demo/crypto-perf/Dockerfile

+2-2
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:latest
9+
ARG CLEAR_LINUX_BASE=clearlinux@sha256:29ce14c5df5bb6ef5bbb6f96db701cb3e7f68bb164d85964f763c4fb7058370a
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

1515
RUN mkdir /install_root && \
1616
swupd os-install \

demo/intelfpga-job.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ spec:
1313
restartPolicy: Never
1414
containers:
1515
- name: intelfpga-demo-job-1
16-
image: intel/opae-nlb-demo:devel
16+
image: intel/opae-nlb-demo:0.17.0
1717
imagePullPolicy: IfNotPresent
1818
securityContext:
1919
capabilities:

demo/opae-nlb-demo/Dockerfile

+2-2
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:latest
9+
ARG CLEAR_LINUX_BASE=clearlinux@sha256:29ce14c5df5bb6ef5bbb6f96db701cb3e7f68bb164d85964f763c4fb7058370a
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

1515
RUN swupd update --no-boot-update ${CLEAR_LINUX_VERSION} && \
1616
swupd bundle-add wget c-basic devpkg-json-c devpkg-util-linux devpkg-hwloc doxygen patch

demo/test-fpga-region.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: test-container
8-
image: intel/opae-nlb-demo:devel
8+
image: intel/opae-nlb-demo:0.17.0
99
imagePullPolicy: IfNotPresent
1010
securityContext:
1111
capabilities:

deployments/fpga_admissionwebhook/base/intel-fpga-webhook-deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
spec:
1717
containers:
1818
- name: fpga-mutator
19-
image: intel/intel-fpga-admissionwebhook:devel
19+
image: intel/intel-fpga-admissionwebhook:0.17.0
2020
imagePullPolicy: IfNotPresent
2121
ports:
2222
- containerPort: 8443

deployments/fpga_admissionwebhook/deployment-tpl.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
spec:
1717
containers:
1818
- name: fpga-mutator
19-
image: intel/intel-fpga-admissionwebhook:devel
19+
image: intel/intel-fpga-admissionwebhook:0.17.0
2020
imagePullPolicy: IfNotPresent
2121
ports:
2222
- containerPort: 8443

deployments/fpga_plugin/base/intel-fpga-plugin-daemonset.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
serviceAccountName: intel-fpga-plugin-controller
1818
initContainers:
1919
- name: intel-fpga-initcontainer
20-
image: intel/intel-fpga-initcontainer:devel
20+
image: intel/intel-fpga-initcontainer:0.17.0
2121
imagePullPolicy: IfNotPresent
2222
securityContext:
2323
readOnlyRootFilesystem: true
@@ -33,7 +33,7 @@ spec:
3333
valueFrom:
3434
fieldRef:
3535
fieldPath: spec.nodeName
36-
image: intel/intel-fpga-plugin:devel
36+
image: intel/intel-fpga-plugin:0.17.0
3737
imagePullPolicy: IfNotPresent
3838
args:
3939
- -mode=af

deployments/fpga_plugin/fpga_plugin.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
serviceAccountName: intel-fpga-plugin-controller
1818
initContainers:
1919
- name: intel-fpga-initcontainer
20-
image: intel/intel-fpga-initcontainer:devel
20+
image: intel/intel-fpga-initcontainer:0.17.0
2121
imagePullPolicy: IfNotPresent
2222
securityContext:
2323
readOnlyRootFilesystem: true
@@ -33,7 +33,7 @@ spec:
3333
valueFrom:
3434
fieldRef:
3535
fieldPath: spec.nodeName
36-
image: intel/intel-fpga-plugin:devel
36+
image: intel/intel-fpga-plugin:0.17.0
3737
imagePullPolicy: IfNotPresent
3838
terminationMessagePath: /tmp/termination-log
3939
securityContext:

deployments/gpu_plugin/base/intel-gpu-plugin.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
valueFrom:
2121
fieldRef:
2222
fieldPath: spec.nodeName
23-
image: intel/intel-gpu-plugin:devel
23+
image: intel/intel-gpu-plugin:0.17.0
2424
imagePullPolicy: IfNotPresent
2525
securityContext:
2626
readOnlyRootFilesystem: true

deployments/qat_dpdk_app/base/crypto-perf-dpdk-pod-requesting-qat.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: crypto-perf
8-
image: intel/crypto-perf:devel
8+
image: intel/crypto-perf:0.17.0
99
imagePullPolicy: IfNotPresent
1010
command: [ "/bin/bash", "-c", "--" ]
1111
args: [ "while true; do sleep 300000; done;" ]

deployments/qat_plugin/base/intel-qat-kernel-plugin.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ spec:
1818
securityContext:
1919
readOnlyRootFilesystem: true
2020
privileged: true
21-
image: intel/intel-qat-plugin:devel
21+
image: intel/intel-qat-plugin:0.17.0
2222
imagePullPolicy: IfNotPresent
2323
args: ["-mode", "kernel"]
2424
volumeMounts:

deployments/qat_plugin/base/intel-qat-plugin.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
containers:
1717
- name: intel-qat-plugin
18-
image: intel/intel-qat-plugin:devel
18+
image: intel/intel-qat-plugin:0.17.0
1919
securityContext:
2020
readOnlyRootFilesystem: true
2121
env:

deployments/vpu_plugin/base/intel-vpu-plugin.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
valueFrom:
2121
fieldRef:
2222
fieldPath: spec.nodeName
23-
image: intel/intel-vpu-plugin:devel
23+
image: intel/intel-vpu-plugin:0.17.0
2424
imagePullPolicy: IfNotPresent
2525
securityContext:
2626
readOnlyRootFilesystem: true

0 commit comments

Comments
 (0)