Skip to content

Commit

Permalink
Update upstream specifications to their latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
sebhoss authored Jan 19, 2024
1 parent 818115c commit 579376a
Show file tree
Hide file tree
Showing 203 changed files with 16,604 additions and 3,545 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,6 @@ spec:
type: array
paths:
items:
pattern: ^/[a-zA-Z0-9\-._~%!$&'()+,;=:@/]*\*?$
type: string
minItems: 1
type: array
Expand All @@ -225,6 +224,9 @@ spec:
plugin_config_name:
minLength: 1
type: string
plugin_config_namespace:
minLength: 1
type: string
plugins:
items:
properties:
Expand Down
11 changes: 9 additions & 2 deletions crd-catalog/apache/camel-k/camel.apache.org/v1/builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ spec:
description: Task represents the abstract task. Only one of the task should be configured to represent the specific task chosen.
properties:
buildah:
description: 'a BuildahTask, for Buildah strategy Deprecated: use spectrum, jib or s2i instead'
description: 'a BuildahTask, for Buildah strategy Deprecated: use spectrum, jib, s2i or a custom publishing strategy instead'
properties:
baseImage:
description: base image layer
Expand Down Expand Up @@ -662,6 +662,13 @@ spec:
name:
description: name of the task
type: string
publishingImage:
description: the desired image build name
type: string
userId:
description: the user id used to run the container
format: int64
type: integer
type: object
jib:
description: a JibTask, for Jib strategy
Expand Down Expand Up @@ -739,7 +746,7 @@ spec:
type: object
type: object
kaniko:
description: 'a KanikoTask, for Kaniko strategy Deprecated: use spectrum, jib or s2i instead'
description: 'a KanikoTask, for Kaniko strategy Deprecated: use spectrum, jib, s2i or a custom publishing strategy instead'
properties:
baseImage:
description: base image layer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ spec:
description: 'Deprecated: no longer in use.'
type: boolean
incrementalImageBuild:
default: true
description: Use the incremental image build option, to reuse existing containers (default `true`)
type: boolean
limitCPU:
Expand All @@ -191,7 +190,6 @@ spec:
description: Defines a set of nodes the builder pod is eligible to be scheduled on, based on labels on the node.
type: object
orderStrategy:
default: sequential
description: The build order strategy to use, either `dependencies`, `fifo` or `sequential` (default `sequential`)
enum:
- dependencies
Expand All @@ -210,7 +208,6 @@ spec:
description: 'When using `pod` strategy, the minimum amount of memory required by the pod builder. Deprecated: use TasksRequestCPU instead with task name `builder`.'
type: string
strategy:
default: routine
description: The strategy to use, either `pod` or `routine` (default `routine`)
enum:
- pod
Expand All @@ -221,6 +218,9 @@ spec:
items:
type: string
type: array
tasksFilter:
description: A list of tasks sorted by the order of execution in a csv format, ie, `<taskName1>,<taskName2>,...`. Mind that you must include also the operator tasks (`builder`, `quarkus-native`, `package`, `jib`, `spectrum`, `s2i`) if you need to execute them. Useful only with `pod` strategy.
type: string
tasksLimitCPU:
description: A list of limit cpu configuration for the specific task with format `<task-name>:<limit-cpu-conf>`.
items:
Expand All @@ -242,7 +242,7 @@ spec:
type: string
type: array
verbose:
description: Enable verbose logging on build components that support it (e.g. Kaniko build pod).
description: Enable verbose logging on build components that support it (e.g. Kaniko build pod). Deprecated no longer in use
type: boolean
type: object
camel:
Expand All @@ -268,8 +268,6 @@ spec:
description: 'The Quarkus trait configures the Quarkus runtime. It''s enabled by default. NOTE: Compiling to a native executable, requires at least 4GiB of memory, so the Pod running the native build must have enough memory available.'
properties:
buildMode:
default:
- jvm
description: 'The Quarkus mode to run: either `jvm` or `native` (default `jvm`). In case both `jvm` and `native` are specified, two `IntegrationKit` resources are created, with the `native` kit having precedence over the `jvm` one once ready.'
items:
description: QuarkusMode is the type of Quarkus build packaging.
Expand All @@ -286,7 +284,6 @@ spec:
description: 'Deprecated: no longer in use.'
type: boolean
nativeBaseImage:
default: quay.io/quarkus/quarkus-micro-image:2.0
description: The base image to use when running a native build (default `quay.io/quarkus/quarkus-micro-image:2.0`)
type: string
nativeBuilderImage:
Expand Down
Loading

0 comments on commit 579376a

Please sign in to comment.