Skip to content

Commit 5e43243

Browse files
committed
[Misc] helm: Chart version updated
Prep for next release
1 parent 7193274 commit 5e43243

9 files changed

+308
-10
lines changed

chart/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
22
description: Helm chart to deploy CAP Operator https://sap.github.io/cap-operator/
33
name: cap-operator
4-
version: 0.11.1
5-
appVersion: 0.11.1
4+
version: 0.12.0
5+
appVersion: 0.12.0

chart/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# cap-operator
22

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)
44

55
Helm chart to deploy CAP Operator https://sap.github.io/cap-operator/
66

@@ -19,10 +19,10 @@ Helm chart to deploy CAP Operator https://sap.github.io/cap-operator/
1919
| topologySpreadConstraints | list | `[]` | Default topology spread constraints (can be overwritten on component level) |
2020
| podLabels | object | `{}` | Additional pod labels for all components |
2121
| 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 |
2323
| monitoring.enabled | bool | `false` | Optionally enable Prometheus monitoring for all components (disabled by default) |
2424
| 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 |
2626
| controller.replicas | int | `1` | Replicas |
2727
| controller.image.repository | string | `"ghcr.io/sap/cap-operator/controller"` | Image repository |
2828
| controller.image.tag | string | `""` | Image tag |

chart/crds/sme.sap.com_capapplications.yaml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.16.4
6+
controller-gen.kubebuilder.io/version: v0.17.2
77
name: capapplications.sme.sap.com
88
spec:
99
group: sme.sap.com
@@ -57,6 +57,21 @@ spec:
5757
type: object
5858
btpAppName:
5959
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
6075
domains:
6176
properties:
6277
dnsTarget:

chart/crds/sme.sap.com_capapplicationversions.yaml

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.16.4
6+
controller-gen.kubebuilder.io/version: v0.17.2
77
name: capapplicationversions.sme.sap.com
88
spec:
99
group: sme.sap.com
@@ -45,6 +45,31 @@ spec:
4545
items:
4646
type: string
4747
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
4873
tenantOperations:
4974
properties:
5075
deprovisioning:
@@ -1460,6 +1485,8 @@ spec:
14601485
runAsUser:
14611486
format: int64
14621487
type: integer
1488+
seLinuxChangePolicy:
1489+
type: string
14631490
seLinuxOptions:
14641491
properties:
14651492
level:
@@ -1654,6 +1681,8 @@ spec:
16541681
x-kubernetes-int-or-string: true
16551682
type: object
16561683
type: object
1684+
restartPolicy:
1685+
type: string
16571686
securityContext:
16581687
properties:
16591688
allowPrivilegeEscalation:
@@ -3839,6 +3868,8 @@ spec:
38393868
runAsUser:
38403869
format: int64
38413870
type: integer
3871+
seLinuxChangePolicy:
3872+
type: string
38423873
seLinuxOptions:
38433874
properties:
38443875
level:
@@ -3927,6 +3958,8 @@ spec:
39273958
x-kubernetes-int-or-string: true
39283959
type: object
39293960
type: object
3961+
restartPolicy:
3962+
type: string
39303963
securityContext:
39313964
properties:
39323965
allowPrivilegeEscalation:

chart/crds/sme.sap.com_captenantoperations.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.16.4
6+
controller-gen.kubebuilder.io/version: v0.17.2
77
name: captenantoperations.sme.sap.com
88
spec:
99
group: sme.sap.com

chart/crds/sme.sap.com_captenantoutputs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.16.4
6+
controller-gen.kubebuilder.io/version: v0.17.2
77
name: captenantoutputs.sme.sap.com
88
spec:
99
group: sme.sap.com

chart/crds/sme.sap.com_captenants.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.16.4
6+
controller-gen.kubebuilder.io/version: v0.17.2
77
name: captenants.sme.sap.com
88
spec:
99
group: sme.sap.com
Lines changed: 125 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
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: {}

0 commit comments

Comments
 (0)