blob: 65925bc4679e0d966186a29e39685088a7fc219d [file] [log] [blame]
= Container Trait
// Start of autogenerated code - DO NOT EDIT! (description)
The Container trait can be used to configure properties of the container where the integration will run.
It also provides configuration for Services associated to the container.
This trait is available in the following profiles: **Kubernetes, Knative, OpenShift**.
NOTE: The container trait is a *platform trait* and cannot be disabled by the user.
// End of autogenerated code - DO NOT EDIT! (description)
// Start of autogenerated code - DO NOT EDIT! (configuration)
== Configuration
Trait properties can be specified when running any integration with the CLI:
[source,console]
----
$ kamel run --trait container.[key]=[value] --trait container.[key2]=[value2] integration.groovy
----
The following configuration options are available:
[cols="2m,1m,5a"]
|===
|Property | Type | Description
| container.enabled
| bool
| Deprecated: no longer in use.
| container.auto
| bool
| To automatically enable the trait
| container.request-cpu
| string
| The minimum amount of CPU required.
| container.request-memory
| string
| The minimum amount of memory required.
| container.limit-cpu
| string
| The maximum amount of CPU required.
| container.limit-memory
| string
| The maximum amount of memory required.
| container.expose
| bool
| Can be used to enable/disable exposure via kubernetes Service.
| container.port
| int
| To configure a different port exposed by the container (default `8080`).
| container.port-name
| string
| To configure a different port name for the port exposed by the container. It defaults to `http` only when the `expose` parameter is true.
| container.service-port
| int
| To configure under which service port the container port is to be exposed (default `80`).
| container.service-port-name
| string
| To configure under which service port name the container port is to be exposed (default `http`).
| container.name
| string
| The main container name. It's named `integration` by default.
| container.image
| string
| The main container image
| container.image-pull-policy
| PullPolicy
| The pull policy: Always\|Never\|IfNotPresent
|===
// End of autogenerated code - DO NOT EDIT! (configuration)