Skip to content
This repository was archived by the owner on May 24, 2023. It is now read-only.

Commit fa8a6b5

Browse files
committed
Update Operator SDK to v1.17.0
1 parent ebce5b7 commit fa8a6b5

File tree

7 files changed

+31
-18
lines changed

7 files changed

+31
-18
lines changed

Diff for: bundle.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
77
LABEL operators.operatorframework.io.bundle.package.v1=nginx-ingress-operator
88
LABEL operators.operatorframework.io.bundle.channels.v1=alpha
99
LABEL operators.operatorframework.io.bundle.channel.default.v1=alpha
10-
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.16.0
10+
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.17.0
1111
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
1212
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3
1313

Diff for: bundle/manifests/nginx-ingress-operator.clusterserviceversion.yaml

+9-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ metadata:
3030
createdAt: placeholder
3131
description: The NGINX Ingress Operator is a Kubernetes/OpenShift component which
3232
deploys and manages one or more NGINX/NGINX Plus Ingress Controllers
33-
operators.operatorframework.io/builder: operator-sdk-v1.16.0
33+
operators.operatorframework.io/builder: operator-sdk-v1.17.0
3434
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
3535
repository: https://github.com/nginxinc/nginx-ingress-operator
3636
support: NGINX Inc.
@@ -364,14 +364,20 @@ spec:
364364
- --secure-listen-address=0.0.0.0:8443
365365
- --upstream=http://127.0.0.1:8080/
366366
- --logtostderr=true
367-
- --v=10
367+
- --v=0
368368
image: gcr.io/kubebuilder/kube-rbac-proxy:v0.8.0
369369
name: kube-rbac-proxy
370370
ports:
371371
- containerPort: 8443
372372
name: https
373373
protocol: TCP
374-
resources: {}
374+
resources:
375+
limits:
376+
cpu: 500m
377+
memory: 128Mi
378+
requests:
379+
cpu: 5m
380+
memory: 64Mi
375381
- args:
376382
- --health-probe-bind-address=:8081
377383
- --metrics-bind-address=127.0.0.1:8080

Diff for: bundle/metadata/annotations.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ annotations:
66
operators.operatorframework.io.bundle.package.v1: nginx-ingress-operator
77
operators.operatorframework.io.bundle.channels.v1: alpha
88
operators.operatorframework.io.bundle.channel.default.v1: alpha
9-
operators.operatorframework.io.metrics.builder: operator-sdk-v1.16.0
9+
operators.operatorframework.io.metrics.builder: operator-sdk-v1.17.0
1010
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
1111
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v3
1212

Diff for: bundle/tests/scorecard/config.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ stages:
88
- entrypoint:
99
- scorecard-test
1010
- basic-check-spec
11-
image: quay.io/operator-framework/scorecard-test:v1.15.0
11+
image: quay.io/operator-framework/scorecard-test:v1.17.0
1212
labels:
1313
suite: basic
1414
test: basic-check-spec-test
@@ -18,7 +18,7 @@ stages:
1818
- entrypoint:
1919
- scorecard-test
2020
- olm-bundle-validation
21-
image: quay.io/operator-framework/scorecard-test:v1.15.0
21+
image: quay.io/operator-framework/scorecard-test:v1.17.0
2222
labels:
2323
suite: olm
2424
test: olm-bundle-validation-test
@@ -28,7 +28,7 @@ stages:
2828
- entrypoint:
2929
- scorecard-test
3030
- olm-crds-have-validation
31-
image: quay.io/operator-framework/scorecard-test:v1.15.0
31+
image: quay.io/operator-framework/scorecard-test:v1.17.0
3232
labels:
3333
suite: olm
3434
test: olm-crds-have-validation-test
@@ -38,7 +38,7 @@ stages:
3838
- entrypoint:
3939
- scorecard-test
4040
- olm-crds-have-resources
41-
image: quay.io/operator-framework/scorecard-test:v1.15.0
41+
image: quay.io/operator-framework/scorecard-test:v1.17.0
4242
labels:
4343
suite: olm
4444
test: olm-crds-have-resources-test
@@ -48,7 +48,7 @@ stages:
4848
- entrypoint:
4949
- scorecard-test
5050
- olm-spec-descriptors
51-
image: quay.io/operator-framework/scorecard-test:v1.15.0
51+
image: quay.io/operator-framework/scorecard-test:v1.17.0
5252
labels:
5353
suite: olm
5454
test: olm-spec-descriptors-test
@@ -58,7 +58,7 @@ stages:
5858
- entrypoint:
5959
- scorecard-test
6060
- olm-status-descriptors
61-
image: quay.io/operator-framework/scorecard-test:v1.15.0
61+
image: quay.io/operator-framework/scorecard-test:v1.17.0
6262
labels:
6363
suite: olm
6464
test: olm-status-descriptors-test

Diff for: config/default/manager_auth_proxy_patch.yaml

+8-1
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,18 @@ spec:
1515
- "--secure-listen-address=0.0.0.0:8443"
1616
- "--upstream=http://127.0.0.1:8080/"
1717
- "--logtostderr=true"
18-
- "--v=10"
18+
- "--v=0"
1919
ports:
2020
- containerPort: 8443
2121
protocol: TCP
2222
name: https
23+
resources:
24+
limits:
25+
cpu: 500m
26+
memory: 128Mi
27+
requests:
28+
cpu: 5m
29+
memory: 64Mi
2330
- name: manager
2431
args:
2532
- "--health-probe-bind-address=:8081"

Diff for: config/scorecard/patches/basic.config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
entrypoint:
55
- scorecard-test
66
- basic-check-spec
7-
image: quay.io/operator-framework/scorecard-test:v1.15.0
7+
image: quay.io/operator-framework/scorecard-test:v1.17.0
88
labels:
99
suite: basic
1010
test: basic-check-spec-test

Diff for: config/scorecard/patches/olm.config.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
entrypoint:
55
- scorecard-test
66
- olm-bundle-validation
7-
image: quay.io/operator-framework/scorecard-test:v1.15.0
7+
image: quay.io/operator-framework/scorecard-test:v1.17.0
88
labels:
99
suite: olm
1010
test: olm-bundle-validation-test
@@ -14,7 +14,7 @@
1414
entrypoint:
1515
- scorecard-test
1616
- olm-crds-have-validation
17-
image: quay.io/operator-framework/scorecard-test:v1.15.0
17+
image: quay.io/operator-framework/scorecard-test:v1.17.0
1818
labels:
1919
suite: olm
2020
test: olm-crds-have-validation-test
@@ -24,7 +24,7 @@
2424
entrypoint:
2525
- scorecard-test
2626
- olm-crds-have-resources
27-
image: quay.io/operator-framework/scorecard-test:v1.15.0
27+
image: quay.io/operator-framework/scorecard-test:v1.17.0
2828
labels:
2929
suite: olm
3030
test: olm-crds-have-resources-test
@@ -34,7 +34,7 @@
3434
entrypoint:
3535
- scorecard-test
3636
- olm-spec-descriptors
37-
image: quay.io/operator-framework/scorecard-test:v1.15.0
37+
image: quay.io/operator-framework/scorecard-test:v1.17.0
3838
labels:
3939
suite: olm
4040
test: olm-spec-descriptors-test
@@ -44,7 +44,7 @@
4444
entrypoint:
4545
- scorecard-test
4646
- olm-status-descriptors
47-
image: quay.io/operator-framework/scorecard-test:v1.15.0
47+
image: quay.io/operator-framework/scorecard-test:v1.17.0
4848
labels:
4949
suite: olm
5050
test: olm-status-descriptors-test

0 commit comments

Comments
 (0)