Skip to content

Commit aeec66f

Browse files
committed
Revert "[TMP] rollback operator-sdk to 4.11.3"
This reverts commit d178ad4.
1 parent d475496 commit aeec66f

File tree

56 files changed

+493
-603
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+493
-603
lines changed

buildchain/buildchain/versions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
CALICO_VERSION: str = "3.29.0"
2929
SALT_VERSION: str = "3002.9"
3030
CONTAINERD_VERSION: str = "1.6.36"
31-
NGINX_OPERATOR_VERSION: str = "4.11.3"
31+
NGINX_OPERATOR_VERSION: str = "4.12.0"
3232

3333
CONTAINERD_RELEASE: str = "1"
3434
SOSREPORT_RELEASE: str = "2"
@@ -190,8 +190,8 @@ def _version_prefix(version: str, prefix: str = "v") -> str:
190190
),
191191
Image(
192192
name="nginx-ingress-controller",
193-
version="v1.11.3",
194-
digest="sha256:d56f135b6462cfc476447cfe564b83a45e8bb7da2774963b00d12161112270b7",
193+
version="v1.12.0",
194+
digest="sha256:e6b8de175acda6ca913891f0f727bca4527e797d52688cbe9fec9040d6f6b6fa",
195195
),
196196
Image(
197197
name="node-exporter",

catalog-source/catalog/nginx-operator/bundles/v4.11.3.yaml renamed to catalog-source/catalog/nginx-operator/bundles/v4.12.0.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
image: registry.metalk8s.lan/metalk8s-MK8S_VERSION_STUB/nginx-operator-bundle:v4.11.3
3-
name: nginx-operator.v4.11.3
2+
image: registry.metalk8s.lan/metalk8s-MK8S_VERSION_STUB/nginx-operator-bundle:v4.12.0
3+
name: nginx-operator.v4.12.0
44
package: nginx-operator
55
properties:
66
- type: olm.gvk
@@ -11,7 +11,7 @@ properties:
1111
- type: olm.package
1212
value:
1313
packageName: nginx-operator
14-
version: 4.11.3
14+
version: 4.12.0
1515
- type: olm.csv.metadata
1616
value:
1717
annotations:
@@ -519,7 +519,7 @@ properties:
519519
}
520520
]
521521
capabilities: Basic Install
522-
createdAt: "2025-02-12T09:00:14Z"
522+
createdAt: "2025-01-30T15:00:57Z"
523523
operators.operatorframework.io/builder: operator-sdk-v1.39.1
524524
operators.operatorframework.io/project_layout: helm.sdk.operatorframework.io/v1
525525
apiServiceDefinitions: {}
@@ -556,8 +556,8 @@ properties:
556556
name: scality
557557
url: scality.com
558558
relatedImages:
559-
- image: registry.metalk8s.lan/metalk8s-MK8S_VERSION_STUB/nginx-operator-bundle:v4.11.3
559+
- image: registry.metalk8s.lan/metalk8s-MK8S_VERSION_STUB/nginx-operator-bundle:v4.12.0
560560
name: ""
561-
- image: registry.metalk8s.lan/metalk8s-MK8S_VERSION_STUB/nginx-operator:v4.11.3
561+
- image: registry.metalk8s.lan/metalk8s-MK8S_VERSION_STUB/nginx-operator:v4.12.0
562562
name: ""
563563
schema: olm.bundle

catalog-source/catalog/nginx-operator/channels/stable.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ schema: olm.channel
33
package: nginx-operator
44
name: stable
55
entries:
6-
- name: nginx-operator.v4.11.3
6+
- name: nginx-operator.v4.12.0

nginx-operator/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
# We keep this aligned with the chart version
88
# Will also be set in versions.py
9-
VERSION ?= 4.11.3
9+
VERSION ?= 4.12.0
1010

1111
# CHANNELS define the bundle channels used in the bundle.
1212
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")

nginx-operator/bundle.Dockerfile

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
ARG BUILDER_IMG=alpine:latest
2+
FROM ${BUILDER_IMG} AS builder
3+
4+
# Copy files to locations specified by labels.
5+
COPY bundle/manifests /manifests/
6+
COPY bundle/metadata /metadata/
7+
COPY bundle/tests/scorecard /tests/scorecard/
8+
9+
# Replace MK8S_VERSION_STUB with the actual version.
10+
ARG METALK8S_VERSION=MK8S_VERSION_STUB
11+
RUN sed -i "s/MK8S_VERSION_STUB/${METALK8S_VERSION}/g" /manifests/nginx-operator.clusterserviceversion.yaml
12+
113
FROM scratch
214

315
# Core bundle labels.
@@ -14,7 +26,7 @@ LABEL operators.operatorframework.io.metrics.project_layout=helm.sdk.operatorfra
1426
LABEL operators.operatorframework.io.test.mediatype.v1=scorecard+v1
1527
LABEL operators.operatorframework.io.test.config.v1=tests/scorecard/
1628

17-
# Copy files to locations specified by labels.
18-
COPY bundle/manifests /manifests/
19-
COPY bundle/metadata /metadata/
20-
COPY bundle/tests/scorecard /tests/scorecard/
29+
# Copy files from builder to locations specified by labels.
30+
COPY --from=builder /manifests /manifests/
31+
COPY --from=builder /metadata /metadata/
32+
COPY --from=builder /tests/scorecard /tests/scorecard/

nginx-operator/bundle/manifests/nginx-operator.clusterserviceversion.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -506,10 +506,10 @@ metadata:
506506
}
507507
]
508508
capabilities: Basic Install
509-
createdAt: "2025-02-12T09:00:14Z"
509+
createdAt: "2025-01-30T15:00:57Z"
510510
operators.operatorframework.io/builder: operator-sdk-v1.39.1
511511
operators.operatorframework.io/project_layout: helm.sdk.operatorframework.io/v1
512-
name: nginx-operator.v4.11.3
512+
name: nginx-operator.v4.12.0
513513
namespace: placeholder
514514
spec:
515515
apiservicedefinitions: {}
@@ -660,7 +660,7 @@ spec:
660660
- --leader-elect
661661
- --leader-election-id=nginx-operator
662662
- --health-probe-bind-address=:8081
663-
image: registry.metalk8s.lan/metalk8s-MK8S_VERSION_STUB/nginx-operator:v4.11.3
663+
image: registry.metalk8s.lan/metalk8s-MK8S_VERSION_STUB/nginx-operator:v4.12.0
664664
livenessProbe:
665665
httpGet:
666666
path: /healthz
@@ -762,4 +762,4 @@ spec:
762762
provider:
763763
name: scality
764764
url: scality.com
765-
version: 4.11.3
765+
version: 4.12.0

nginx-operator/config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ kind: Kustomization
55
images:
66
- name: controller
77
newName: registry.metalk8s.lan/metalk8s-MK8S_VERSION_STUB/nginx-operator
8-
newTag: v4.11.3
8+
newTag: v4.12.0
Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
annotations:
22
artifacthub.io/changes: |
3-
- Update Ingress-Nginx version controller-v1.11.3
3+
- 'CI: Fix chart testing. (#12258)'
4+
- Update Ingress-Nginx version controller-v1.12.0
45
artifacthub.io/prerelease: "false"
56
apiVersion: v2
6-
appVersion: 1.11.3
7+
appVersion: 1.12.0
78
description: Ingress controller for Kubernetes using NGINX as a reverse proxy and
89
load balancer
910
home: https://github.com/kubernetes/ingress-nginx
@@ -15,11 +16,9 @@ kubeVersion: '>=1.21.0-0'
1516
maintainers:
1617
- name: cpanato
1718
- name: Gacko
18-
- name: puerco
19-
- name: rikatz
2019
- name: strongjz
2120
- name: tao12345666333
2221
name: ingress-nginx
2322
sources:
2423
- https://github.com/kubernetes/ingress-nginx
25-
version: 4.11.3
24+
version: 4.12.0
Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
# See the OWNERS docs: https://www.kubernetes.dev/docs/guide/owners
22

3-
approvers:
4-
- ingress-nginx-helm-maintainers
5-
6-
reviewers:
7-
- ingress-nginx-helm-reviewers
8-
93
labels:
104
- area/helm

0 commit comments

Comments
 (0)