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

Lines changed: 12 additions & 0 deletions
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

Lines changed: 3 additions & 3 deletions
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

Lines changed: 4 additions & 3 deletions
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

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

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

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

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

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

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

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

0 commit comments

Comments
 (0)