Skip to content

Commit 9fcca52

Browse files
committed
feat: update SKE Operator to the latest released version
1 parent efe66aa commit 9fcca52

File tree

4 files changed

+77
-5
lines changed

4 files changed

+77
-5
lines changed

ske-operator/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: ske-operator
33
description: A Helm Chart for deploying the SKE-Operator
44
type: application
5-
version: 0.42.0 # the helm chart version
6-
appVersion: "v0.13.0" # the ske operator version
5+
version: 0.43.0 # the helm chart version
6+
appVersion: "v0.14.0" # the ske operator version
77
dependencies:
88
- name: ske-operator-crds
9-
version: 0.42.0
9+
version: 0.43.0

ske-operator/charts/ske-operator-crds/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ type: application
1313
# This is the chart version. This version number should be incremented each time you make changes
1414
# to the chart and its templates, including the app version.
1515
# Versions are expected to follow Semantic Versioning (https://semver.org/)
16-
version: 0.42.0
16+
version: 0.43.0
1717
# This is the version number of the application being deployed. This version number should be
1818
# incremented each time you make changes to the application. Versions are not expected to
1919
# follow Semantic Versioning. They should reflect the version the application is using.
2020
# It is recommended to use it with quotes.
21-
appVersion: "v0.13.0"
21+
appVersion: "v0.14.0"

ske-operator/charts/ske-operator-crds/templates/crds-with-cert-manager.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,42 @@ spec:
6363
spec:
6464
description: KratixSpec defines the desired state of Kratix
6565
properties:
66+
deploymentConfig:
67+
properties:
68+
resources:
69+
properties:
70+
limits:
71+
properties:
72+
cpu:
73+
anyOf:
74+
- type: integer
75+
- type: string
76+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
77+
x-kubernetes-int-or-string: true
78+
memory:
79+
anyOf:
80+
- type: integer
81+
- type: string
82+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
83+
x-kubernetes-int-or-string: true
84+
type: object
85+
requests:
86+
properties:
87+
cpu:
88+
anyOf:
89+
- type: integer
90+
- type: string
91+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
92+
x-kubernetes-int-or-string: true
93+
memory:
94+
anyOf:
95+
- type: integer
96+
- type: string
97+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
98+
x-kubernetes-int-or-string: true
99+
type: object
100+
type: object
101+
type: object
66102
tlsConfig:
67103
description: TLSConfig is the configuration for TLS on the deployed SKE
68104
properties:

ske-operator/charts/ske-operator-crds/templates/crds-without-cert-manager.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,42 @@ spec:
6464
spec:
6565
description: KratixSpec defines the desired state of Kratix
6666
properties:
67+
deploymentConfig:
68+
properties:
69+
resources:
70+
properties:
71+
limits:
72+
properties:
73+
cpu:
74+
anyOf:
75+
- type: integer
76+
- type: string
77+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
78+
x-kubernetes-int-or-string: true
79+
memory:
80+
anyOf:
81+
- type: integer
82+
- type: string
83+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
84+
x-kubernetes-int-or-string: true
85+
type: object
86+
requests:
87+
properties:
88+
cpu:
89+
anyOf:
90+
- type: integer
91+
- type: string
92+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
93+
x-kubernetes-int-or-string: true
94+
memory:
95+
anyOf:
96+
- type: integer
97+
- type: string
98+
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
99+
x-kubernetes-int-or-string: true
100+
type: object
101+
type: object
102+
type: object
67103
tlsConfig:
68104
description: TLSConfig is the configuration for TLS on the deployed SKE
69105
properties:

0 commit comments

Comments
 (0)