Skip to content

Commit 8e6fe41

Browse files
authored
Merge pull request #610 from mythi/PR-2021-024
images: release 0.20.0
2 parents 3ee96ca + 8cea353 commit 8e6fe41

36 files changed

+70
-57
lines changed

.github/workflows/publish.yml

+12
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- main
77
- release-0.19
8+
- release-0.20
89

910
jobs:
1011
build:
@@ -48,6 +49,17 @@ jobs:
4849
rm -rf _work/venv
4950
make vhtml
5051
mv _build/html $HOME/output/0.19
52+
- uses: actions/checkout@v2
53+
with:
54+
fetch-depth: 0
55+
ref: release-0.20
56+
- name: Build release-0.20
57+
run: |
58+
GITHUB_SHA=$(git rev-parse HEAD)
59+
export GITHUB_SHA
60+
rm -rf _work/venv
61+
make vhtml
62+
mv _build/html $HOME/output/0.20
5163
- name: Deploy the docs
5264
shell: bash
5365
env:

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ endif
5858

5959
test-with-kind:
6060
@build/docker/build-image.sh intel/intel-fpga-admissionwebhook buildah
61-
@$(PODMAN) tag localhost/intel/intel-fpga-admissionwebhook:devel docker.io/intel/intel-fpga-admissionwebhook:devel
61+
@$(PODMAN) tag localhost/intel/intel-fpga-admissionwebhook:0.20.0 docker.io/intel/intel-fpga-admissionwebhook:0.20.0
6262
@mkdir -p $(e2e_tmp_dir)
63-
@$(PODMAN) save "docker.io/intel/intel-fpga-admissionwebhook:devel" -o $(e2e_tmp_dir)/$(WEBHOOK_IMAGE_FILE)
63+
@$(PODMAN) save "docker.io/intel/intel-fpga-admissionwebhook:0.20.0" -o $(e2e_tmp_dir)/$(WEBHOOK_IMAGE_FILE)
6464
@$(KIND) create cluster --name "intel-device-plugins" --kubeconfig $(e2e_tmp_dir)/kubeconfig --image "kindest/node:v1.19.0"
6565
@$(KIND) load image-archive --name "intel-device-plugins" $(e2e_tmp_dir)/$(WEBHOOK_IMAGE_FILE)
6666
$(KUBECTL) --kubeconfig=$(e2e_tmp_dir)/kubeconfig apply -f https://github.com/jetstack/cert-manager/releases/download/v1.2.0/cert-manager.yaml
@@ -118,7 +118,7 @@ clean:
118118

119119
ORG?=intel
120120
REG?=$(ORG)/
121-
TAG?=devel
121+
TAG?=0.20.0
122122
export TAG
123123

124124
pre-pull:

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ This repository contains a framework for developing plugins for the Kubernetes
77
[device plugins framework](https://kubernetes.io/docs/concepts/extend-kubernetes/compute-storage-net/device-plugins/),
88
along with a number of device plugin implementations utilising that framework.
99

10-
The [v0.19 release](https://github.com/intel/intel-device-plugins-for-kubernetes/releases/latest)
11-
is the latest feature release with its documentation available [here](https://intel.github.io/intel-device-plugins-for-kubernetes/0.19/).
10+
The [v0.20 release](https://github.com/intel/intel-device-plugins-for-kubernetes/releases/latest)
11+
is the latest feature release with its documentation available [here](https://intel.github.io/intel-device-plugins-for-kubernetes/0.20/).
1212

1313
Table of Contents
1414

@@ -255,8 +255,9 @@ matching Kubernetes versions are listed below:
255255

256256
| Branch | Kubernetes branch/version | Status |
257257
|:------------------|:-------------------------------|:------------|
258+
| release-0.20 | Kubernetes 1.20 branch v1.20.x | supported |
258259
| release-0.19 | Kubernetes 1.19 branch v1.19.x | supported |
259-
| release-0.18 | Kubernetes 1.18 branch v1.18.x | supported |
260+
| release-0.18 | Kubernetes 1.18 branch v1.18.x | unsupported |
260261
| release-0.17 | Kubernetes 1.17 branch v1.17.x | unsupported |
261262
| release-0.15 | Kubernetes 1.15 branch v1.15.x | unsupported |
262263
| release-0.11 | Kubernetes 1.11 branch v1.11.x | unsupported |

build/docker/intel-deviceplugin-operator.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:d935946b7b2574e94423a206b64441331ef8113c6eb30af86797cd2189a6461b
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

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

build/docker/intel-dsa-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:d935946b7b2574e94423a206b64441331ef8113c6eb30af86797cd2189a6461b
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

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

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:d935946b7b2574e94423a206b64441331ef8113c6eb30af86797cd2189a6461b
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

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

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:d935946b7b2574e94423a206b64441331ef8113c6eb30af86797cd2189a6461b
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

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

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:d935946b7b2574e94423a206b64441331ef8113c6eb30af86797cd2189a6461b
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

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

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

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

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

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:d935946b7b2574e94423a206b64441331ef8113c6eb30af86797cd2189a6461b
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

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

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:d935946b7b2574e94423a206b64441331ef8113c6eb30af86797cd2189a6461b
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

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

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

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

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

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

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

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

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

build/docker/intel-vpu-plugin.Dockerfile

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

1313
RUN swupd update --no-boot-update ${CLEAR_LINUX_VERSION}
1414
RUN ldconfig

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 main branch defaults to using the latest Clear Linux.
9-
ARG CLEAR_LINUX_BASE=clearlinux:latest
9+
ARG CLEAR_LINUX_BASE=clearlinux@sha256:9b68fc72ee8a34f42ceda4e6f71eebe5633ea7909b9fb76ace952cf7408a860b
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

13-
ARG CLEAR_LINUX_VERSION=
13+
ARG CLEAR_LINUX_VERSION="--version=34450"
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.20.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 main branch defaults to using the latest Clear Linux.
9-
ARG CLEAR_LINUX_BASE=clearlinux:latest
9+
ARG CLEAR_LINUX_BASE=clearlinux@sha256:9b68fc72ee8a34f42ceda4e6f71eebe5633ea7909b9fb76ace952cf7408a860b
1010

1111
FROM ${CLEAR_LINUX_BASE} as builder
1212

13-
ARG CLEAR_LINUX_VERSION=
13+
ARG CLEAR_LINUX_VERSION="--version=34450"
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

+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.20.0
99
imagePullPolicy: IfNotPresent
1010
securityContext:
1111
capabilities:

demo/test-fpga-preprogrammed.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.20.0
99
imagePullPolicy: IfNotPresent
1010
securityContext:
1111
capabilities:

deployments/dsa_plugin/base/intel-dsa-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-dsa-plugin:devel
23+
image: intel/intel-dsa-plugin:0.20.0
2424
imagePullPolicy: IfNotPresent
2525
securityContext:
2626
readOnlyRootFilesystem: true

deployments/fpga_admissionwebhook/manager/manager.yaml

+1-1
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.20.0
2020
imagePullPolicy: IfNotPresent
2121
name: manager
2222
securityContext:

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

+2-2
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.20.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.20.0
4141
imagePullPolicy: IfNotPresent
4242
args:
4343
- -mode=af

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

+2-2
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.20.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.20.0
3333
imagePullPolicy: IfNotPresent
3434
securityContext:
3535
readOnlyRootFilesystem: true

deployments/operator/manager/manager.yaml

+1-1
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.20.0
2727
imagePullPolicy: IfNotPresent
2828
name: manager
2929
resources:

deployments/operator/samples/deviceplugin_v1_dsadeviceplugin.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ kind: DsaDevicePlugin
33
metadata:
44
name: dsadeviceplugin-sample
55
spec:
6-
image: intel/intel-dsa-plugin:0.18.0
6+
image: intel/intel-dsa-plugin:0.20.0
77
sharedDevNum: 10
88
logLevel: 4

deployments/operator/samples/deviceplugin_v1_fpgadeviceplugin.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ kind: FpgaDevicePlugin
33
metadata:
44
name: fpgadeviceplugin-sample
55
spec:
6-
image: intel/intel-fpga-plugin:0.19.0
7-
initImage: intel/intel-fpga-initcontainer:0.19.0
6+
image: intel/intel-fpga-plugin:0.20.0
7+
initImage: intel/intel-fpga-initcontainer:0.20.0
88
mode: region
99
logLevel: 4
1010
nodeSelector:

deployments/operator/samples/deviceplugin_v1_gpudeviceplugin.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ kind: GpuDevicePlugin
33
metadata:
44
name: gpudeviceplugin-sample
55
spec:
6-
image: intel/intel-gpu-plugin:0.18.0
7-
initImage: intel/intel-gpu-initcontainer:0.19.0
6+
image: intel/intel-gpu-plugin:0.20.0
7+
initImage: intel/intel-gpu-initcontainer:0.20.0
88
sharedDevNum: 10
99
logLevel: 4
1010
nodeSelector:

deployments/operator/samples/deviceplugin_v1_qatdeviceplugin.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ 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.20.0
77
dpdkDriver: vfio-pci
88
kernelVfDrivers:
99
- c6xxvf

deployments/operator/samples/deviceplugin_v1_sgxdeviceplugin.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ kind: SgxDevicePlugin
33
metadata:
44
name: sgxdeviceplugin-sample
55
spec:
6-
image: intel/intel-sgx-plugin:0.19.0
7-
initImage: intel/intel-sgx-initcontainer:0.19.0
6+
image: intel/intel-sgx-plugin:0.20.0
7+
initImage: intel/intel-sgx-initcontainer:0.20.0
88
enclaveLimit: 110
99
provisionLimit: 110
1010
logLevel: 4

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.20.0
99
imagePullPolicy: IfNotPresent
1010
command: [ "/bin/bash", "-c", "--" ]
1111
args: [ "while true; do sleep 300000; done;" ]

0 commit comments

Comments
 (0)