Skip to content

Commit

Permalink
Merge pull request #511 from mythi/r19
Browse files Browse the repository at this point in the history
images: release 0.19.0
  • Loading branch information
rojkov authored Nov 20, 2020
2 parents 2a19bb0 + 830c930 commit 2edd51e
Show file tree
Hide file tree
Showing 29 changed files with 47 additions and 46 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pipeline {
RUNC_VERSION="v1.0.0-rc92"
CRIO_VERSION="v1.18.2"
GOLANGCI_LINT_VERSION="v1.30.0"
BUILDAH_VERSION="v1.15.0"
BUILDAH_VERSION="v1.18.0"
GO_VERSION="1.15.3"
GO_TAR="go${GO_VERSION}.linux-amd64.tar.gz"
GOROOT="/usr/local/go"
Expand Down Expand Up @@ -50,7 +50,7 @@ pipeline {
}
dir(path: "${GOPATH}/src/github.com/containers/buildah") {
sh 'make buildah TAGS=""'
sh "sudo cp buildah /usr/local/bin"
sh "sudo cp ./bin/buildah /usr/local/bin"
sh "sudo mkdir -p /etc/containers"
sh "sudo mkdir -p /etc/cni/net.d"
sh "sudo mkdir -p /opt/cni/bin"
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ endif

test-with-kind:
@build/docker/build-image.sh intel/intel-fpga-admissionwebhook buildah
@$(PODMAN) tag localhost/intel/intel-fpga-admissionwebhook:devel docker.io/intel/intel-fpga-admissionwebhook:devel
@$(PODMAN) tag localhost/intel/intel-fpga-admissionwebhook:0.19.0 docker.io/intel/intel-fpga-admissionwebhook:0.19.0
@mkdir -p $(e2e_tmp_dir)
@$(PODMAN) save "docker.io/intel/intel-fpga-admissionwebhook:devel" -o $(e2e_tmp_dir)/$(WEBHOOK_IMAGE_FILE)
@$(PODMAN) save "docker.io/intel/intel-fpga-admissionwebhook:0.19.0" -o $(e2e_tmp_dir)/$(WEBHOOK_IMAGE_FILE)
@$(KIND) create cluster --name "intel-device-plugins" --kubeconfig $(e2e_tmp_dir)/kubeconfig --image "kindest/node:v1.19.0"
@$(KIND) load image-archive --name "intel-device-plugins" $(e2e_tmp_dir)/$(WEBHOOK_IMAGE_FILE)
$(KUBECTL) --kubeconfig=$(e2e_tmp_dir)/kubeconfig apply -f https://github.com/jetstack/cert-manager/releases/download/v1.0.3/cert-manager.yaml
Expand Down Expand Up @@ -96,7 +96,7 @@ clean:

ORG?=intel
REG?=$(ORG)/
TAG?=devel
TAG?=0.19.0
export TAG

pre-pull:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@ matching Kubernetes versions are listed below:

| Branch | Kubernetes branch/version |
|:------------------|:-------------------------------|
| release-0.19 | Kubernetes 1.19 branch v1.19.x |
| release-0.18 | Kubernetes 1.18 branch v1.18.x |
| release-0.17 | Kubernetes 1.17 branch v1.17.x |
| release-0.15 | Kubernetes 1.15 branch v1.15.x |
Expand Down
4 changes: 2 additions & 2 deletions build/docker/intel-deviceplugin-operator.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
#
# This is used on release branches before tagging a stable version.
# The master branch defaults to using the latest Clear Linux.
ARG CLEAR_LINUX_BASE=clearlinux/golang:latest
ARG CLEAR_LINUX_BASE=clearlinux/golang@sha256:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b

FROM ${CLEAR_LINUX_BASE} as builder

ARG CLEAR_LINUX_VERSION=
ARG CLEAR_LINUX_VERSION="--version=33970"

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

Expand Down
4 changes: 2 additions & 2 deletions build/docker/intel-fpga-admissionwebhook.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
#
# This is used on release branches before tagging a stable version.
# The master branch defaults to using the latest Clear Linux.
ARG CLEAR_LINUX_BASE=clearlinux/golang:latest
ARG CLEAR_LINUX_BASE=clearlinux/golang@sha256:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b

FROM ${CLEAR_LINUX_BASE} as builder

ARG CLEAR_LINUX_VERSION=
ARG CLEAR_LINUX_VERSION="--version=33970"

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

Expand Down
4 changes: 2 additions & 2 deletions build/docker/intel-fpga-initcontainer.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
#
# This is used on release branches before tagging a stable version.
# The master branch defaults to using the latest Clear Linux.
ARG CLEAR_LINUX_BASE=clearlinux/golang:latest
ARG CLEAR_LINUX_BASE=clearlinux/golang@sha256:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b

FROM ${CLEAR_LINUX_BASE} as builder

ARG CLEAR_LINUX_VERSION=
ARG CLEAR_LINUX_VERSION="--version=33970"

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

Expand Down
4 changes: 2 additions & 2 deletions build/docker/intel-fpga-plugin.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
#
# This is used on release branches before tagging a stable version.
# The master branch defaults to using the latest Clear Linux.
ARG CLEAR_LINUX_BASE=clearlinux/golang:latest
ARG CLEAR_LINUX_BASE=clearlinux/golang@sha256:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b

FROM ${CLEAR_LINUX_BASE} as builder

ARG CLEAR_LINUX_VERSION=
ARG CLEAR_LINUX_VERSION="--version=33970"

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

Expand Down
4 changes: 2 additions & 2 deletions build/docker/intel-gpu-initcontainer.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
#
# This is used on release branches before tagging a stable version.
# The master branch defaults to using the latest Clear Linux.
ARG CLEAR_LINUX_BASE=clearlinux/golang:latest
ARG CLEAR_LINUX_BASE=clearlinux/golang@sha256:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b

FROM ${CLEAR_LINUX_BASE} as builder

ARG CLEAR_LINUX_VERSION=
ARG CLEAR_LINUX_VERSION="--version=33970"

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

Expand Down
4 changes: 2 additions & 2 deletions build/docker/intel-gpu-plugin.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
#
# This is used on release branches before tagging a stable version.
# The master branch defaults to using the latest Clear Linux.
ARG CLEAR_LINUX_BASE=clearlinux/golang:latest
ARG CLEAR_LINUX_BASE=clearlinux/golang@sha256:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b

FROM ${CLEAR_LINUX_BASE} as builder

ARG CLEAR_LINUX_VERSION=
ARG CLEAR_LINUX_VERSION="--version=33970"

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

Expand Down
4 changes: 2 additions & 2 deletions build/docker/intel-qat-plugin.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
#
# This is used on release branches before tagging a stable version.
# The master branch defaults to using the latest Clear Linux.
ARG CLEAR_LINUX_BASE=clearlinux/golang:latest
ARG CLEAR_LINUX_BASE=clearlinux/golang@sha256:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b

FROM ${CLEAR_LINUX_BASE} as builder

ARG CLEAR_LINUX_VERSION=
ARG CLEAR_LINUX_VERSION="--version=33970"

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

Expand Down
4 changes: 2 additions & 2 deletions build/docker/intel-sgx-initcontainer.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
#
# This is used on release branches before tagging a stable version.
# The master branch defaults to using the latest Clear Linux.
ARG CLEAR_LINUX_BASE=clearlinux/golang:latest
ARG CLEAR_LINUX_BASE=clearlinux/golang@sha256:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b

FROM ${CLEAR_LINUX_BASE} as builder

ARG CLEAR_LINUX_VERSION=
ARG CLEAR_LINUX_VERSION="--version=33970"

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

Expand Down
4 changes: 2 additions & 2 deletions build/docker/intel-sgx-plugin.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
#
# This is used on release branches before tagging a stable version.
# The master branch defaults to using the latest Clear Linux.
ARG CLEAR_LINUX_BASE=clearlinux/golang:latest
ARG CLEAR_LINUX_BASE=clearlinux/golang@sha256:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b

FROM ${CLEAR_LINUX_BASE} as builder

ARG CLEAR_LINUX_VERSION=
ARG CLEAR_LINUX_VERSION="--version=33970"

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

Expand Down
4 changes: 2 additions & 2 deletions build/docker/intel-vpu-plugin.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
#
# This is used on release branches before tagging a stable version.
# The master branch defaults to using the latest Clear Linux.
ARG CLEAR_LINUX_BASE=clearlinux/golang:latest
ARG CLEAR_LINUX_BASE=clearlinux/golang@sha256:dd553780525a1e7be6da637178e6515939cdb9b1ac4e2381e552fbd163bdd61b
FROM ${CLEAR_LINUX_BASE} as builder
ARG CLEAR_LINUX_VERSION=
ARG CLEAR_LINUX_VERSION="--version=33970"

RUN swupd update --no-boot-update ${CLEAR_LINUX_VERSION}
RUN swupd bundle-add devpkg-libusb
Expand Down
4 changes: 2 additions & 2 deletions demo/crypto-perf/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
#
# This is used on release branches before tagging a stable version.
# The master branch defaults to using the latest Clear Linux.
ARG CLEAR_LINUX_BASE=clearlinux:latest
ARG CLEAR_LINUX_BASE=clearlinux@sha256:9124cbd2f743be1162349569012dd93bfd626878736fa9feca30085c551e51f6

FROM ${CLEAR_LINUX_BASE} as builder

ARG CLEAR_LINUX_VERSION=
ARG CLEAR_LINUX_VERSION="--version=33970"

RUN mkdir /install_root && \
swupd os-install \
Expand Down
2 changes: 1 addition & 1 deletion demo/intelfpga-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
restartPolicy: Never
containers:
- name: intelfpga-demo-job-1
image: intel/opae-nlb-demo:devel
image: intel/opae-nlb-demo:0.19.0
imagePullPolicy: IfNotPresent
securityContext:
capabilities:
Expand Down
4 changes: 2 additions & 2 deletions demo/opae-nlb-demo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
#
# This is used on release branches before tagging a stable version.
# The master branch defaults to using the latest Clear Linux.
ARG CLEAR_LINUX_BASE=clearlinux:latest
ARG CLEAR_LINUX_BASE=clearlinux@sha256:9124cbd2f743be1162349569012dd93bfd626878736fa9feca30085c551e51f6

FROM ${CLEAR_LINUX_BASE} as builder

ARG CLEAR_LINUX_VERSION=
ARG CLEAR_LINUX_VERSION="--version=33970"

RUN swupd update --no-boot-update ${CLEAR_LINUX_VERSION} && \
swupd bundle-add wget c-basic devpkg-json-c devpkg-util-linux devpkg-hwloc devpkg-tbb git
Expand Down
2 changes: 1 addition & 1 deletion demo/test-fpga-orchestrated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
spec:
containers:
- name: test-container
image: intel/opae-nlb-demo:devel
image: intel/opae-nlb-demo:0.19.0
imagePullPolicy: IfNotPresent
securityContext:
capabilities:
Expand Down
2 changes: 1 addition & 1 deletion demo/test-fpga-preprogrammed.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
spec:
containers:
- name: test-container
image: intel/opae-nlb-demo:devel
image: intel/opae-nlb-demo:0.19.0
imagePullPolicy: IfNotPresent
securityContext:
capabilities:
Expand Down
2 changes: 1 addition & 1 deletion deployments/fpga_admissionwebhook/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
control-plane: controller-manager
spec:
containers:
- image: intel/intel-fpga-admissionwebhook:devel
- image: intel/intel-fpga-admissionwebhook:0.19.0
imagePullPolicy: IfNotPresent
name: manager
securityContext:
Expand Down
4 changes: 2 additions & 2 deletions deployments/fpga_plugin/base/intel-fpga-plugin-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
spec:
initContainers:
- name: intel-fpga-initcontainer
image: intel/intel-fpga-initcontainer:devel
image: intel/intel-fpga-initcontainer:0.19.0
imagePullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: true
Expand All @@ -37,7 +37,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
image: intel/intel-fpga-plugin:devel
image: intel/intel-fpga-plugin:0.19.0
imagePullPolicy: IfNotPresent
args:
- -mode=af
Expand Down
4 changes: 2 additions & 2 deletions deployments/gpu_plugin/base/intel-gpu-plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
initContainers:
- name: intel-gpu-initcontainer
image: intel/intel-gpu-initcontainer:devel
image: intel/intel-gpu-initcontainer:0.19.0
imagePullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: true
Expand All @@ -29,7 +29,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
image: intel/intel-gpu-plugin:devel
image: intel/intel-gpu-plugin:0.19.0
imagePullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: true
Expand Down
2 changes: 1 addition & 1 deletion deployments/operator/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
control-plane: controller-manager
spec:
containers:
- image: intel/intel-deviceplugin-operator:devel
- image: intel/intel-deviceplugin-operator:0.19.0
imagePullPolicy: IfNotPresent
name: manager
resources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ kind: GpuDevicePlugin
metadata:
name: gpudeviceplugin-sample
spec:
image: intel/intel-gpu-plugin:0.18.0
image: intel/intel-gpu-plugin:0.19.0
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ kind: QatDevicePlugin
metadata:
name: qatdeviceplugin-sample
spec:
image: intel/intel-qat-plugin:0.18.0
image: intel/intel-qat-plugin:0.19.0
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
spec:
containers:
- name: crypto-perf
image: intel/crypto-perf:devel
image: intel/crypto-perf:0.19.0
imagePullPolicy: IfNotPresent
command: [ "/bin/bash", "-c", "--" ]
args: [ "while true; do sleep 300000; done;" ]
Expand Down
2 changes: 1 addition & 1 deletion deployments/qat_plugin/base/intel-qat-kernel-plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
securityContext:
readOnlyRootFilesystem: true
privileged: true
image: intel/intel-qat-plugin:devel
image: intel/intel-qat-plugin:0.19.0
imagePullPolicy: IfNotPresent
args: ["-mode", "kernel"]
volumeMounts:
Expand Down
2 changes: 1 addition & 1 deletion deployments/qat_plugin/base/intel-qat-plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: intel-qat-plugin
image: intel/intel-qat-plugin:devel
image: intel/intel-qat-plugin:0.19.0
securityContext:
readOnlyRootFilesystem: true
env:
Expand Down
4 changes: 2 additions & 2 deletions deployments/sgx_plugin/base/intel-sgx-plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
initContainers:
- name: intel-sgx-initcontainer
image: intel/intel-sgx-initcontainer:devel
image: intel/intel-sgx-initcontainer:0.19.0
imagePullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: true
Expand All @@ -24,7 +24,7 @@ spec:
name: nfd-source-hooks
containers:
- name: intel-sgx-plugin
image: intel/intel-sgx-plugin:devel
image: intel/intel-sgx-plugin:0.19.0
securityContext:
readOnlyRootFilesystem: true
imagePullPolicy: IfNotPresent
Expand Down
2 changes: 1 addition & 1 deletion deployments/vpu_plugin/base/intel-vpu-plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
image: intel/intel-vpu-plugin:devel
image: intel/intel-vpu-plugin:0.19.0
imagePullPolicy: IfNotPresent
securityContext:
readOnlyRootFilesystem: true
Expand Down

0 comments on commit 2edd51e

Please sign in to comment.