Skip to content

Commit 5023b3f

Browse files
Merge pull request #2881 from wgahnagl/master-4.20
branching day tasks for 4.20 release
2 parents 7615cf0 + fccf979 commit 5023b3f

11 files changed

+29
-51
lines changed

.gitmodules

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[submodule "ovn-kubernetes"]
22
path = ovn-kubernetes
33
url = https://github.com/openshift/ovn-kubernetes
4-
branch = release-4.19
4+
branch = release-4.20
55
[submodule "containernetworking-plugins"]
66
path = containernetworking-plugins
77
url = https://github.com/openshift/containernetworking-plugins
8-
branch = release-4.19
8+
branch = release-4.20
99
[submodule "promu"]
1010
path = promu
1111
url = https://github.com/openshift/prometheus-promu
@@ -15,24 +15,24 @@
1515
[submodule "kubelet"]
1616
path = kubelet
1717
url = https://github.com/openshift/kubernetes
18-
branch = release-4.19
18+
branch = release-4.20
1919
[submodule "containerd"]
2020
path = containerd
2121
url = https://github.com/openshift/containerd
22-
branch = release-4.19
22+
branch = release-4.20
2323
[submodule "hcsshim"]
2424
path = hcsshim
2525
url = https://github.com/openshift/hcsshim
26-
branch = release-4.19
26+
branch = release-4.20
2727
[submodule "cloud-provider-azure"]
2828
path = cloud-provider-azure
2929
url = https://github.com/openshift/cloud-provider-azure
30-
branch = release-4.19
30+
branch = release-4.20
3131
[submodule "csi-proxy"]
3232
path = csi-proxy
3333
url = https://github.com/openshift/csi-proxy
34-
branch = release-4.19
34+
branch = release-4.20
3535
[submodule "cloud-provider-aws"]
3636
path = cloud-provider-aws
3737
url = https://github.com/openshift/cloud-provider-aws
38-
branch = release-4.19
38+
branch = release-4.20

Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,6 @@ RUN /usr/local/bin/user_setup
201201
ENTRYPOINT ["/usr/local/bin/entrypoint"]
202202

203203
# Used to tag the released image. Should be a semver.
204-
LABEL version="v10.19.0"
204+
LABEL version="v10.20.0"
205205

206206
USER ${USER_UID}

Containerfile.bundle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ LABEL name="openshift4-wincw/windows-machine-config-operator-bundle" \
1616
io.openshift.tags=""
1717

1818
# Used to tag the released image. Should be a semver.
19-
LABEL version="v10.19.0"
19+
LABEL version="v10.20.0"
2020
# Component to file bugs against
2121
LABEL com.redhat.component="Windows Containers"
2222

@@ -32,8 +32,8 @@ LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
3232
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3
3333

3434
LABEL distribution-scope=public
35-
LABEL release="10.19.0"
36-
LABEL url="https://docs.openshift.com/container-platform/4.19/windows_containers/index.html"
35+
LABEL release="10.20.0"
36+
LABEL url="https://docs.openshift.com/container-platform/4.20/windows_containers/index.html"
3737
LABEL vendor="Red Hat, Inc."
3838

3939
# Copy files to locations specified by labels.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To re-generate a bundle for another specific version without changing the standard setup, you can:
44
# - use the WMCO_VERSION as arg of the bundle target (e.g make bundle WMCO_VERSION=0.0.2)
55
# - use environment variables to overwrite this value (e.g export WMCO_VERSION=0.0.2)
6-
WMCO_VERSION ?= 10.19.0
6+
WMCO_VERSION ?= 10.20.0
77

88
# *_GIT_VERSION are the k8s versions. Any update to the build line could potentially require an update to the sed
99
# command in generate_k8s_version_commit() in hack/update_submodules.sh

build/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.23-openshift-4.19 as build
1+
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.23-openshift-4.20 as build
22

33
LABEL stage=build
44

build/Dockerfile.base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.23-openshift-4.19 as build
1+
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.23-openshift-4.20 as build
22
LABEL stage=build
33

44
# Silence go compliance shim output

build/Dockerfile.ci

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# building the operator from the PR source without using the operator-sdk.
44

55
# build stage for building binaries
6-
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.23-openshift-4.19 as build
6+
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.23-openshift-4.20 as build
77
LABEL stage=build
88
WORKDIR /build/
99

@@ -133,7 +133,7 @@ RUN make build-daemon
133133
#│ └── windows-exporter-webconfig.yaml
134134
#└── windows-instance-config-daemon.exe
135135

136-
FROM registry.ci.openshift.org/openshift/release:rhel-9-release-golang-1.23-openshift-4.19
136+
FROM registry.ci.openshift.org/openshift/release:rhel-9-release-golang-1.23-openshift-4.20
137137
LABEL stage=operator
138138

139139
WORKDIR /payload/

build/Dockerfile.wmco

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.23-openshift-4.19 as build
1+
FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.23-openshift-4.20 as build
22
LABEL stage=build
33

44
# Silence go compliance shim output

bundle.Dockerfile

Lines changed: 5 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,5 @@
11
FROM scratch
22

3-
# This block are standard Red Hat container labels
4-
LABEL name="openshift4-wincw/windows-machine-config-operator-bundle" \
5-
License="ASL 2.0" \
6-
io.k8s.display-name="Windows Machine Config Operator bundle" \
7-
io.k8s.description="Windows Machine Config Operator's OLM bundle image" \
8-
summary="Windows Machine Config Operator's OLM bundle image" \
9-
maintainer="Team Windows Containers <[email protected]>"
10-
11-
# These are three labels needed to control how the pipeline should handle this container image
12-
# This first label tells the pipeline that this is a bundle image and should be
13-
# delivered via an index image
14-
LABEL com.redhat.delivery.operator.bundle=true
15-
16-
# This second label tells the pipeline which versions of OpenShift the operator supports.
17-
# This is used to control which index images should include this operator.
18-
LABEL com.redhat.openshift.versions="=v4.19"
19-
20-
# This third label tells the pipeline that this operator should *also* be supported on OCP 4.4 and
21-
# earlier. It is used to control whether or not the pipeline should attempt to automatically
22-
# backport this content into the old appregistry format and upload it to the quay.io application
23-
# registry endpoints.
24-
LABEL com.redhat.delivery.backport=false
25-
26-
# This label gets replaced by render_templates, so it is safer to keep it on its own
27-
LABEL version="v0.0.0"
28-
29-
# This label maps to the brew build target
30-
LABEL com.redhat.component="windows-machine-config-operator-bundle-container"
31-
323
# Core bundle labels.
334
LABEL operators.operatorframework.io.bundle.mediatype.v1=registry+v1
345
LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
@@ -40,6 +11,11 @@ LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.32.0
4011
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
4112
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3
4213

14+
# Labels for testing.
15+
LABEL operators.operatorframework.io.test.mediatype.v1=scorecard+v1
16+
LABEL operators.operatorframework.io.test.config.v1=tests/scorecard/
17+
4318
# Copy files to locations specified by labels.
4419
COPY bundle/manifests /manifests/
4520
COPY bundle/metadata /metadata/
21+
COPY bundle/tests/scorecard /tests/scorecard/

bundle/manifests/windows-machine-config-operator.clusterserviceversion.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ metadata:
2727
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
2828
repository: https://github.com/openshift/windows-machine-config-operator
2929
support: Red Hat
30-
name: windows-machine-config-operator.v10.19.0
30+
name: windows-machine-config-operator.v10.20.0
3131
namespace: placeholder
3232
spec:
3333
apiservicedefinitions: {}
@@ -411,7 +411,9 @@ spec:
411411
- use
412412
serviceAccountName: windows-machine-config-operator
413413
deployments:
414-
- name: windows-machine-config-operator
414+
- label:
415+
name: windows-machine-config-operator
416+
name: windows-machine-config-operator
415417
spec:
416418
replicas: 1
417419
selector:
@@ -528,4 +530,4 @@ spec:
528530
minKubeVersion: 1.32.0
529531
provider:
530532
name: Red Hat
531-
version: 10.19.0
533+
version: 10.20.0

0 commit comments

Comments
 (0)