-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathstackable-operators.yaml
More file actions
73 lines (73 loc) · 2.14 KB
/
Copy pathstackable-operators.yaml
File metadata and controls
73 lines (73 loc) · 2.14 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
apiVersion: argoproj.io/v1alpha1
kind: ApplicationSet
metadata:
name: stackable-operators
spec:
goTemplate: true
generators:
- matrix:
generators:
- list:
elements:
- operator: commons
- operator: listener
- operator: secret
- operator: airflow
- operator: druid
- operator: hbase
- operator: hdfs
- operator: hive
- operator: kafka
- operator: nifi
- operator: opa
- operator: opensearch
- operator: spark-k8s
- operator: superset
- operator: trino
- operator: zookeeper
- list:
elements:
- cluster: demo
server: https://kubernetes.default.svc
targetRevision: "{{ stackableReleaseVersion }}"
# {% raw %}
template:
metadata:
name: "{{ .operator }}-operator"
spec:
project: stackable-operators
ignoreDifferences:
# mitigating: https://github.com/stackabletech/hdfs-operator/issues/626
- group: "apiextensions.k8s.io"
kind: "CustomResourceDefinition"
jqPathExpressions:
- .spec.names.categories | select(. == [])
- .spec.names.shortNames | select(. == [])
- .spec.versions[].additionalPrinterColumns | select(. == [])
source:
repoURL: "oci.stackable.tech"
targetRevision: "{{ .targetRevision }}"
chart: "sdp-charts/{{ .operator }}-operator"
helm:
releaseName: "{{ .operator }}-operator"
destination:
server: "{{ .server }}"
namespace: stackable-operators
syncPolicy:
syncOptions:
- CreateNamespace=true
- ServerSideApply=true
- RespectIgnoreDifferences=true
automated:
selfHeal: true
prune: true
templatePatch: |
{{- if eq .operator "listener" }}
spec:
source:
helm:
values: |
preset: stable-nodes
{{- end }}
# {% endraw %}