Skip to content

Commit 2edd51e

Browse files
authored
Merge pull request #511 from mythi/r19
images: release 0.19.0
2 parents 2a19bb0 + 830c930 commit 2edd51e

29 files changed

+47
-46
lines changed

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pipeline {
1111
RUNC_VERSION="v1.0.0-rc92"
1212
CRIO_VERSION="v1.18.2"
1313
GOLANGCI_LINT_VERSION="v1.30.0"
14-
BUILDAH_VERSION="v1.15.0"
14+
BUILDAH_VERSION="v1.18.0"
1515
GO_VERSION="1.15.3"
1616
GO_TAR="go${GO_VERSION}.linux-amd64.tar.gz"
1717
GOROOT="/usr/local/go"
@@ -50,7 +50,7 @@ pipeline {
5050
}
5151
dir(path: "${GOPATH}/src/github.com/containers/buildah") {
5252
sh 'make buildah TAGS=""'
53-
sh "sudo cp buildah /usr/local/bin"
53+
sh "sudo cp ./bin/buildah /usr/local/bin"
5454
sh "sudo mkdir -p /etc/containers"
5555
sh "sudo mkdir -p /etc/cni/net.d"
5656
sh "sudo mkdir -p /opt/cni/bin"

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.19.0 docker.io/intel/intel-fpga-admissionwebhook:0.19.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.19.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.19.0"
4848
@$(KIND) load image-archive --name "intel-device-plugins" $(e2e_tmp_dir)/$(WEBHOOK_IMAGE_FILE)
4949
$(KUBECTL) --kubeconfig=$(e2e_tmp_dir)/kubeconfig apply -f https://github.com/jetstack/cert-manager/releases/download/v1.0.3/cert-manager.yaml
@@ -96,7 +96,7 @@ clean:
9696

9797
ORG?=intel
9898
REG?=$(ORG)/
99-
TAG?=devel
99+
TAG?=0.19.0
100100
export TAG
101101

102102
pre-pull:

README.md

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

264264
| Branch | Kubernetes branch/version |
265265
|:------------------|:-------------------------------|
266+
| release-0.19 | Kubernetes 1.19 branch v1.19.x |
266267
| release-0.18 | Kubernetes 1.18 branch v1.18.x |
267268
| release-0.17 | Kubernetes 1.17 branch v1.17.x |
268269
| release-0.15 | Kubernetes 1.15 branch v1.15.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:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

13-
ARG CLEAR_LINUX_VERSION=
13+
ARG CLEAR_LINUX_VERSION="--version=33970"
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:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

13-
ARG CLEAR_LINUX_VERSION=
13+
ARG CLEAR_LINUX_VERSION="--version=33970"
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:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

13-
ARG CLEAR_LINUX_VERSION=
13+
ARG CLEAR_LINUX_VERSION="--version=33970"
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:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

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

build/docker/intel-gpu-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:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

13-
ARG CLEAR_LINUX_VERSION=
13+
ARG CLEAR_LINUX_VERSION="--version=33970"
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:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

13-
ARG CLEAR_LINUX_VERSION=
13+
ARG CLEAR_LINUX_VERSION="--version=33970"
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:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

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

build/docker/intel-sgx-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:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

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

build/docker/intel-sgx-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:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

13-
ARG CLEAR_LINUX_VERSION=
13+
ARG CLEAR_LINUX_VERSION="--version=33970"
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:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b
1010
FROM ${CLEAR_LINUX_BASE} as builder
11-
ARG CLEAR_LINUX_VERSION=
11+
ARG CLEAR_LINUX_VERSION="--version=33970"
1212

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

demo/crypto-perf/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:latest
9+
ARG CLEAR_LINUX_BASE=clearlinux@sha256:9124cbd2f743be1162349569012dd93bfd626878736fa9feca30085c551e51f6
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

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

demo/intelfpga-job.yaml

Lines changed: 1 addition & 1 deletion
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.19.0
1717
imagePullPolicy: IfNotPresent
1818
securityContext:
1919
capabilities:

demo/opae-nlb-demo/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:latest
9+
ARG CLEAR_LINUX_BASE=clearlinux@sha256:9124cbd2f743be1162349569012dd93bfd626878736fa9feca30085c551e51f6
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

13-
ARG CLEAR_LINUX_VERSION=
13+
ARG CLEAR_LINUX_VERSION="--version=33970"
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 devpkg-tbb git

demo/test-fpga-orchestrated.yaml

Lines changed: 1 addition & 1 deletion
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.19.0
99
imagePullPolicy: IfNotPresent
1010
securityContext:
1111
capabilities:

demo/test-fpga-preprogrammed.yaml

Lines changed: 1 addition & 1 deletion
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.19.0
99
imagePullPolicy: IfNotPresent
1010
securityContext:
1111
capabilities:

deployments/fpga_admissionwebhook/manager/manager.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
control-plane: controller-manager
1717
spec:
1818
containers:
19-
- image: intel/intel-fpga-admissionwebhook:devel
19+
- image: intel/intel-fpga-admissionwebhook:0.19.0
2020
imagePullPolicy: IfNotPresent
2121
name: manager
2222
securityContext:

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
spec:
2222
initContainers:
2323
- name: intel-fpga-initcontainer
24-
image: intel/intel-fpga-initcontainer:devel
24+
image: intel/intel-fpga-initcontainer:0.19.0
2525
imagePullPolicy: IfNotPresent
2626
securityContext:
2727
readOnlyRootFilesystem: true
@@ -37,7 +37,7 @@ spec:
3737
valueFrom:
3838
fieldRef:
3939
fieldPath: spec.nodeName
40-
image: intel/intel-fpga-plugin:devel
40+
image: intel/intel-fpga-plugin:0.19.0
4141
imagePullPolicy: IfNotPresent
4242
args:
4343
- -mode=af

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
initContainers:
1717
- name: intel-gpu-initcontainer
18-
image: intel/intel-gpu-initcontainer:devel
18+
image: intel/intel-gpu-initcontainer:0.19.0
1919
imagePullPolicy: IfNotPresent
2020
securityContext:
2121
readOnlyRootFilesystem: true
@@ -29,7 +29,7 @@ spec:
2929
valueFrom:
3030
fieldRef:
3131
fieldPath: spec.nodeName
32-
image: intel/intel-gpu-plugin:devel
32+
image: intel/intel-gpu-plugin:0.19.0
3333
imagePullPolicy: IfNotPresent
3434
securityContext:
3535
readOnlyRootFilesystem: true

deployments/operator/manager/manager.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ spec:
2323
control-plane: controller-manager
2424
spec:
2525
containers:
26-
- image: intel/intel-deviceplugin-operator:devel
26+
- image: intel/intel-deviceplugin-operator:0.19.0
2727
imagePullPolicy: IfNotPresent
2828
name: manager
2929
resources:

deployments/operator/samples/deviceplugin_v1_gpudeviceplugin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ kind: GpuDevicePlugin
33
metadata:
44
name: gpudeviceplugin-sample
55
spec:
6-
image: intel/intel-gpu-plugin:0.18.0
6+
image: intel/intel-gpu-plugin:0.19.0

deployments/operator/samples/deviceplugin_v1_qatdeviceplugin.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ kind: QatDevicePlugin
33
metadata:
44
name: qatdeviceplugin-sample
55
spec:
6-
image: intel/intel-qat-plugin:0.18.0
6+
image: intel/intel-qat-plugin:0.19.0

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

Lines changed: 1 addition & 1 deletion
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.19.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

Lines changed: 1 addition & 1 deletion
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.19.0
2222
imagePullPolicy: IfNotPresent
2323
args: ["-mode", "kernel"]
2424
volumeMounts:

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

Lines changed: 1 addition & 1 deletion
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.19.0
1919
securityContext:
2020
readOnlyRootFilesystem: true
2121
env:

deployments/sgx_plugin/base/intel-sgx-plugin.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
spec:
1616
initContainers:
1717
- name: intel-sgx-initcontainer
18-
image: intel/intel-sgx-initcontainer:devel
18+
image: intel/intel-sgx-initcontainer:0.19.0
1919
imagePullPolicy: IfNotPresent
2020
securityContext:
2121
readOnlyRootFilesystem: true
@@ -24,7 +24,7 @@ spec:
2424
name: nfd-source-hooks
2525
containers:
2626
- name: intel-sgx-plugin
27-
image: intel/intel-sgx-plugin:devel
27+
image: intel/intel-sgx-plugin:0.19.0
2828
securityContext:
2929
readOnlyRootFilesystem: true
3030
imagePullPolicy: IfNotPresent

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

Lines changed: 1 addition & 1 deletion
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.19.0
2424
imagePullPolicy: IfNotPresent
2525
securityContext:
2626
readOnlyRootFilesystem: true

0 commit comments

Comments
 (0)