Skip to content

Commit ed5996b

Browse files
committed
Update upstream specifications to their latest version
1 parent 6f9b5ff commit ed5996b

File tree

191 files changed

+5973
-514
lines changed

Some content is hidden

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

191 files changed

+5973
-514
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ schemars = { version = "~0" }
425425
serde = { version = "~1" }
426426
serde_json = { version = "~1" }
427427
k8s-openapi = { version = "~0" }
428-
kube = { version = "~0", default-features = false, features = ["derive"] }
428+
kube = { version = "~0", features = ["derive"] }
429429

430430
[profile.dev]
431431
# Disable settings to speeds up builds

crd-catalog/3scale-ops/marin3r/operator.marin3r.3scale.net/v1alpha1/discoveryservices.yaml

Lines changed: 554 additions & 0 deletions
Large diffs are not rendered by default.

crd-catalog/Kuadrant/limitador-operator/limitador.kuadrant.io/v1alpha1/limitadors.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -580,6 +580,9 @@ spec:
580580
description: "An eviction is allowed if at least \"minAvailable\" limitador pods will\nstill be available after the eviction, i.e. even in the absence of\nthe evicted pod. So for example you can prevent all voluntary\nevictions by specifying \"100%\"."
581581
x-kubernetes-int-or-string: true
582582
type: "object"
583+
x-kubernetes-validations:
584+
- message: "pdb spec invalid, maxUnavailable and minAvailable are mutually exclusive"
585+
rule: "!(has(self.maxUnavailable) && has(self.minAvailable))"
583586
rateLimitHeaders:
584587
description: "RateLimitHeadersType defines the valid options for the --rate-limit-headers arg"
585588
enum:

crd-catalog/ROCm/gpu-operator/amd.com/v1alpha1/deviceconfigs.yaml

Lines changed: 362 additions & 15 deletions
Large diffs are not rendered by default.

crd-catalog/SolaceProducts/pubsubplus-kubernetes-quickstart/pubsubplus.solace.com/v1beta1/pubsubpluseventbrokers.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ spec:
3939
brokerContainerSecurity:
4040
description: "ContainerSecurityContext defines the container security context for the PubSubPlusEventBroker."
4141
properties:
42+
readOnlyRootFilesystem:
43+
default: false
44+
description: "Specifies if the root filesystem of the PubSubPlusEventBroker should be read-only. Note: This will only work for versions 10.9 and above."
45+
type: "boolean"
4246
runAsGroup:
4347
description: "Specifies runAsGroup in container security context. 0 or unset defaults either to 1000002, or if OpenShift detected to unspecified (see documentation)"
4448
format: "int64"
@@ -822,6 +826,38 @@ spec:
822826
description: "Specifies runAsUser in pod security context. 0 or unset defaults either to 1000001, or if OpenShift detected to unspecified (see documentation)"
823827
format: "int64"
824828
type: "number"
829+
seLinuxOptions:
830+
description: "SELinuxOptions defines the SELinux context to be applied to the container."
831+
properties:
832+
level:
833+
description: "Level is SELinux level label that applies to the container."
834+
type: "string"
835+
role:
836+
description: "Role is a SELinux role label that applies to the container."
837+
type: "string"
838+
type:
839+
description: "Type is a SELinux type label that applies to the container."
840+
type: "string"
841+
user:
842+
description: "User is a SELinux user label that applies to the container."
843+
type: "string"
844+
type: "object"
845+
windowsOptions:
846+
description: "WindowsOptions defines the Windows-specific options to be applied to the container."
847+
properties:
848+
gmsaCredentialSpec:
849+
description: "GMSACredentialSpec is where the GMSA admission webhook\n(https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the\nGMSA credential spec named by the GMSACredentialSpecName field."
850+
type: "string"
851+
gmsaCredentialSpecName:
852+
description: "GMSACredentialSpecName is the name of the GMSA credential spec to use."
853+
type: "string"
854+
hostProcess:
855+
description: "HostProcess determines if a container should be run as a 'Host Process' container.\nAll of a Pod's containers must have the same effective HostProcess value\n(it is not allowed to have a mix of HostProcess containers and non-HostProcess containers).\nIn addition, if HostProcess is true then HostNetwork must also be set to true."
856+
type: "boolean"
857+
runAsUserName:
858+
description: "The UserName in Windows to run the entrypoint of the container process.\nDefaults to the user specified in image metadata if unspecified.\nMay also be set in PodSecurityContext. If set in both SecurityContext and\nPodSecurityContext, the value specified in SecurityContext takes precedence."
859+
type: "string"
860+
type: "object"
825861
type: "object"
826862
service:
827863
description: "Service defines broker service details."

crd-catalog/VictoriaMetrics/operator/operator.victoriametrics.com/v1beta1/vmagents.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -494,6 +494,23 @@ spec:
494494
items:
495495
type: "string"
496496
type: "array"
497+
configReloadAuthKeySecret:
498+
description: "ConfigReloadAuthKeySecret defines optional secret reference authKey for /-/reload API requests.\nGiven secret reference will be added to the application and vm-config-reloader as volume\navailable since v0.57.0 version"
499+
properties:
500+
key:
501+
description: "The key of the secret to select from. Must be a valid secret key."
502+
type: "string"
503+
name:
504+
default: ""
505+
description: "Name of the referent.\nThis field is effectively required, but due to backwards compatibility is\nallowed to be empty. Instances of this type with an empty value here are\nalmost certainly wrong.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names"
506+
type: "string"
507+
optional:
508+
description: "Specify whether the Secret or its key must be defined"
509+
type: "boolean"
510+
required:
511+
- "key"
512+
type: "object"
513+
x-kubernetes-map-type: "atomic"
497514
configReloaderExtraArgs:
498515
additionalProperties:
499516
type: "string"

crd-catalog/VictoriaMetrics/operator/operator.victoriametrics.com/v1beta1/vmalertmanagerconfigs.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2598,6 +2598,10 @@ spec:
25982598
send_resolved:
25992599
description: "SendResolved controls notify about resolved alerts."
26002600
type: "boolean"
2601+
timeout:
2602+
description: "Timeout is the maximum time allowed to invoke the webhook\navailable since v0.28.0 alertmanager version"
2603+
pattern: "^(0|(([0-9]+)y)?(([0-9]+)w)?(([0-9]+)d)?(([0-9]+)h)?(([0-9]+)m)?(([0-9]+)s)?(([0-9]+)ms)?)$"
2604+
type: "string"
26012605
url:
26022606
description: "URL to send requests to,\none of `urlSecret` and `url` must be defined."
26032607
type: "string"

crd-catalog/VictoriaMetrics/operator/operator.victoriametrics.com/v1beta1/vmalertmanagers.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,23 @@ spec:
315315
configRawYaml:
316316
description: "ConfigRawYaml - raw configuration for alertmanager,\nit helps it to start without secret.\npriority -> hardcoded ConfigRaw -> ConfigRaw, provided by user -> ConfigSecret."
317317
type: "string"
318+
configReloadAuthKeySecret:
319+
description: "ConfigReloadAuthKeySecret defines optional secret reference authKey for /-/reload API requests.\nGiven secret reference will be added to the application and vm-config-reloader as volume\navailable since v0.57.0 version"
320+
properties:
321+
key:
322+
description: "The key of the secret to select from. Must be a valid secret key."
323+
type: "string"
324+
name:
325+
default: ""
326+
description: "Name of the referent.\nThis field is effectively required, but due to backwards compatibility is\nallowed to be empty. Instances of this type with an empty value here are\nalmost certainly wrong.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names"
327+
type: "string"
328+
optional:
329+
description: "Specify whether the Secret or its key must be defined"
330+
type: "boolean"
331+
required:
332+
- "key"
333+
type: "object"
334+
x-kubernetes-map-type: "atomic"
318335
configReloaderExtraArgs:
319336
additionalProperties:
320337
type: "string"

crd-catalog/VictoriaMetrics/operator/operator.victoriametrics.com/v1beta1/vmalerts.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,23 @@ spec:
5050
items:
5151
type: "string"
5252
type: "array"
53+
configReloadAuthKeySecret:
54+
description: "ConfigReloadAuthKeySecret defines optional secret reference authKey for /-/reload API requests.\nGiven secret reference will be added to the application and vm-config-reloader as volume\navailable since v0.57.0 version"
55+
properties:
56+
key:
57+
description: "The key of the secret to select from. Must be a valid secret key."
58+
type: "string"
59+
name:
60+
default: ""
61+
description: "Name of the referent.\nThis field is effectively required, but due to backwards compatibility is\nallowed to be empty. Instances of this type with an empty value here are\nalmost certainly wrong.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names"
62+
type: "string"
63+
optional:
64+
description: "Specify whether the Secret or its key must be defined"
65+
type: "boolean"
66+
required:
67+
- "key"
68+
type: "object"
69+
x-kubernetes-map-type: "atomic"
5370
configReloaderExtraArgs:
5471
additionalProperties:
5572
type: "string"

crd-catalog/VictoriaMetrics/operator/operator.victoriametrics.com/v1beta1/vmauths.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,23 @@ spec:
5050
items:
5151
type: "string"
5252
type: "array"
53+
configReloadAuthKeySecret:
54+
description: "ConfigReloadAuthKeySecret defines optional secret reference authKey for /-/reload API requests.\nGiven secret reference will be added to the application and vm-config-reloader as volume\navailable since v0.57.0 version"
55+
properties:
56+
key:
57+
description: "The key of the secret to select from. Must be a valid secret key."
58+
type: "string"
59+
name:
60+
default: ""
61+
description: "Name of the referent.\nThis field is effectively required, but due to backwards compatibility is\nallowed to be empty. Instances of this type with an empty value here are\nalmost certainly wrong.\nMore info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names"
62+
type: "string"
63+
optional:
64+
description: "Specify whether the Secret or its key must be defined"
65+
type: "boolean"
66+
required:
67+
- "key"
68+
type: "object"
69+
x-kubernetes-map-type: "atomic"
5370
configReloaderExtraArgs:
5471
additionalProperties:
5572
type: "string"

0 commit comments

Comments
 (0)