Container Trait
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.
The container trait is a platform trait and cannot be disabled by the user. |
Configuration
Trait properties can be specified when running any integration with the CLI:
$ kamel run --trait container.[key]=[value] --trait container.[key2]=[value2] integration.yaml
The following configuration options are available:
Property | Type | Description |
---|---|---|
|
| Deprecated: no longer in use. |
|
| To automatically enable the trait |
|
| The minimum amount of CPU required (default 125 millicores). |
|
| The minimum amount of memory required (default 128 Mi). |
|
| The maximum amount of CPU to be provided (default 500 millicores). |
|
| The maximum amount of memory to be provided (default 512 Mi). |
|
| Can be used to enable/disable exposure via kubernetes Service. |
|
| To configure a different port exposed by the container (default |
|
| To configure a different port name for the port exposed by the container. It defaults to |
|
| To configure under which service port the container port is to be exposed (default |
|
| To configure under which service port name the container port is to be exposed (default |
|
| The main container name. It’s named |
|
| The main container image to use for the Integration. When using this parameter the operator will create a synthetic IntegrationKit which won’t be able to execute traits requiring CamelCatalog. If the container image you’re using is coming from an IntegrationKit, use instead Integration |
|
| The pull policy: Always|Never|IfNotPresent |
|
| Security Context RunAsUser configuration (default none): this value is automatically retrieved in Openshift clusters when not explicitly set. |
|
| Security Context RunAsNonRoot configuration (default false). |
|
| Security Context SeccompProfileType configuration (default RuntimeDefault). |
|
| Security Context AllowPrivilegeEscalation configuration (default false). |
|
| Security Context Capabilities Drop configuration (default ALL). |
|
| Security Context Capabilities Add configuration (default none). |