Skip to content

Commit 0fea3dd

Browse files
committed
Update upstream specifications to their latest version
1 parent 626f353 commit 0fea3dd

File tree

199 files changed

+12845
-1775
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

199 files changed

+12845
-1775
lines changed

crd-catalog/Altinity/clickhouse-operator/clickhouse-keeper.altinity.com/v1/clickhousekeeperinstallations.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: "apiextensions.k8s.io/v1"
22
kind: "CustomResourceDefinition"
33
metadata:
44
labels:
5-
clickhouse-keeper.altinity.com/chop: "0.25.3"
5+
clickhouse-keeper.altinity.com/chop: "0.25.4"
66
name: "clickhousekeeperinstallations.clickhouse-keeper.altinity.com"
77
spec:
88
group: "clickhouse-keeper.altinity.com"
@@ -601,7 +601,7 @@ spec:
601601
type: "object"
602602
x-kubernetes-preserve-unknown-fields: true
603603
name:
604-
description: "by default, hostname will generate, but this allows define custom name for each `clickhuse-server`"
604+
description: "by default, hostname will generate, but this allows define custom name for each `clickhouse-server`"
605605
maxLength: 15
606606
minLength: 1
607607
pattern: "^[a-zA-Z0-9-]{0,15}$"

crd-catalog/Altinity/clickhouse-operator/clickhouse.altinity.com/v1/clickhouseinstallations.yaml

Lines changed: 942 additions & 6 deletions
Large diffs are not rendered by default.

crd-catalog/Altinity/clickhouse-operator/clickhouse.altinity.com/v1/clickhouseinstallationtemplates.yaml

Lines changed: 942 additions & 6 deletions
Large diffs are not rendered by default.

crd-catalog/Altinity/clickhouse-operator/clickhouse.altinity.com/v1/clickhouseoperatorconfigurations.yaml

Lines changed: 61 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: "apiextensions.k8s.io/v1"
22
kind: "CustomResourceDefinition"
33
metadata:
44
labels:
5-
clickhouse.altinity.com/chop: "0.25.3"
5+
clickhouse.altinity.com/chop: "0.25.4"
66
name: "clickhouseoperatorconfigurations.clickhouse.altinity.com"
77
spec:
88
group: "clickhouse.altinity.com"
@@ -358,6 +358,64 @@ spec:
358358
- "Enabled"
359359
- "enabled"
360360
type: "string"
361+
probes:
362+
description: "What probes the operator should wait during host launch procedure"
363+
properties:
364+
readiness:
365+
description: "Whether the operator during host launch procedure should wait for readiness probe to succeed.\nIn case probe is unspecified wait is assumed to be completed successfully.\nDefault option value is to wait.\n"
366+
enum:
367+
- ""
368+
- "0"
369+
- "1"
370+
- "False"
371+
- "false"
372+
- "True"
373+
- "true"
374+
- "No"
375+
- "no"
376+
- "Yes"
377+
- "yes"
378+
- "Off"
379+
- "off"
380+
- "On"
381+
- "on"
382+
- "Disable"
383+
- "disable"
384+
- "Enable"
385+
- "enable"
386+
- "Disabled"
387+
- "disabled"
388+
- "Enabled"
389+
- "enabled"
390+
type: "string"
391+
startup:
392+
description: "Whether the operator during host launch procedure should wait for startup probe to succeed.\nIn case probe is unspecified wait is assumed to be completed successfully.\nDefault option value is to do not wait.\n"
393+
enum:
394+
- ""
395+
- "0"
396+
- "1"
397+
- "False"
398+
- "false"
399+
- "True"
400+
- "true"
401+
- "No"
402+
- "no"
403+
- "Yes"
404+
- "yes"
405+
- "Off"
406+
- "off"
407+
- "On"
408+
- "on"
409+
- "Disable"
410+
- "disable"
411+
- "Enable"
412+
- "enable"
413+
- "Disabled"
414+
- "disabled"
415+
- "Enabled"
416+
- "enabled"
417+
type: "string"
418+
type: "object"
361419
queries:
362420
description: "Whether the operator during reconcile procedure should wait for a ClickHouse host to complete all running queries"
363421
enum:
@@ -637,9 +695,8 @@ spec:
637695
properties:
638696
namespaces:
639697
description: "List of namespaces where clickhouse-operator watches for events."
640-
items:
641-
type: "string"
642-
type: "array"
698+
type: "object"
699+
x-kubernetes-preserve-unknown-fields: true
643700
type: "object"
644701
type: "object"
645702
x-kubernetes-preserve-unknown-fields: true

crd-catalog/DopplerHQ/kubernetes-operator/secrets.doppler.com/v1alpha1/dopplersecrets.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ spec:
3232
config:
3333
description: "The Doppler config"
3434
type: "string"
35+
expirationSeconds:
36+
description: "The JWT expiration time in seconds for OIDC authentication. This controls the lifetime of the Kubernetes ServiceAccount token requested via the TokenRequest API. Kubernetes enforces a minimum of 600 seconds (10 minutes). Defaults to 600 if not specified."
37+
format: "int64"
38+
type: "integer"
3539
format:
3640
description: "Format enables the downloading of secrets as a file"
3741
enum:
@@ -45,6 +49,9 @@ spec:
4549
default: "https://api.doppler.com"
4650
description: "The Doppler API host"
4751
type: "string"
52+
identity:
53+
description: "The Doppler Service Account Identity (OIDC). Mutually exclusive with 'tokenSecret'."
54+
type: "string"
4855
managedSecret:
4956
description: "The Kubernetes secret where the operator will store and sync the fetched secrets"
5057
properties:
@@ -121,7 +128,7 @@ spec:
121128
type: "string"
122129
type: "array"
123130
tokenSecret:
124-
description: "The Kubernetes secret containing either a Doppler service token or OIDC configuration"
131+
description: "The Kubernetes secret containing either a Doppler service token or OIDC configuration. Mutually exclusive with 'identity'."
125132
properties:
126133
name:
127134
description: "The name of the Secret resource"
@@ -137,6 +144,9 @@ spec:
137144
description: "Whether or not to verify TLS"
138145
type: "boolean"
139146
type: "object"
147+
x-kubernetes-validations:
148+
- message: "Must specify either tokenSecret or identity, but not both"
149+
rule: "(has(self.tokenSecret) && !has(self.identity)) || (!has(self.tokenSecret) && has(self.identity))"
140150
status:
141151
description: "DopplerSecretStatus defines the observed state of DopplerSecret"
142152
properties:

crd-catalog/aws-controllers-k8s/cloudwatch-controller/cloudwatch.services.k8s.aws/v1alpha1/metricalarms.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: "apiextensions.k8s.io/v1"
22
kind: "CustomResourceDefinition"
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: "v0.16.2"
5+
controller-gen.kubebuilder.io/version: "v0.19.0"
66
name: "metricalarms.cloudwatch.services.k8s.aws"
77
spec:
88
group: "cloudwatch.services.k8s.aws"

crd-catalog/aws-controllers-k8s/ec2-controller/ec2.services.k8s.aws/v1alpha1/vpcendpoints.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,12 @@ spec:
9292
serviceName:
9393
description: "The name of the endpoint service."
9494
type: "string"
95+
serviceNetworkARN:
96+
description: "The Amazon Resource Name (ARN) of a service network that will be associated\nwith the VPC endpoint of type service-network."
97+
type: "string"
98+
x-kubernetes-validations:
99+
- message: "Value is immutable once set"
100+
rule: "self == oldSelf"
95101
serviceRegion:
96102
description: "The Region where the service is hosted. The default is the current Region."
97103
type: "string"

crd-catalog/aws-controllers-k8s/mq-controller/mq.services.k8s.aws/v1alpha1/brokers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: "apiextensions.k8s.io/v1"
22
kind: "CustomResourceDefinition"
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: "v0.16.2"
5+
controller-gen.kubebuilder.io/version: "v0.19.0"
66
name: "brokers.mq.services.k8s.aws"
77
spec:
88
group: "mq.services.k8s.aws"

crd-catalog/aws-controllers-k8s/sns-controller/sns.services.k8s.aws/v1alpha1/platformapplications.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: "apiextensions.k8s.io/v1"
22
kind: "CustomResourceDefinition"
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: "v0.16.2"
5+
controller-gen.kubebuilder.io/version: "v0.19.0"
66
name: "platformapplications.sns.services.k8s.aws"
77
spec:
88
group: "sns.services.k8s.aws"

crd-catalog/aws-controllers-k8s/sns-controller/sns.services.k8s.aws/v1alpha1/platformendpoints.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: "apiextensions.k8s.io/v1"
22
kind: "CustomResourceDefinition"
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: "v0.16.2"
5+
controller-gen.kubebuilder.io/version: "v0.19.0"
66
name: "platformendpoints.sns.services.k8s.aws"
77
spec:
88
group: "sns.services.k8s.aws"

0 commit comments

Comments
 (0)