File tree Expand file tree Collapse file tree 7 files changed +30
-5
lines changed Expand file tree Collapse file tree 7 files changed +30
-5
lines changed Original file line number Diff line number Diff line change 22
22
* .swp
23
23
* .swo
24
24
* ~
25
- .local
25
+ .local
26
+ testbin
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
5
5
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
6
6
LABEL operators.operatorframework.io.bundle.package.v1=slack-operator
7
7
LABEL operators.operatorframework.io.bundle.channels.v1=alpha
8
- LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.5.0
8
+ LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.6.1
9
9
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
10
10
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3
11
11
LABEL operators.operatorframework.io.test.config.v1=tests/scorecard/
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ metadata:
22
22
}
23
23
]
24
24
capabilities : Basic Install
25
- operators.operatorframework.io/builder : operator-sdk-v1.5.0
25
+ operators.operatorframework.io/builder : operator-sdk-v1.6.1
26
26
operators.operatorframework.io/project_layout : go.kubebuilder.io/v3
27
27
name : slack-operator.v0.0.23
28
28
namespace : placeholder
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ annotations:
4
4
operators.operatorframework.io.bundle.mediatype.v1 : registry+v1
5
5
operators.operatorframework.io.bundle.metadata.v1 : metadata/
6
6
operators.operatorframework.io.bundle.package.v1 : slack-operator
7
- operators.operatorframework.io.metrics.builder : operator-sdk-v1.5.0
7
+ operators.operatorframework.io.metrics.builder : operator-sdk-v1.6.1
8
8
operators.operatorframework.io.metrics.mediatype.v1 : metrics+v1
9
9
operators.operatorframework.io.metrics.project_layout : go.kubebuilder.io/v3
10
10
operators.operatorframework.io.test.config.v1 : tests/scorecard/
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ metadata:
4
4
annotations :
5
5
alm-examples : ' []'
6
6
capabilities : Basic Install
7
- operators.operatorframework.io/builder : operator-sdk-v1.5.0
7
+ operators.operatorframework.io/builder : operator-sdk-v1.6.1
8
8
operators.operatorframework.io/project_layout : go.kubebuilder.io/v3
9
9
name : slack-operator.vX.Y.Z
10
10
namespace : placeholder
Original file line number Diff line number Diff line change @@ -2,3 +2,23 @@ resources:
2
2
- ../default
3
3
- ../samples
4
4
- ../scorecard
5
+
6
+ # [WEBHOOK] To enable webhooks, uncomment all the sections with [WEBHOOK] prefix.
7
+ # Do NOT uncomment sections with prefix [CERTMANAGER], as OLM does not support cert-manager.
8
+ # These patches remove the unnecessary "cert" volume and its manager container volumeMount.
9
+ # patchesJson6902:
10
+ # - target:
11
+ # group: apps
12
+ # version: v1
13
+ # kind: Deployment
14
+ # name: controller-manager
15
+ # namespace: system
16
+ # patch: |-
17
+ # # Remove the manager container's "cert" volumeMount, since OLM will create and mount a set of certs.
18
+ # # Update the indices in this path if adding or removing containers/volumeMounts in the manager's Deployment.
19
+ # - op: remove
20
+ # path: /spec/template/spec/containers/1/volumeMounts/0
21
+ # # Remove the "cert" volume, since OLM will create and mount a set of certs.
22
+ # # Update the indices in this path if adding or removing volumes in the manager's Deployment.
23
+ # - op: remove
24
+ # path: /spec/template/spec/volumes/0
Original file line number Diff line number Diff line change 11
11
endpoints :
12
12
- path : /metrics
13
13
port : https
14
+ scheme : https
15
+ bearerTokenFile : /var/run/secrets/kubernetes.io/serviceaccount/token
16
+ tlsConfig :
17
+ insecureSkipVerify : true
14
18
selector :
15
19
matchLabels :
16
20
control-plane : controller-manager
You can’t perform that action at this time.
0 commit comments