-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkustomization.yaml
More file actions
46 lines (42 loc) · 1.11 KB
/
kustomization.yaml
File metadata and controls
46 lines (42 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: strimzi
resources:
- https://github.com/strimzi/strimzi-kafka-operator/releases/download/0.51.0/strimzi-cluster-operator-0.51.0.yaml
- namespace.yaml
- clusterrolebindings.yaml
labels:
- pairs:
app.kubernetes.io/part-of: streamshub-developer-quickstart
includeSelectors: false
patches:
- target:
kind: RoleBinding
patch: |-
- op: replace
path: /subjects/0/namespace
value: strimzi
- target:
kind: ClusterRoleBinding
patch: |-
- op: replace
path: /subjects/0/namespace
value: strimzi
# Watch all namespaces for Kafka resources
- target:
kind: Deployment
name: strimzi-cluster-operator
patch: |-
apiVersion: apps/v1
kind: Deployment
metadata:
name: strimzi-cluster-operator
spec:
template:
spec:
containers:
- name: strimzi-cluster-operator
env:
- name: STRIMZI_NAMESPACE
value: '*'
valueFrom: null