Skip to content

Commit a292f6e

Browse files
committed
Update upstream specifications to their latest version
1 parent 6352869 commit a292f6e

File tree

265 files changed

+5824
-1579
lines changed

Some content is hidden

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

265 files changed

+5824
-1579
lines changed

crd-catalog/VictoriaMetrics/operator/operator.victoriametrics.com/v1/vmanomalies.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ spec:
617617
description: "HealthPath defines absolute or relative URL address where to check availability of the remote webserver"
618618
type: "string"
619619
pushFrequency:
620-
description: "PushFrequency defines push internval"
620+
description: "PushFrequency defines push interval"
621621
type: "string"
622622
tenantID:
623623
description: "TenantID defines for VictoriaMetrics Cluster version only, tenants are identified by accountID, accountID:projectID or multitenant."
@@ -880,7 +880,7 @@ spec:
880880
type: "string"
881881
type: "array"
882882
datasourceURL:
883-
description: "DatasourceURL address\ndatatasource must serve /api/v1/query and /api/v1/query_range APIs"
883+
description: "DatasourceURL address\ndatasource must serve /api/v1/query and /api/v1/query_range APIs"
884884
type: "string"
885885
extraFilters:
886886
description: "List of strings with series selector."

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ spec:
135135
description: "CRD describes exist operator's CRD object,\noperator generates access url based on CRD params."
136136
properties:
137137
kind:
138-
description: "Kind one of:\nVMAgent,VMAlert, VMSingle, VMCluster/vmselect, VMCluster/vmstorage,VMCluster/vminsert or VMAlertManager"
138+
description: "Kind one of:\nVMAgent,VMAlert, VMSingle, VMCluster/vmselect, VMCluster/vmstorage,VMCluster/vminsert,VMAlertManager, VLSingle, VLCluster/vlinsert, VLCluster/vlselect, VLCluster/vlstorage and VLAgent"
139139
enum:
140140
- "VMAgent"
141141
- "VMAlert"
@@ -146,6 +146,11 @@ spec:
146146
- "VMCluster/vmselect"
147147
- "VMCluster/vmstorage"
148148
- "VMCluster/vminsert"
149+
- "VLSingle"
150+
- "VLCluster/vlinsert"
151+
- "VLCluster/vlselect"
152+
- "VLCluster/vlstorage"
153+
- "VLAgent"
149154
type: "string"
150155
name:
151156
description: "Name target CRD object name"

crd-catalog/ansible/awx-operator/awx.ansible.com/v1beta1/awxs.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -780,9 +780,25 @@ spec:
780780
description: "Sets permissions on the /var/lib/pgdata/data for postgres container using an init container (not Openshift)"
781781
type: "boolean"
782782
postgres_extra_args:
783+
description: "(Deprecated, use postgres_extra_settings parameter) Define postgres configuration arguments to use"
783784
items:
784785
type: "string"
785786
type: "array"
787+
postgres_extra_settings:
788+
description: "PostgreSQL configuration settings to be added to postgresql.conf"
789+
items:
790+
properties:
791+
setting:
792+
description: "PostgreSQL configuration parameter name"
793+
type: "string"
794+
value:
795+
description: "PostgreSQL configuration parameter value"
796+
type: "string"
797+
required:
798+
- "setting"
799+
- "value"
800+
type: "object"
801+
type: "array"
786802
postgres_extra_volume_mounts:
787803
description: "Specify volume mounts to be added to Postgres container"
788804
type: "string"

crd-catalog/apache/camel-k/camel.apache.org/v1/integrationplatforms.yaml

Lines changed: 42 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ spec:
581581
description: "Deprecated: no longer in use."
582582
type: "boolean"
583583
expose:
584-
description: "Can be used to enable/disable exposure via kubernetes Service."
584+
description: "Can be used to enable/disable http exposure via kubernetes Service."
585585
type: "boolean"
586586
image:
587587
description: "The main container image to use for the Integration. When using this parameter the operator will create a synthetic IntegrationKit which\nwon't be able to execute traits requiring CamelCatalog. If the container image you're using is coming from an IntegrationKit, use instead\nIntegration `.spec.integrationKit` parameter. If you're moving the Integration across environments, you will also need to create an \"external\" IntegrationKit."
@@ -603,12 +603,17 @@ spec:
603603
description: "The main container name. It's named `integration` by default."
604604
type: "string"
605605
port:
606-
description: "To configure a different port exposed by the container (default `8080`)."
606+
description: "To configure a different http port exposed by the container (default `8080`)."
607607
format: "int32"
608608
type: "integer"
609609
portName:
610-
description: "To configure a different port name for the port exposed by the container. It defaults to `http` only when the `expose` parameter is true."
610+
description: "To configure a different http port name for the port exposed by the container.\nIt defaults to `http` only when the `expose` parameter is true."
611611
type: "string"
612+
ports:
613+
description: "List of container ports available in the container (syntax: <port-name>;<port-number>[;port-protocol]).\nWhen omitted, `port-protocol` (admitted values `TCP`, `UDP` or `SCTP`) is `TCP`.\nDon't use this for the primary http managed port (for which case you need to use `portName` and `port`).\nDon't use in Knative based environments."
614+
items:
615+
type: "string"
616+
type: "array"
612617
requestCPU:
613618
description: "The minimum amount of CPU required (default 125 millicores)."
614619
type: "string"
@@ -629,11 +634,11 @@ spec:
629634
- "RuntimeDefault"
630635
type: "string"
631636
servicePort:
632-
description: "To configure under which service port the container port is to be exposed (default `80`)."
637+
description: "To configure under which service port the http container port is to be exposed (default `80`)."
633638
format: "int32"
634639
type: "integer"
635640
servicePortName:
636-
description: "To configure under which service port name the container port is to be exposed (default `http`)."
641+
description: "To configure under which service port name the http container port is to be exposed (default `http`)."
637642
type: "string"
638643
type: "object"
639644
cron:
@@ -949,15 +954,12 @@ spec:
949954
init-containers:
950955
description: "The configuration of Init Containers trait"
951956
properties:
952-
auto:
953-
description: "To automatically enable the trait"
954-
type: "boolean"
955957
configuration:
956958
description: "Legacy trait configuration parameters.\nDeprecated: for backward compatibility."
957959
type: "object"
958960
x-kubernetes-preserve-unknown-fields: true
959961
enabled:
960-
description: "Deprecated: no longer in use."
962+
description: "Can be used to enable or disable a trait. All traits share this common property."
961963
type: "boolean"
962964
initTasks:
963965
description: "A list of init tasks to be executed with format `<name>;<container-image>;<container-command>`."
@@ -1039,6 +1041,11 @@ spec:
10391041
jvm:
10401042
description: "The configuration of JVM trait"
10411043
properties:
1044+
agents:
1045+
description: "A list of JVM agents to download and execute with format `<agent-name>;<agent-url>[;<jvm-agent-options>]`."
1046+
items:
1047+
type: "string"
1048+
type: "array"
10421049
classpath:
10431050
description: "Additional JVM classpath (use `Linux` classpath separator)"
10441051
type: "string"
@@ -1588,6 +1595,11 @@ spec:
15881595
nodePort:
15891596
description: "Enable Service to be exposed as NodePort (default `false`).\nDeprecated: Use service type instead."
15901597
type: "boolean"
1598+
ports:
1599+
description: "List of container ports available in the container to expose\n(syntax: <port-name>;<port-number>;<container-port-number>[;<port-protocol]).\nWhen omitted, `port-protocol` (admitted values `TCP`, `UDP` or `SCTP`) is `TCP`.\nDon't use this for the primary http managed port (which is managed by container trait).\nDon't use in Knative based environments."
1600+
items:
1601+
type: "string"
1602+
type: "array"
15911603
type:
15921604
description: "The type of service to be used, either 'ClusterIP', 'NodePort' or 'LoadBalancer'."
15931605
enum:
@@ -2246,7 +2258,7 @@ spec:
22462258
description: "Deprecated: no longer in use."
22472259
type: "boolean"
22482260
expose:
2249-
description: "Can be used to enable/disable exposure via kubernetes Service."
2261+
description: "Can be used to enable/disable http exposure via kubernetes Service."
22502262
type: "boolean"
22512263
image:
22522264
description: "The main container image to use for the Integration. When using this parameter the operator will create a synthetic IntegrationKit which\nwon't be able to execute traits requiring CamelCatalog. If the container image you're using is coming from an IntegrationKit, use instead\nIntegration `.spec.integrationKit` parameter. If you're moving the Integration across environments, you will also need to create an \"external\" IntegrationKit."
@@ -2268,12 +2280,17 @@ spec:
22682280
description: "The main container name. It's named `integration` by default."
22692281
type: "string"
22702282
port:
2271-
description: "To configure a different port exposed by the container (default `8080`)."
2283+
description: "To configure a different http port exposed by the container (default `8080`)."
22722284
format: "int32"
22732285
type: "integer"
22742286
portName:
2275-
description: "To configure a different port name for the port exposed by the container. It defaults to `http` only when the `expose` parameter is true."
2287+
description: "To configure a different http port name for the port exposed by the container.\nIt defaults to `http` only when the `expose` parameter is true."
22762288
type: "string"
2289+
ports:
2290+
description: "List of container ports available in the container (syntax: <port-name>;<port-number>[;port-protocol]).\nWhen omitted, `port-protocol` (admitted values `TCP`, `UDP` or `SCTP`) is `TCP`.\nDon't use this for the primary http managed port (for which case you need to use `portName` and `port`).\nDon't use in Knative based environments."
2291+
items:
2292+
type: "string"
2293+
type: "array"
22772294
requestCPU:
22782295
description: "The minimum amount of CPU required (default 125 millicores)."
22792296
type: "string"
@@ -2294,11 +2311,11 @@ spec:
22942311
- "RuntimeDefault"
22952312
type: "string"
22962313
servicePort:
2297-
description: "To configure under which service port the container port is to be exposed (default `80`)."
2314+
description: "To configure under which service port the http container port is to be exposed (default `80`)."
22982315
format: "int32"
22992316
type: "integer"
23002317
servicePortName:
2301-
description: "To configure under which service port name the container port is to be exposed (default `http`)."
2318+
description: "To configure under which service port name the http container port is to be exposed (default `http`)."
23022319
type: "string"
23032320
type: "object"
23042321
cron:
@@ -2614,15 +2631,12 @@ spec:
26142631
init-containers:
26152632
description: "The configuration of Init Containers trait"
26162633
properties:
2617-
auto:
2618-
description: "To automatically enable the trait"
2619-
type: "boolean"
26202634
configuration:
26212635
description: "Legacy trait configuration parameters.\nDeprecated: for backward compatibility."
26222636
type: "object"
26232637
x-kubernetes-preserve-unknown-fields: true
26242638
enabled:
2625-
description: "Deprecated: no longer in use."
2639+
description: "Can be used to enable or disable a trait. All traits share this common property."
26262640
type: "boolean"
26272641
initTasks:
26282642
description: "A list of init tasks to be executed with format `<name>;<container-image>;<container-command>`."
@@ -2704,6 +2718,11 @@ spec:
27042718
jvm:
27052719
description: "The configuration of JVM trait"
27062720
properties:
2721+
agents:
2722+
description: "A list of JVM agents to download and execute with format `<agent-name>;<agent-url>[;<jvm-agent-options>]`."
2723+
items:
2724+
type: "string"
2725+
type: "array"
27072726
classpath:
27082727
description: "Additional JVM classpath (use `Linux` classpath separator)"
27092728
type: "string"
@@ -3253,6 +3272,11 @@ spec:
32533272
nodePort:
32543273
description: "Enable Service to be exposed as NodePort (default `false`).\nDeprecated: Use service type instead."
32553274
type: "boolean"
3275+
ports:
3276+
description: "List of container ports available in the container to expose\n(syntax: <port-name>;<port-number>;<container-port-number>[;<port-protocol]).\nWhen omitted, `port-protocol` (admitted values `TCP`, `UDP` or `SCTP`) is `TCP`.\nDon't use this for the primary http managed port (which is managed by container trait).\nDon't use in Knative based environments."
3277+
items:
3278+
type: "string"
3279+
type: "array"
32563280
type:
32573281
description: "The type of service to be used, either 'ClusterIP', 'NodePort' or 'LoadBalancer'."
32583282
enum:

0 commit comments

Comments
 (0)