Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewHashicorpVaultTrait ¶
Types ¶
type Trait ¶
type Trait struct { traitv1.Trait `property:",squash"` // Enables automatic configuration of the trait. Auto *bool `property:"auto" json:"auto,omitempty"` // The Host to use Host string `property:"host" json:"host,omitempty"` // The Port to use Port string `property:"port" json:"port,omitempty"` // The Hashicorp engine to use Engine string `property:"engine" json:"engine,omitempty"` // The token to access Hashicorp Vault. This could be a plain text or a configmap/secret // The content of the hashicorp vault token is expected to be a text containing a valid Hashicorp Vault Token. // Syntax: [configmap|secret]:name[/key], where name represents the resource name, key optionally represents the resource key to be filtered (default key value = hashicorp-vault-token). Token string `property:"token" json:"token,omitempty"` // The scheme to access Hashicorp Vault Scheme string `property:"scheme" json:"scheme,omitempty"` }
The Hashicorp Vault trait can be used to use secrets from Hashicorp Vault
The Hashicorp Vault trait is disabled by default.
For more information about how to use secrets from Hashicorp vault take a look at the components docs: xref:components::hashicorp-vault-component.adoc[Hashicorp Vault component]
A sample execution of this trait, would require the following trait options: -t hashicorp-vault.enabled=true -t hashicorp-vault.token="token" -t hashicorp-vault.port="port" -t hashicorp-vault.engine="engine" -t hashicorp-vault.port="port" -t hashicorp-vault.scheme="scheme"
WARNING: The trait is **deprecated** and will removed in future release versions: configure directly the Camel properties as required by the component instead.
+camel-k:trait=hashicorp-vault. +camel-k:deprecated=2.5.0.