Skip to content

Commit 6a2337c

Browse files
[Misc] values.schema.json update and version update to 0.11.0 (#78)
1 parent cd548cb commit 6a2337c

File tree

6 files changed

+444
-203
lines changed

6 files changed

+444
-203
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). The format is based on [Keep a Changelog](http://keepachangelog.com/).
44

5+
## Version 0.11.0 - 16-December-2025
6+
7+
### Added
8+
9+
- Updated `values.schema.json` to align with the latest CAP Operator version `v0.23.0` and BTP Service Operator version `v0.9.4`.
10+
- Dependencies updated.
11+
512
## Version 0.10.0 - 03-November-2025
613

714
### Added

files/chart/values.schema.json

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,12 @@
350350
"restartPolicy": {
351351
"type": "string"
352352
},
353+
"restartPolicyRules": {
354+
"items": {
355+
"$ref": "#/$defs/ContainerRestartRule"
356+
},
357+
"type": "array"
358+
},
353359
"securityContext": {
354360
"$ref": "#/$defs/SecurityContext"
355361
},
@@ -432,6 +438,33 @@
432438
],
433439
"type": "object"
434440
},
441+
"ContainerRestartRule": {
442+
"additionalProperties": false,
443+
"properties": {
444+
"action": {
445+
"type": "string"
446+
},
447+
"exitCodes": {
448+
"$ref": "#/$defs/ContainerRestartRuleOnExitCodes"
449+
}
450+
},
451+
"type": "object"
452+
},
453+
"ContainerRestartRuleOnExitCodes": {
454+
"additionalProperties": false,
455+
"properties": {
456+
"operator": {
457+
"type": "string"
458+
},
459+
"values": {
460+
"items": {
461+
"type": "integer"
462+
},
463+
"type": "array"
464+
}
465+
},
466+
"type": "object"
467+
},
435468
"CredentialsRotationPolicy": {
436469
"additionalProperties": false,
437470
"properties": {
@@ -516,6 +549,9 @@
516549
},
517550
"type": "object"
518551
},
552+
"podDisruptionBudget": {
553+
"$ref": "#/$defs/PodDisruptionBudgetSpec"
554+
},
519555
"podSecurityContext": {
520556
"$ref": "#/$defs/PodSecurityContext"
521557
},
@@ -717,6 +753,9 @@
717753
"fieldRef": {
718754
"$ref": "#/$defs/ObjectFieldSelector"
719755
},
756+
"fileKeyRef": {
757+
"$ref": "#/$defs/FileKeySelector"
758+
},
720759
"resourceFieldRef": {
721760
"$ref": "#/$defs/ResourceFieldSelector"
722761
},
@@ -785,6 +824,29 @@
785824
"properties": {},
786825
"type": "object"
787826
},
827+
"FileKeySelector": {
828+
"additionalProperties": false,
829+
"properties": {
830+
"key": {
831+
"type": "string"
832+
},
833+
"optional": {
834+
"type": "boolean"
835+
},
836+
"path": {
837+
"type": "string"
838+
},
839+
"volumeName": {
840+
"type": "string"
841+
}
842+
},
843+
"required": [
844+
"volumeName",
845+
"path",
846+
"key"
847+
],
848+
"type": "object"
849+
},
788850
"FlexVolumeSource": {
789851
"additionalProperties": false,
790852
"properties": {
@@ -1679,6 +1741,48 @@
16791741
},
16801742
"type": "object"
16811743
},
1744+
"PodCertificateProjection": {
1745+
"additionalProperties": false,
1746+
"properties": {
1747+
"certificateChainPath": {
1748+
"type": "string"
1749+
},
1750+
"credentialBundlePath": {
1751+
"type": "string"
1752+
},
1753+
"keyPath": {
1754+
"type": "string"
1755+
},
1756+
"keyType": {
1757+
"type": "string"
1758+
},
1759+
"maxExpirationSeconds": {
1760+
"type": "integer"
1761+
},
1762+
"signerName": {
1763+
"type": "string"
1764+
}
1765+
},
1766+
"type": "object"
1767+
},
1768+
"PodDisruptionBudgetSpec": {
1769+
"additionalProperties": false,
1770+
"properties": {
1771+
"maxUnavailable": {
1772+
"$ref": "#/$defs/IntOrString"
1773+
},
1774+
"minAvailable": {
1775+
"$ref": "#/$defs/IntOrString"
1776+
},
1777+
"selector": {
1778+
"$ref": "#/$defs/LabelSelector"
1779+
},
1780+
"unhealthyPodEvictionPolicy": {
1781+
"type": "string"
1782+
}
1783+
},
1784+
"type": "object"
1785+
},
16821786
"PodSecurityContext": {
16831787
"additionalProperties": false,
16841788
"properties": {
@@ -2626,6 +2730,9 @@
26262730
"downwardAPI": {
26272731
"$ref": "#/$defs/DownwardAPIProjection"
26282732
},
2733+
"podCertificate": {
2734+
"$ref": "#/$defs/PodCertificateProjection"
2735+
},
26292736
"secret": {
26302737
"$ref": "#/$defs/SecretProjection"
26312738
},

hack/go.mod

Lines changed: 43 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module github.tools.sap/erp4sme/cap-operator-tools/hack
22

3-
go 1.25.0
3+
go 1.25.5
44

55
require (
6-
github.com/SAP/sap-btp-service-operator v0.7.7
6+
github.com/SAP/sap-btp-service-operator v0.9.4
77
github.com/invopop/jsonschema v0.13.0
8-
github.com/sap/cap-operator v0.19.0
8+
github.com/sap/cap-operator v0.23.0
99
)
1010

1111
require (
@@ -14,56 +14,69 @@ require (
1414
github.com/buger/jsonparser v1.1.1 // indirect
1515
github.com/cespare/xxhash/v2 v2.3.0 // indirect
1616
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
17-
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
17+
github.com/emicklei/go-restful/v3 v3.13.0 // indirect
1818
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
1919
github.com/fsnotify/fsnotify v1.9.0 // indirect
2020
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
2121
github.com/go-logr/logr v1.4.3 // indirect
22-
github.com/go-openapi/jsonpointer v0.21.2 // indirect
23-
github.com/go-openapi/jsonreference v0.21.0 // indirect
24-
github.com/go-openapi/swag v0.23.1 // indirect
22+
github.com/go-openapi/jsonpointer v0.22.4 // indirect
23+
github.com/go-openapi/jsonreference v0.21.4 // indirect
24+
github.com/go-openapi/swag v0.25.4 // indirect
25+
github.com/go-openapi/swag/cmdutils v0.25.4 // indirect
26+
github.com/go-openapi/swag/conv v0.25.4 // indirect
27+
github.com/go-openapi/swag/fileutils v0.25.4 // indirect
28+
github.com/go-openapi/swag/jsonname v0.25.4 // indirect
29+
github.com/go-openapi/swag/jsonutils v0.25.4 // indirect
30+
github.com/go-openapi/swag/loading v0.25.4 // indirect
31+
github.com/go-openapi/swag/mangling v0.25.4 // indirect
32+
github.com/go-openapi/swag/netutils v0.25.4 // indirect
33+
github.com/go-openapi/swag/stringutils v0.25.4 // indirect
34+
github.com/go-openapi/swag/typeutils v0.25.4 // indirect
35+
github.com/go-openapi/swag/yamlutils v0.25.4 // indirect
2536
github.com/gogo/protobuf v1.3.2 // indirect
2637
github.com/google/btree v1.1.3 // indirect
27-
github.com/google/gnostic-models v0.7.0 // indirect
38+
github.com/google/gnostic-models v0.7.1 // indirect
2839
github.com/google/go-cmp v0.7.0 // indirect
2940
github.com/google/uuid v1.6.0 // indirect
3041
github.com/josharian/intern v1.0.0 // indirect
31-
github.com/json-iterator/go v1.1.12 // indirect
32-
github.com/mailru/easyjson v0.9.0 // indirect
42+
github.com/json-iterator/go v1.1.13-0.20220915233716-71ac16282d12 // indirect
43+
github.com/mailru/easyjson v0.9.1 // indirect
3344
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
3445
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
3546
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
36-
github.com/prometheus/client_golang v1.23.0 // indirect
47+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
48+
github.com/prometheus/client_golang v1.23.2 // indirect
3749
github.com/prometheus/client_model v0.6.2 // indirect
38-
github.com/prometheus/common v0.65.0 // indirect
39-
github.com/prometheus/procfs v0.17.0 // indirect
40-
github.com/spf13/pflag v1.0.7 // indirect
50+
github.com/prometheus/common v0.67.4 // indirect
51+
github.com/prometheus/procfs v0.19.2 // indirect
52+
github.com/spf13/pflag v1.0.10 // indirect
4153
github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect
4254
github.com/x448/float16 v0.8.4 // indirect
43-
go.yaml.in/yaml/v2 v2.4.2 // indirect
55+
go.yaml.in/yaml/v2 v2.4.3 // indirect
4456
go.yaml.in/yaml/v3 v3.0.4 // indirect
45-
golang.org/x/net v0.43.0 // indirect
46-
golang.org/x/oauth2 v0.30.0 // indirect
47-
golang.org/x/sync v0.16.0 // indirect
48-
golang.org/x/sys v0.35.0 // indirect
49-
golang.org/x/term v0.34.0 // indirect
50-
golang.org/x/text v0.28.0 // indirect
51-
golang.org/x/time v0.12.0 // indirect
57+
golang.org/x/net v0.48.0 // indirect
58+
golang.org/x/oauth2 v0.34.0 // indirect
59+
golang.org/x/sync v0.19.0 // indirect
60+
golang.org/x/sys v0.39.0 // indirect
61+
golang.org/x/term v0.38.0 // indirect
62+
golang.org/x/text v0.32.0 // indirect
63+
golang.org/x/time v0.14.0 // indirect
5264
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
53-
google.golang.org/protobuf v1.36.7 // indirect
65+
google.golang.org/protobuf v1.36.11 // indirect
5466
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
5567
gopkg.in/inf.v0 v0.9.1 // indirect
5668
gopkg.in/yaml.v3 v3.0.1 // indirect
57-
k8s.io/api v0.33.4 // indirect
58-
k8s.io/apiextensions-apiserver v0.33.4 // indirect
59-
k8s.io/apimachinery v0.33.4 // indirect
60-
k8s.io/client-go v0.33.4 // indirect
69+
k8s.io/api v0.34.3 // indirect
70+
k8s.io/apiextensions-apiserver v0.34.3 // indirect
71+
k8s.io/apimachinery v0.34.3 // indirect
72+
k8s.io/client-go v0.34.3 // indirect
6173
k8s.io/klog/v2 v2.130.1 // indirect
62-
k8s.io/kube-openapi v0.0.0-20250701173324-9bd5c66d9911 // indirect
63-
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397 // indirect
64-
sigs.k8s.io/controller-runtime v0.21.0 // indirect
74+
k8s.io/kube-openapi v0.0.0-20251125145642-4e65d59e963e // indirect
75+
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect
76+
sigs.k8s.io/controller-runtime v0.22.4 // indirect
6577
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
6678
sigs.k8s.io/randfill v1.0.0 // indirect
6779
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect
80+
sigs.k8s.io/structured-merge-diff/v6 v6.3.1 // indirect
6881
sigs.k8s.io/yaml v1.6.0 // indirect
6982
)

0 commit comments

Comments
 (0)