File tree Expand file tree Collapse file tree 9 files changed +308
-10
lines changed Expand file tree Collapse file tree 9 files changed +308
-10
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
description : Helm chart to deploy CAP Operator https://sap.github.io/cap-operator/
3
3
name : cap-operator
4
- version : 0.11.1
5
- appVersion : 0.11.1
4
+ version : 0.12.0
5
+ appVersion : 0.12.0
Original file line number Diff line number Diff line change 1
1
# cap-operator
2
2
3
- ![ Version: 0.11.1 ] ( https://img.shields.io/badge/Version-0.11.1 -informational?style=flat-square ) ![ AppVersion: 0.11.1 ] ( https://img.shields.io/badge/AppVersion-0.11.1 -informational?style=flat-square )
3
+ ![ Version: 0.12.0 ] ( https://img.shields.io/badge/Version-0.12.0 -informational?style=flat-square ) ![ AppVersion: 0.12.0 ] ( https://img.shields.io/badge/AppVersion-0.12.0 -informational?style=flat-square )
4
4
5
5
Helm chart to deploy CAP Operator https://sap.github.io/cap-operator/
6
6
@@ -19,10 +19,10 @@ Helm chart to deploy CAP Operator https://sap.github.io/cap-operator/
19
19
| topologySpreadConstraints | list | ` [] ` | Default topology spread constraints (can be overwritten on component level) |
20
20
| podLabels | object | ` {} ` | Additional pod labels for all components |
21
21
| podAnnotations | object | ` {} ` | Additional pod annotations for all components |
22
- | monitoring | object | ` {"enabled":false} ` | Monitoring configuration for all components |
22
+ | monitoring | object | ` {"enabled":false,"grafana":{"dashboard":{"configMapLabels":{"grafana_dashboard":"1"}}} } ` | Monitoring configuration for all components |
23
23
| monitoring.enabled | bool | ` false ` | Optionally enable Prometheus monitoring for all components (disabled by default) |
24
24
| monitoring.grafana | object | ` {"dashboard":{"configMapLabels":{"grafana_dashboard":"1"}}} ` | Grafana configuration |
25
- | monitoring.grafana.dashboard.configMapLabels | object | ` {"grafana_dashboard":"1"} ` | Labels for selecting ConfigMaps with dashboards in Grafana
25
+ | monitoring.grafana.dashboard.configMapLabels | object | ` {"grafana_dashboard":"1"} ` | Labels for selecting ConfigMaps with dashboards in Grafana |
26
26
| controller.replicas | int | ` 1 ` | Replicas |
27
27
| controller.image.repository | string | ` "ghcr.io/sap/cap-operator/controller" ` | Image repository |
28
28
| controller.image.tag | string | ` "" ` | Image tag |
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
3
3
kind : CustomResourceDefinition
4
4
metadata :
5
5
annotations :
6
- controller-gen.kubebuilder.io/version : v0.16.4
6
+ controller-gen.kubebuilder.io/version : v0.17.2
7
7
name : capapplications.sme.sap.com
8
8
spec :
9
9
group : sme.sap.com
57
57
type : object
58
58
btpAppName :
59
59
type : string
60
+ domainRefs :
61
+ items :
62
+ properties :
63
+ kind :
64
+ enum :
65
+ - Domain
66
+ - ClusterDomain
67
+ type : string
68
+ name :
69
+ type : string
70
+ required :
71
+ - kind
72
+ - name
73
+ type : object
74
+ type : array
60
75
domains :
61
76
properties :
62
77
dnsTarget :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
3
3
kind : CustomResourceDefinition
4
4
metadata :
5
5
annotations :
6
- controller-gen.kubebuilder.io/version : v0.16.4
6
+ controller-gen.kubebuilder.io/version : v0.17.2
7
7
name : capapplicationversions.sme.sap.com
8
8
spec :
9
9
group : sme.sap.com
45
45
items :
46
46
type : string
47
47
type : array
48
+ serviceExposures :
49
+ items :
50
+ properties :
51
+ routes :
52
+ items :
53
+ properties :
54
+ path :
55
+ type : string
56
+ port :
57
+ format : int32
58
+ type : integer
59
+ workloadName :
60
+ type : string
61
+ required :
62
+ - port
63
+ - workloadName
64
+ type : object
65
+ type : array
66
+ subDomain :
67
+ type : string
68
+ required :
69
+ - routes
70
+ - subDomain
71
+ type : object
72
+ type : array
48
73
tenantOperations :
49
74
properties :
50
75
deprovisioning :
@@ -1460,6 +1485,8 @@ spec:
1460
1485
runAsUser :
1461
1486
format : int64
1462
1487
type : integer
1488
+ seLinuxChangePolicy :
1489
+ type : string
1463
1490
seLinuxOptions :
1464
1491
properties :
1465
1492
level :
@@ -1654,6 +1681,8 @@ spec:
1654
1681
x-kubernetes-int-or-string : true
1655
1682
type : object
1656
1683
type : object
1684
+ restartPolicy :
1685
+ type : string
1657
1686
securityContext :
1658
1687
properties :
1659
1688
allowPrivilegeEscalation :
@@ -3839,6 +3868,8 @@ spec:
3839
3868
runAsUser :
3840
3869
format : int64
3841
3870
type : integer
3871
+ seLinuxChangePolicy :
3872
+ type : string
3842
3873
seLinuxOptions :
3843
3874
properties :
3844
3875
level :
@@ -3927,6 +3958,8 @@ spec:
3927
3958
x-kubernetes-int-or-string : true
3928
3959
type : object
3929
3960
type : object
3961
+ restartPolicy :
3962
+ type : string
3930
3963
securityContext :
3931
3964
properties :
3932
3965
allowPrivilegeEscalation :
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
3
3
kind : CustomResourceDefinition
4
4
metadata :
5
5
annotations :
6
- controller-gen.kubebuilder.io/version : v0.16.4
6
+ controller-gen.kubebuilder.io/version : v0.17.2
7
7
name : captenantoperations.sme.sap.com
8
8
spec :
9
9
group : sme.sap.com
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
3
3
kind : CustomResourceDefinition
4
4
metadata :
5
5
annotations :
6
- controller-gen.kubebuilder.io/version : v0.16.4
6
+ controller-gen.kubebuilder.io/version : v0.17.2
7
7
name : captenantoutputs.sme.sap.com
8
8
spec :
9
9
group : sme.sap.com
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
3
3
kind : CustomResourceDefinition
4
4
metadata :
5
5
annotations :
6
- controller-gen.kubebuilder.io/version : v0.16.4
6
+ controller-gen.kubebuilder.io/version : v0.17.2
7
7
name : captenants.sme.sap.com
8
8
spec :
9
9
group : sme.sap.com
Original file line number Diff line number Diff line change
1
+ ---
2
+ apiVersion : apiextensions.k8s.io/v1
3
+ kind : CustomResourceDefinition
4
+ metadata :
5
+ annotations :
6
+ controller-gen.kubebuilder.io/version : v0.17.2
7
+ name : clusterdomains.sme.sap.com
8
+ spec :
9
+ group : sme.sap.com
10
+ names :
11
+ kind : ClusterDomain
12
+ listKind : ClusterDomainList
13
+ plural : clusterdomains
14
+ shortNames :
15
+ - cldom
16
+ singular : clusterdomain
17
+ scope : Cluster
18
+ versions :
19
+ - additionalPrinterColumns :
20
+ - jsonPath : .metadata.creationTimestamp
21
+ name : Age
22
+ type : date
23
+ - jsonPath : .status.state
24
+ name : State
25
+ type : string
26
+ name : v1alpha1
27
+ schema :
28
+ openAPIV3Schema :
29
+ properties :
30
+ apiVersion :
31
+ type : string
32
+ kind :
33
+ type : string
34
+ metadata :
35
+ type : object
36
+ spec :
37
+ properties :
38
+ dnsMode :
39
+ enum :
40
+ - Node
41
+ - Wildcard
42
+ - Subdomain
43
+ type : string
44
+ dnsTarget :
45
+ pattern : ^[a-z0-9-.]+$
46
+ type : string
47
+ domain :
48
+ pattern : ^[a-z0-9-.]+$
49
+ type : string
50
+ ingressSelector :
51
+ additionalProperties :
52
+ type : string
53
+ type : object
54
+ tlsMode :
55
+ enum :
56
+ - Simple
57
+ - Mutual
58
+ type : string
59
+ required :
60
+ - dnsMode
61
+ - dnsTarget
62
+ - domain
63
+ - ingressSelector
64
+ - tlsMode
65
+ type : object
66
+ status :
67
+ properties :
68
+ conditions :
69
+ items :
70
+ properties :
71
+ lastTransitionTime :
72
+ format : date-time
73
+ type : string
74
+ message :
75
+ maxLength : 32768
76
+ type : string
77
+ observedGeneration :
78
+ format : int64
79
+ minimum : 0
80
+ type : integer
81
+ reason :
82
+ maxLength : 1024
83
+ minLength : 1
84
+ pattern : ^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$
85
+ type : string
86
+ status :
87
+ enum :
88
+ - " True"
89
+ - " False"
90
+ - Unknown
91
+ type : string
92
+ type :
93
+ maxLength : 316
94
+ pattern : ^([a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*/)?(([A-Za-z0-9][-A-Za-z0-9_.]*)?[A-Za-z0-9])$
95
+ type : string
96
+ required :
97
+ - lastTransitionTime
98
+ - message
99
+ - reason
100
+ - status
101
+ - type
102
+ type : object
103
+ type : array
104
+ observedGeneration :
105
+ format : int64
106
+ type : integer
107
+ state :
108
+ enum :
109
+ - " "
110
+ - Ready
111
+ - Error
112
+ - Processing
113
+ - Deleting
114
+ type : string
115
+ required :
116
+ - state
117
+ type : object
118
+ required :
119
+ - metadata
120
+ - spec
121
+ type : object
122
+ served : true
123
+ storage : true
124
+ subresources :
125
+ status : {}
You can’t perform that action at this time.
0 commit comments