qovery.Helm
Explore with Pulumi AI
# qovery.Helm (Resource)
Provides a Qovery helm resource. This can be used to create and manage Qovery helm registry.
Example
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.qovery.Helm;
import com.pulumi.qovery.HelmArgs;
import com.pulumi.qovery.inputs.HelmSourceArgs;
import com.pulumi.qovery.inputs.HelmValuesOverrideArgs;
import com.pulumi.qovery.inputs.HelmValuesOverrideFileArgs;
import com.pulumi.qovery.inputs.HelmEnvironmentVariableArgs;
import com.pulumi.qovery.inputs.HelmEnvironmentVariableAliasArgs;
import com.pulumi.qovery.inputs.HelmEnvironmentVariableOverrideArgs;
import com.pulumi.qovery.inputs.HelmSecretArgs;
import com.pulumi.qovery.inputs.HelmSecretAliasArgs;
import com.pulumi.qovery.inputs.HelmSecretOverrideArgs;
import com.pulumi.qovery.inputs.HelmDeploymentRestrictionArgs;
import static com.pulumi.codegen.internal.Serialization.*;
import com.pulumi.resources.CustomResourceOptions;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var myHelm = new Helm("myHelm", HelmArgs.builder()
.environmentId(qovery_environment.my_environment().id())
.allowClusterWideResources(false)
.source(HelmSourceArgs.builder()
.helm_repository(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build())
.valuesOverride(HelmValuesOverrideArgs.builder()
%!v(PANIC=Format method: interface conversion: model.Expression is *model.TemplateExpression, not *model.LiteralValueExpression))
.autoPreview("true")
.environmentVariables(HelmEnvironmentVariableArgs.builder()
.key("MY_TERRAFORM_HELM_VARIABLE")
.value("MY_TERRAFORM_HELM_VARIABLE_VALUE")
.build())
.environmentVariableAliases(HelmEnvironmentVariableAliasArgs.builder()
.key("ENV_VAR_KEY_ALIAS")
.value("ENV_VAR_KEY")
.build())
.environmentVariableOverrides(HelmEnvironmentVariableOverrideArgs.builder()
.key("SOME_PROJECT_VARIABLE")
.value("OVERRIDDEN_VALUE")
.build())
.secrets(HelmSecretArgs.builder()
.key("MY_TERRAFORM_HELM_SECRET")
.value("MY_TERRAFORM_HELM_SECRET_VALUE")
.build())
.secretAliases(HelmSecretAliasArgs.builder()
.key("SECRET_KEY_ALIAS")
.value("SECRET_KEY")
.build())
.secretOverrides(HelmSecretOverrideArgs.builder()
.key("SOME_PROJECT_SECRET")
.value("OVERRIDDEN_VALUE")
.build())
.deploymentRestrictions(HelmDeploymentRestrictionArgs.builder()
.mode("MATCH")
.type("PATH")
.value("path/or/file")
.build())
.advancedSettingsJson(serializeJson(
jsonObject(
)))
.build(), CustomResourceOptions.builder()
.dependsOn(qovery_environment.my_environment())
.build());
}
}
resources:
myHelm:
type: qovery:Helm
properties:
# Required
environmentId: ${qovery_environment.my_environment.id}
allowClusterWideResources: false
source:
helm_repository:
helmRepositoryId: 5a4a2dd6-02e1-4e3a-a3cc-8ebb97e135a9
chartName: httpbin
chartVersion: 1.0.0
valuesOverride:
set:
key1: 6600
key2: values1
set_string:
s-key1: value1
s-key2: value2
set_json:
j-key1: '{}'
j-key2: '{}'
file:
raw:
file1:
content: "--- \n ssss"
file2:
content: "a \n eee"
# Optional
autoPreview: 'true'
environmentVariables:
- key: MY_TERRAFORM_HELM_VARIABLE
value: MY_TERRAFORM_HELM_VARIABLE_VALUE
environmentVariableAliases:
- key: ENV_VAR_KEY_ALIAS
value: ENV_VAR_KEY
environmentVariableOverrides:
- key: SOME_PROJECT_VARIABLE
value: OVERRIDDEN_VALUE
secrets:
- key: MY_TERRAFORM_HELM_SECRET
value: MY_TERRAFORM_HELM_SECRET_VALUE
secretAliases:
- key: SECRET_KEY_ALIAS
value: SECRET_KEY
secretOverrides:
- key: SOME_PROJECT_SECRET
value: OVERRIDDEN_VALUE
deploymentRestrictions:
- mode: MATCH
type: PATH
value: path/or/file
advancedSettingsJson:
fn::toJSON: {}
options:
dependson:
- ${qovery_environment.my_environment}
Create Helm Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Helm(name: string, args: HelmArgs, opts?: CustomResourceOptions);
@overload
def Helm(resource_name: str,
args: HelmArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Helm(resource_name: str,
opts: Optional[ResourceOptions] = None,
environment_id: Optional[str] = None,
allow_cluster_wide_resources: Optional[bool] = None,
values_override: Optional[HelmValuesOverrideArgs] = None,
source: Optional[HelmSourceArgs] = None,
environment_variable_aliases: Optional[Sequence[HelmEnvironmentVariableAliasArgs]] = None,
name: Optional[str] = None,
deployment_stage_id: Optional[str] = None,
auto_preview: Optional[bool] = None,
advanced_settings_json: Optional[str] = None,
environment_variable_overrides: Optional[Sequence[HelmEnvironmentVariableOverrideArgs]] = None,
environment_variables: Optional[Sequence[HelmEnvironmentVariableArgs]] = None,
deployment_restrictions: Optional[Sequence[HelmDeploymentRestrictionArgs]] = None,
ports: Optional[Mapping[str, HelmPortsArgs]] = None,
secret_aliases: Optional[Sequence[HelmSecretAliasArgs]] = None,
secret_overrides: Optional[Sequence[HelmSecretOverrideArgs]] = None,
secrets: Optional[Sequence[HelmSecretArgs]] = None,
auto_deploy: Optional[bool] = None,
timeout_sec: Optional[int] = None,
arguments: Optional[Sequence[str]] = None)
func NewHelm(ctx *Context, name string, args HelmArgs, opts ...ResourceOption) (*Helm, error)
public Helm(string name, HelmArgs args, CustomResourceOptions? opts = null)
type: qovery:Helm
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args HelmArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args HelmArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args HelmArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HelmArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args HelmArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var helmResource = new Qovery.Helm("helmResource", new()
{
EnvironmentId = "string",
AllowClusterWideResources = false,
ValuesOverride = new Qovery.Inputs.HelmValuesOverrideArgs
{
Set =
{
{ "string", "string" },
},
SetJson =
{
{ "string", "string" },
},
SetString =
{
{ "string", "string" },
},
File = new Qovery.Inputs.HelmValuesOverrideFileArgs
{
GitRepository = new Qovery.Inputs.HelmValuesOverrideFileGitRepositoryArgs
{
Branch = "string",
Paths = new[]
{
"string",
},
Url = "string",
GitTokenId = "string",
},
Raw =
{
{ "string", new Qovery.Inputs.HelmValuesOverrideFileRawArgs
{
Content = "string",
} },
},
},
},
Source = new Qovery.Inputs.HelmSourceArgs
{
GitRepository = new Qovery.Inputs.HelmSourceGitRepositoryArgs
{
Url = "string",
Branch = "string",
GitTokenId = "string",
RootPath = "string",
},
HelmRepository = new Qovery.Inputs.HelmSourceHelmRepositoryArgs
{
ChartName = "string",
ChartVersion = "string",
HelmRepositoryId = "string",
},
},
EnvironmentVariableAliases = new[]
{
new Qovery.Inputs.HelmEnvironmentVariableAliasArgs
{
Key = "string",
Value = "string",
Id = "string",
},
},
Name = "string",
DeploymentStageId = "string",
AutoPreview = false,
AdvancedSettingsJson = "string",
EnvironmentVariableOverrides = new[]
{
new Qovery.Inputs.HelmEnvironmentVariableOverrideArgs
{
Key = "string",
Value = "string",
Id = "string",
},
},
EnvironmentVariables = new[]
{
new Qovery.Inputs.HelmEnvironmentVariableArgs
{
Key = "string",
Value = "string",
Id = "string",
},
},
DeploymentRestrictions = new[]
{
new Qovery.Inputs.HelmDeploymentRestrictionArgs
{
Mode = "string",
Type = "string",
Value = "string",
Id = "string",
},
},
Ports =
{
{ "string", new Qovery.Inputs.HelmPortsArgs
{
ExternalPort = 0,
InternalPort = 0,
IsDefault = false,
ServiceName = "string",
Namespace = "string",
Protocol = "string",
} },
},
SecretAliases = new[]
{
new Qovery.Inputs.HelmSecretAliasArgs
{
Key = "string",
Value = "string",
Id = "string",
},
},
SecretOverrides = new[]
{
new Qovery.Inputs.HelmSecretOverrideArgs
{
Key = "string",
Value = "string",
Id = "string",
},
},
Secrets = new[]
{
new Qovery.Inputs.HelmSecretArgs
{
Key = "string",
Value = "string",
Id = "string",
},
},
AutoDeploy = false,
TimeoutSec = 0,
Arguments = new[]
{
"string",
},
});
example, err := qovery.NewHelm(ctx, "helmResource", &qovery.HelmArgs{
EnvironmentId: pulumi.String("string"),
AllowClusterWideResources: pulumi.Bool(false),
ValuesOverride: &qovery.HelmValuesOverrideArgs{
Set: pulumi.StringMap{
"string": pulumi.String("string"),
},
SetJson: pulumi.StringMap{
"string": pulumi.String("string"),
},
SetString: pulumi.StringMap{
"string": pulumi.String("string"),
},
File: &qovery.HelmValuesOverrideFileArgs{
GitRepository: &qovery.HelmValuesOverrideFileGitRepositoryArgs{
Branch: pulumi.String("string"),
Paths: pulumi.StringArray{
pulumi.String("string"),
},
Url: pulumi.String("string"),
GitTokenId: pulumi.String("string"),
},
Raw: qovery.HelmValuesOverrideFileRawMap{
"string": &qovery.HelmValuesOverrideFileRawArgs{
Content: pulumi.String("string"),
},
},
},
},
Source: &qovery.HelmSourceArgs{
GitRepository: &qovery.HelmSourceGitRepositoryArgs{
Url: pulumi.String("string"),
Branch: pulumi.String("string"),
GitTokenId: pulumi.String("string"),
RootPath: pulumi.String("string"),
},
HelmRepository: &qovery.HelmSourceHelmRepositoryArgs{
ChartName: pulumi.String("string"),
ChartVersion: pulumi.String("string"),
HelmRepositoryId: pulumi.String("string"),
},
},
EnvironmentVariableAliases: qovery.HelmEnvironmentVariableAliasArray{
&qovery.HelmEnvironmentVariableAliasArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
Id: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
DeploymentStageId: pulumi.String("string"),
AutoPreview: pulumi.Bool(false),
AdvancedSettingsJson: pulumi.String("string"),
EnvironmentVariableOverrides: qovery.HelmEnvironmentVariableOverrideArray{
&qovery.HelmEnvironmentVariableOverrideArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
Id: pulumi.String("string"),
},
},
EnvironmentVariables: qovery.HelmEnvironmentVariableArray{
&qovery.HelmEnvironmentVariableArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
Id: pulumi.String("string"),
},
},
DeploymentRestrictions: qovery.HelmDeploymentRestrictionArray{
&qovery.HelmDeploymentRestrictionArgs{
Mode: pulumi.String("string"),
Type: pulumi.String("string"),
Value: pulumi.String("string"),
Id: pulumi.String("string"),
},
},
Ports: qovery.HelmPortsMap{
"string": &qovery.HelmPortsArgs{
ExternalPort: pulumi.Int(0),
InternalPort: pulumi.Int(0),
IsDefault: pulumi.Bool(false),
ServiceName: pulumi.String("string"),
Namespace: pulumi.String("string"),
Protocol: pulumi.String("string"),
},
},
SecretAliases: qovery.HelmSecretAliasArray{
&qovery.HelmSecretAliasArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
Id: pulumi.String("string"),
},
},
SecretOverrides: qovery.HelmSecretOverrideArray{
&qovery.HelmSecretOverrideArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
Id: pulumi.String("string"),
},
},
Secrets: qovery.HelmSecretArray{
&qovery.HelmSecretArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
Id: pulumi.String("string"),
},
},
AutoDeploy: pulumi.Bool(false),
TimeoutSec: pulumi.Int(0),
Arguments: pulumi.StringArray{
pulumi.String("string"),
},
})
var helmResource = new Helm("helmResource", HelmArgs.builder()
.environmentId("string")
.allowClusterWideResources(false)
.valuesOverride(HelmValuesOverrideArgs.builder()
.set(Map.of("string", "string"))
.setJson(Map.of("string", "string"))
.setString(Map.of("string", "string"))
.file(HelmValuesOverrideFileArgs.builder()
.gitRepository(HelmValuesOverrideFileGitRepositoryArgs.builder()
.branch("string")
.paths("string")
.url("string")
.gitTokenId("string")
.build())
.raw(Map.of("string", Map.of("content", "string")))
.build())
.build())
.source(HelmSourceArgs.builder()
.gitRepository(HelmSourceGitRepositoryArgs.builder()
.url("string")
.branch("string")
.gitTokenId("string")
.rootPath("string")
.build())
.helmRepository(HelmSourceHelmRepositoryArgs.builder()
.chartName("string")
.chartVersion("string")
.helmRepositoryId("string")
.build())
.build())
.environmentVariableAliases(HelmEnvironmentVariableAliasArgs.builder()
.key("string")
.value("string")
.id("string")
.build())
.name("string")
.deploymentStageId("string")
.autoPreview(false)
.advancedSettingsJson("string")
.environmentVariableOverrides(HelmEnvironmentVariableOverrideArgs.builder()
.key("string")
.value("string")
.id("string")
.build())
.environmentVariables(HelmEnvironmentVariableArgs.builder()
.key("string")
.value("string")
.id("string")
.build())
.deploymentRestrictions(HelmDeploymentRestrictionArgs.builder()
.mode("string")
.type("string")
.value("string")
.id("string")
.build())
.ports(Map.of("string", Map.ofEntries(
Map.entry("externalPort", 0),
Map.entry("internalPort", 0),
Map.entry("isDefault", false),
Map.entry("serviceName", "string"),
Map.entry("namespace", "string"),
Map.entry("protocol", "string")
)))
.secretAliases(HelmSecretAliasArgs.builder()
.key("string")
.value("string")
.id("string")
.build())
.secretOverrides(HelmSecretOverrideArgs.builder()
.key("string")
.value("string")
.id("string")
.build())
.secrets(HelmSecretArgs.builder()
.key("string")
.value("string")
.id("string")
.build())
.autoDeploy(false)
.timeoutSec(0)
.arguments("string")
.build());
helm_resource = qovery.Helm("helmResource",
environment_id="string",
allow_cluster_wide_resources=False,
values_override=qovery.HelmValuesOverrideArgs(
set={
"string": "string",
},
set_json={
"string": "string",
},
set_string={
"string": "string",
},
file=qovery.HelmValuesOverrideFileArgs(
git_repository=qovery.HelmValuesOverrideFileGitRepositoryArgs(
branch="string",
paths=["string"],
url="string",
git_token_id="string",
),
raw={
"string": qovery.HelmValuesOverrideFileRawArgs(
content="string",
),
},
),
),
source=qovery.HelmSourceArgs(
git_repository=qovery.HelmSourceGitRepositoryArgs(
url="string",
branch="string",
git_token_id="string",
root_path="string",
),
helm_repository=qovery.HelmSourceHelmRepositoryArgs(
chart_name="string",
chart_version="string",
helm_repository_id="string",
),
),
environment_variable_aliases=[qovery.HelmEnvironmentVariableAliasArgs(
key="string",
value="string",
id="string",
)],
name="string",
deployment_stage_id="string",
auto_preview=False,
advanced_settings_json="string",
environment_variable_overrides=[qovery.HelmEnvironmentVariableOverrideArgs(
key="string",
value="string",
id="string",
)],
environment_variables=[qovery.HelmEnvironmentVariableArgs(
key="string",
value="string",
id="string",
)],
deployment_restrictions=[qovery.HelmDeploymentRestrictionArgs(
mode="string",
type="string",
value="string",
id="string",
)],
ports={
"string": qovery.HelmPortsArgs(
external_port=0,
internal_port=0,
is_default=False,
service_name="string",
namespace="string",
protocol="string",
),
},
secret_aliases=[qovery.HelmSecretAliasArgs(
key="string",
value="string",
id="string",
)],
secret_overrides=[qovery.HelmSecretOverrideArgs(
key="string",
value="string",
id="string",
)],
secrets=[qovery.HelmSecretArgs(
key="string",
value="string",
id="string",
)],
auto_deploy=False,
timeout_sec=0,
arguments=["string"])
const helmResource = new qovery.Helm("helmResource", {
environmentId: "string",
allowClusterWideResources: false,
valuesOverride: {
set: {
string: "string",
},
setJson: {
string: "string",
},
setString: {
string: "string",
},
file: {
gitRepository: {
branch: "string",
paths: ["string"],
url: "string",
gitTokenId: "string",
},
raw: {
string: {
content: "string",
},
},
},
},
source: {
gitRepository: {
url: "string",
branch: "string",
gitTokenId: "string",
rootPath: "string",
},
helmRepository: {
chartName: "string",
chartVersion: "string",
helmRepositoryId: "string",
},
},
environmentVariableAliases: [{
key: "string",
value: "string",
id: "string",
}],
name: "string",
deploymentStageId: "string",
autoPreview: false,
advancedSettingsJson: "string",
environmentVariableOverrides: [{
key: "string",
value: "string",
id: "string",
}],
environmentVariables: [{
key: "string",
value: "string",
id: "string",
}],
deploymentRestrictions: [{
mode: "string",
type: "string",
value: "string",
id: "string",
}],
ports: {
string: {
externalPort: 0,
internalPort: 0,
isDefault: false,
serviceName: "string",
namespace: "string",
protocol: "string",
},
},
secretAliases: [{
key: "string",
value: "string",
id: "string",
}],
secretOverrides: [{
key: "string",
value: "string",
id: "string",
}],
secrets: [{
key: "string",
value: "string",
id: "string",
}],
autoDeploy: false,
timeoutSec: 0,
arguments: ["string"],
});
type: qovery:Helm
properties:
advancedSettingsJson: string
allowClusterWideResources: false
arguments:
- string
autoDeploy: false
autoPreview: false
deploymentRestrictions:
- id: string
mode: string
type: string
value: string
deploymentStageId: string
environmentId: string
environmentVariableAliases:
- id: string
key: string
value: string
environmentVariableOverrides:
- id: string
key: string
value: string
environmentVariables:
- id: string
key: string
value: string
name: string
ports:
string:
externalPort: 0
internalPort: 0
isDefault: false
namespace: string
protocol: string
serviceName: string
secretAliases:
- id: string
key: string
value: string
secretOverrides:
- id: string
key: string
value: string
secrets:
- id: string
key: string
value: string
source:
gitRepository:
branch: string
gitTokenId: string
rootPath: string
url: string
helmRepository:
chartName: string
chartVersion: string
helmRepositoryId: string
timeoutSec: 0
valuesOverride:
file:
gitRepository:
branch: string
gitTokenId: string
paths:
- string
url: string
raw:
string:
content: string
set:
string: string
setJson:
string: string
setString:
string: string
Helm Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Helm resource accepts the following input properties:
- Allow
Cluster boolWide Resources - Allow this chart to deploy resources outside of this environment namespace (including CRDs or non-namespaced resources)
- Environment
Id string - Id of the environment.
- Source
ediri.
Qovery. Inputs. Helm Source - Helm chart from a Helm repository or from a git repository
- Values
Override ediri.Qovery. Inputs. Helm Values Override - Define your own overrides to customize the helm chart behaviour.
- Advanced
Settings stringJson - Advanced settings.
- Arguments List<string>
- Helm arguments
- Auto
Deploy bool - Specify if the service will be automatically updated on every new commit on the branch.
- Auto
Preview bool - Specify if the environment preview option is activated or not for this helm.
- Deployment
Restrictions List<ediri.Qovery. Inputs. Helm Deployment Restriction> - List of deployment restrictions
- Deployment
Stage stringId - Id of the deployment stage.
- Environment
Variable List<ediri.Aliases Qovery. Inputs. Helm Environment Variable Alias> - List of environment variable aliases linked to this helm.
- Environment
Variable List<ediri.Overrides Qovery. Inputs. Helm Environment Variable Override> - List of environment variable overrides linked to this helm.
- Environment
Variables List<ediri.Qovery. Inputs. Helm Environment Variable> - List of environment variables linked to this helm.
- Name string
- Name of the helm.
- Ports
Dictionary<string, ediri.
Qovery. Inputs. Helm Ports Args> - List of ports linked to this helm.
- Secret
Aliases List<ediri.Qovery. Inputs. Helm Secret Alias> - List of secret aliases linked to this helm.
- Secret
Overrides List<ediri.Qovery. Inputs. Helm Secret Override> - List of secret overrides linked to this helm.
- Secrets
List<ediri.
Qovery. Inputs. Helm Secret> - List of secrets linked to this helm.
- Timeout
Sec int - Helm timeout in second
- Allow
Cluster boolWide Resources - Allow this chart to deploy resources outside of this environment namespace (including CRDs or non-namespaced resources)
- Environment
Id string - Id of the environment.
- Source
Helm
Source Args - Helm chart from a Helm repository or from a git repository
- Values
Override HelmValues Override Args - Define your own overrides to customize the helm chart behaviour.
- Advanced
Settings stringJson - Advanced settings.
- Arguments []string
- Helm arguments
- Auto
Deploy bool - Specify if the service will be automatically updated on every new commit on the branch.
- Auto
Preview bool - Specify if the environment preview option is activated or not for this helm.
- Deployment
Restrictions []HelmDeployment Restriction Args - List of deployment restrictions
- Deployment
Stage stringId - Id of the deployment stage.
- Environment
Variable []HelmAliases Environment Variable Alias Args - List of environment variable aliases linked to this helm.
- Environment
Variable []HelmOverrides Environment Variable Override Args - List of environment variable overrides linked to this helm.
- Environment
Variables []HelmEnvironment Variable Args - List of environment variables linked to this helm.
- Name string
- Name of the helm.
- Ports
map[string]Helm
Ports Args - List of ports linked to this helm.
- Secret
Aliases []HelmSecret Alias Args - List of secret aliases linked to this helm.
- Secret
Overrides []HelmSecret Override Args - List of secret overrides linked to this helm.
- Secrets
[]Helm
Secret Args - List of secrets linked to this helm.
- Timeout
Sec int - Helm timeout in second
- allow
Cluster BooleanWide Resources - Allow this chart to deploy resources outside of this environment namespace (including CRDs or non-namespaced resources)
- environment
Id String - Id of the environment.
- source
Helm
Source - Helm chart from a Helm repository or from a git repository
- values
Override HelmValues Override - Define your own overrides to customize the helm chart behaviour.
- advanced
Settings StringJson - Advanced settings.
- arguments List<String>
- Helm arguments
- auto
Deploy Boolean - Specify if the service will be automatically updated on every new commit on the branch.
- auto
Preview Boolean - Specify if the environment preview option is activated or not for this helm.
- deployment
Restrictions List<HelmDeployment Restriction> - List of deployment restrictions
- deployment
Stage StringId - Id of the deployment stage.
- environment
Variable List<HelmAliases Environment Variable Alias> - List of environment variable aliases linked to this helm.
- environment
Variable List<HelmOverrides Environment Variable Override> - List of environment variable overrides linked to this helm.
- environment
Variables List<HelmEnvironment Variable> - List of environment variables linked to this helm.
- name String
- Name of the helm.
- ports
Map<String,Helm
Ports Args> - List of ports linked to this helm.
- secret
Aliases List<HelmSecret Alias> - List of secret aliases linked to this helm.
- secret
Overrides List<HelmSecret Override> - List of secret overrides linked to this helm.
- secrets
List<Helm
Secret> - List of secrets linked to this helm.
- timeout
Sec Integer - Helm timeout in second
- allow
Cluster booleanWide Resources - Allow this chart to deploy resources outside of this environment namespace (including CRDs or non-namespaced resources)
- environment
Id string - Id of the environment.
- source
Helm
Source - Helm chart from a Helm repository or from a git repository
- values
Override HelmValues Override - Define your own overrides to customize the helm chart behaviour.
- advanced
Settings stringJson - Advanced settings.
- arguments string[]
- Helm arguments
- auto
Deploy boolean - Specify if the service will be automatically updated on every new commit on the branch.
- auto
Preview boolean - Specify if the environment preview option is activated or not for this helm.
- deployment
Restrictions HelmDeployment Restriction[] - List of deployment restrictions
- deployment
Stage stringId - Id of the deployment stage.
- environment
Variable HelmAliases Environment Variable Alias[] - List of environment variable aliases linked to this helm.
- environment
Variable HelmOverrides Environment Variable Override[] - List of environment variable overrides linked to this helm.
- environment
Variables HelmEnvironment Variable[] - List of environment variables linked to this helm.
- name string
- Name of the helm.
- ports
{[key: string]: Helm
Ports Args} - List of ports linked to this helm.
- secret
Aliases HelmSecret Alias[] - List of secret aliases linked to this helm.
- secret
Overrides HelmSecret Override[] - List of secret overrides linked to this helm.
- secrets
Helm
Secret[] - List of secrets linked to this helm.
- timeout
Sec number - Helm timeout in second
- allow_
cluster_ boolwide_ resources - Allow this chart to deploy resources outside of this environment namespace (including CRDs or non-namespaced resources)
- environment_
id str - Id of the environment.
- source
Helm
Source Args - Helm chart from a Helm repository or from a git repository
- values_
override HelmValues Override Args - Define your own overrides to customize the helm chart behaviour.
- advanced_
settings_ strjson - Advanced settings.
- arguments Sequence[str]
- Helm arguments
- auto_
deploy bool - Specify if the service will be automatically updated on every new commit on the branch.
- auto_
preview bool - Specify if the environment preview option is activated or not for this helm.
- deployment_
restrictions Sequence[HelmDeployment Restriction Args] - List of deployment restrictions
- deployment_
stage_ strid - Id of the deployment stage.
- environment_
variable_ Sequence[Helmaliases Environment Variable Alias Args] - List of environment variable aliases linked to this helm.
- environment_
variable_ Sequence[Helmoverrides Environment Variable Override Args] - List of environment variable overrides linked to this helm.
- environment_
variables Sequence[HelmEnvironment Variable Args] - List of environment variables linked to this helm.
- name str
- Name of the helm.
- ports
Mapping[str, Helm
Ports Args] - List of ports linked to this helm.
- secret_
aliases Sequence[HelmSecret Alias Args] - List of secret aliases linked to this helm.
- secret_
overrides Sequence[HelmSecret Override Args] - List of secret overrides linked to this helm.
- secrets
Sequence[Helm
Secret Args] - List of secrets linked to this helm.
- timeout_
sec int - Helm timeout in second
- allow
Cluster BooleanWide Resources - Allow this chart to deploy resources outside of this environment namespace (including CRDs or non-namespaced resources)
- environment
Id String - Id of the environment.
- source Property Map
- Helm chart from a Helm repository or from a git repository
- values
Override Property Map - Define your own overrides to customize the helm chart behaviour.
- advanced
Settings StringJson - Advanced settings.
- arguments List<String>
- Helm arguments
- auto
Deploy Boolean - Specify if the service will be automatically updated on every new commit on the branch.
- auto
Preview Boolean - Specify if the environment preview option is activated or not for this helm.
- deployment
Restrictions List<Property Map> - List of deployment restrictions
- deployment
Stage StringId - Id of the deployment stage.
- environment
Variable List<Property Map>Aliases - List of environment variable aliases linked to this helm.
- environment
Variable List<Property Map>Overrides - List of environment variable overrides linked to this helm.
- environment
Variables List<Property Map> - List of environment variables linked to this helm.
- name String
- Name of the helm.
- ports Map<Property Map>
- List of ports linked to this helm.
- secret
Aliases List<Property Map> - List of secret aliases linked to this helm.
- secret
Overrides List<Property Map> - List of secret overrides linked to this helm.
- secrets List<Property Map>
- List of secrets linked to this helm.
- timeout
Sec Number - Helm timeout in second
Outputs
All input properties are implicitly available as output properties. Additionally, the Helm resource produces the following output properties:
- Built
In List<ediri.Environment Variables Qovery. Outputs. Helm Built In Environment Variable> - List of built-in environment variables linked to this helm.
- External
Host string - The helm external FQDN host [NOTE: only if your helm is using a publicly accessible port].
- Id string
- The provider-assigned unique ID for this managed resource.
- Internal
Host string - The helm internal host.
- Built
In []HelmEnvironment Variables Built In Environment Variable - List of built-in environment variables linked to this helm.
- External
Host string - The helm external FQDN host [NOTE: only if your helm is using a publicly accessible port].
- Id string
- The provider-assigned unique ID for this managed resource.
- Internal
Host string - The helm internal host.
- built
In List<HelmEnvironment Variables Built In Environment Variable> - List of built-in environment variables linked to this helm.
- external
Host String - The helm external FQDN host [NOTE: only if your helm is using a publicly accessible port].
- id String
- The provider-assigned unique ID for this managed resource.
- internal
Host String - The helm internal host.
- built
In HelmEnvironment Variables Built In Environment Variable[] - List of built-in environment variables linked to this helm.
- external
Host string - The helm external FQDN host [NOTE: only if your helm is using a publicly accessible port].
- id string
- The provider-assigned unique ID for this managed resource.
- internal
Host string - The helm internal host.
- built_
in_ Sequence[Helmenvironment_ variables Built In Environment Variable] - List of built-in environment variables linked to this helm.
- external_
host str - The helm external FQDN host [NOTE: only if your helm is using a publicly accessible port].
- id str
- The provider-assigned unique ID for this managed resource.
- internal_
host str - The helm internal host.
- built
In List<Property Map>Environment Variables - List of built-in environment variables linked to this helm.
- external
Host String - The helm external FQDN host [NOTE: only if your helm is using a publicly accessible port].
- id String
- The provider-assigned unique ID for this managed resource.
- internal
Host String - The helm internal host.
Look up Existing Helm Resource
Get an existing Helm resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: HelmState, opts?: CustomResourceOptions): Helm
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
advanced_settings_json: Optional[str] = None,
allow_cluster_wide_resources: Optional[bool] = None,
arguments: Optional[Sequence[str]] = None,
auto_deploy: Optional[bool] = None,
auto_preview: Optional[bool] = None,
built_in_environment_variables: Optional[Sequence[HelmBuiltInEnvironmentVariableArgs]] = None,
deployment_restrictions: Optional[Sequence[HelmDeploymentRestrictionArgs]] = None,
deployment_stage_id: Optional[str] = None,
environment_id: Optional[str] = None,
environment_variable_aliases: Optional[Sequence[HelmEnvironmentVariableAliasArgs]] = None,
environment_variable_overrides: Optional[Sequence[HelmEnvironmentVariableOverrideArgs]] = None,
environment_variables: Optional[Sequence[HelmEnvironmentVariableArgs]] = None,
external_host: Optional[str] = None,
internal_host: Optional[str] = None,
name: Optional[str] = None,
ports: Optional[Mapping[str, HelmPortsArgs]] = None,
secret_aliases: Optional[Sequence[HelmSecretAliasArgs]] = None,
secret_overrides: Optional[Sequence[HelmSecretOverrideArgs]] = None,
secrets: Optional[Sequence[HelmSecretArgs]] = None,
source: Optional[HelmSourceArgs] = None,
timeout_sec: Optional[int] = None,
values_override: Optional[HelmValuesOverrideArgs] = None) -> Helm
func GetHelm(ctx *Context, name string, id IDInput, state *HelmState, opts ...ResourceOption) (*Helm, error)
public static Helm Get(string name, Input<string> id, HelmState? state, CustomResourceOptions? opts = null)
public static Helm get(String name, Output<String> id, HelmState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Advanced
Settings stringJson - Advanced settings.
- Allow
Cluster boolWide Resources - Allow this chart to deploy resources outside of this environment namespace (including CRDs or non-namespaced resources)
- Arguments List<string>
- Helm arguments
- Auto
Deploy bool - Specify if the service will be automatically updated on every new commit on the branch.
- Auto
Preview bool - Specify if the environment preview option is activated or not for this helm.
- Built
In List<ediri.Environment Variables Qovery. Inputs. Helm Built In Environment Variable> - List of built-in environment variables linked to this helm.
- Deployment
Restrictions List<ediri.Qovery. Inputs. Helm Deployment Restriction> - List of deployment restrictions
- Deployment
Stage stringId - Id of the deployment stage.
- Environment
Id string - Id of the environment.
- Environment
Variable List<ediri.Aliases Qovery. Inputs. Helm Environment Variable Alias> - List of environment variable aliases linked to this helm.
- Environment
Variable List<ediri.Overrides Qovery. Inputs. Helm Environment Variable Override> - List of environment variable overrides linked to this helm.
- Environment
Variables List<ediri.Qovery. Inputs. Helm Environment Variable> - List of environment variables linked to this helm.
- External
Host string - The helm external FQDN host [NOTE: only if your helm is using a publicly accessible port].
- Internal
Host string - The helm internal host.
- Name string
- Name of the helm.
- Ports
Dictionary<string, ediri.
Qovery. Inputs. Helm Ports Args> - List of ports linked to this helm.
- Secret
Aliases List<ediri.Qovery. Inputs. Helm Secret Alias> - List of secret aliases linked to this helm.
- Secret
Overrides List<ediri.Qovery. Inputs. Helm Secret Override> - List of secret overrides linked to this helm.
- Secrets
List<ediri.
Qovery. Inputs. Helm Secret> - List of secrets linked to this helm.
- Source
ediri.
Qovery. Inputs. Helm Source - Helm chart from a Helm repository or from a git repository
- Timeout
Sec int - Helm timeout in second
- Values
Override ediri.Qovery. Inputs. Helm Values Override - Define your own overrides to customize the helm chart behaviour.
- Advanced
Settings stringJson - Advanced settings.
- Allow
Cluster boolWide Resources - Allow this chart to deploy resources outside of this environment namespace (including CRDs or non-namespaced resources)
- Arguments []string
- Helm arguments
- Auto
Deploy bool - Specify if the service will be automatically updated on every new commit on the branch.
- Auto
Preview bool - Specify if the environment preview option is activated or not for this helm.
- Built
In []HelmEnvironment Variables Built In Environment Variable Args - List of built-in environment variables linked to this helm.
- Deployment
Restrictions []HelmDeployment Restriction Args - List of deployment restrictions
- Deployment
Stage stringId - Id of the deployment stage.
- Environment
Id string - Id of the environment.
- Environment
Variable []HelmAliases Environment Variable Alias Args - List of environment variable aliases linked to this helm.
- Environment
Variable []HelmOverrides Environment Variable Override Args - List of environment variable overrides linked to this helm.
- Environment
Variables []HelmEnvironment Variable Args - List of environment variables linked to this helm.
- External
Host string - The helm external FQDN host [NOTE: only if your helm is using a publicly accessible port].
- Internal
Host string - The helm internal host.
- Name string
- Name of the helm.
- Ports
map[string]Helm
Ports Args - List of ports linked to this helm.
- Secret
Aliases []HelmSecret Alias Args - List of secret aliases linked to this helm.
- Secret
Overrides []HelmSecret Override Args - List of secret overrides linked to this helm.
- Secrets
[]Helm
Secret Args - List of secrets linked to this helm.
- Source
Helm
Source Args - Helm chart from a Helm repository or from a git repository
- Timeout
Sec int - Helm timeout in second
- Values
Override HelmValues Override Args - Define your own overrides to customize the helm chart behaviour.
- advanced
Settings StringJson - Advanced settings.
- allow
Cluster BooleanWide Resources - Allow this chart to deploy resources outside of this environment namespace (including CRDs or non-namespaced resources)
- arguments List<String>
- Helm arguments
- auto
Deploy Boolean - Specify if the service will be automatically updated on every new commit on the branch.
- auto
Preview Boolean - Specify if the environment preview option is activated or not for this helm.
- built
In List<HelmEnvironment Variables Built In Environment Variable> - List of built-in environment variables linked to this helm.
- deployment
Restrictions List<HelmDeployment Restriction> - List of deployment restrictions
- deployment
Stage StringId - Id of the deployment stage.
- environment
Id String - Id of the environment.
- environment
Variable List<HelmAliases Environment Variable Alias> - List of environment variable aliases linked to this helm.
- environment
Variable List<HelmOverrides Environment Variable Override> - List of environment variable overrides linked to this helm.
- environment
Variables List<HelmEnvironment Variable> - List of environment variables linked to this helm.
- external
Host String - The helm external FQDN host [NOTE: only if your helm is using a publicly accessible port].
- internal
Host String - The helm internal host.
- name String
- Name of the helm.
- ports
Map<String,Helm
Ports Args> - List of ports linked to this helm.
- secret
Aliases List<HelmSecret Alias> - List of secret aliases linked to this helm.
- secret
Overrides List<HelmSecret Override> - List of secret overrides linked to this helm.
- secrets
List<Helm
Secret> - List of secrets linked to this helm.
- source
Helm
Source - Helm chart from a Helm repository or from a git repository
- timeout
Sec Integer - Helm timeout in second
- values
Override HelmValues Override - Define your own overrides to customize the helm chart behaviour.
- advanced
Settings stringJson - Advanced settings.
- allow
Cluster booleanWide Resources - Allow this chart to deploy resources outside of this environment namespace (including CRDs or non-namespaced resources)
- arguments string[]
- Helm arguments
- auto
Deploy boolean - Specify if the service will be automatically updated on every new commit on the branch.
- auto
Preview boolean - Specify if the environment preview option is activated or not for this helm.
- built
In HelmEnvironment Variables Built In Environment Variable[] - List of built-in environment variables linked to this helm.
- deployment
Restrictions HelmDeployment Restriction[] - List of deployment restrictions
- deployment
Stage stringId - Id of the deployment stage.
- environment
Id string - Id of the environment.
- environment
Variable HelmAliases Environment Variable Alias[] - List of environment variable aliases linked to this helm.
- environment
Variable HelmOverrides Environment Variable Override[] - List of environment variable overrides linked to this helm.
- environment
Variables HelmEnvironment Variable[] - List of environment variables linked to this helm.
- external
Host string - The helm external FQDN host [NOTE: only if your helm is using a publicly accessible port].
- internal
Host string - The helm internal host.
- name string
- Name of the helm.
- ports
{[key: string]: Helm
Ports Args} - List of ports linked to this helm.
- secret
Aliases HelmSecret Alias[] - List of secret aliases linked to this helm.
- secret
Overrides HelmSecret Override[] - List of secret overrides linked to this helm.
- secrets
Helm
Secret[] - List of secrets linked to this helm.
- source
Helm
Source - Helm chart from a Helm repository or from a git repository
- timeout
Sec number - Helm timeout in second
- values
Override HelmValues Override - Define your own overrides to customize the helm chart behaviour.
- advanced_
settings_ strjson - Advanced settings.
- allow_
cluster_ boolwide_ resources - Allow this chart to deploy resources outside of this environment namespace (including CRDs or non-namespaced resources)
- arguments Sequence[str]
- Helm arguments
- auto_
deploy bool - Specify if the service will be automatically updated on every new commit on the branch.
- auto_
preview bool - Specify if the environment preview option is activated or not for this helm.
- built_
in_ Sequence[Helmenvironment_ variables Built In Environment Variable Args] - List of built-in environment variables linked to this helm.
- deployment_
restrictions Sequence[HelmDeployment Restriction Args] - List of deployment restrictions
- deployment_
stage_ strid - Id of the deployment stage.
- environment_
id str - Id of the environment.
- environment_
variable_ Sequence[Helmaliases Environment Variable Alias Args] - List of environment variable aliases linked to this helm.
- environment_
variable_ Sequence[Helmoverrides Environment Variable Override Args] - List of environment variable overrides linked to this helm.
- environment_
variables Sequence[HelmEnvironment Variable Args] - List of environment variables linked to this helm.
- external_
host str - The helm external FQDN host [NOTE: only if your helm is using a publicly accessible port].
- internal_
host str - The helm internal host.
- name str
- Name of the helm.
- ports
Mapping[str, Helm
Ports Args] - List of ports linked to this helm.
- secret_
aliases Sequence[HelmSecret Alias Args] - List of secret aliases linked to this helm.
- secret_
overrides Sequence[HelmSecret Override Args] - List of secret overrides linked to this helm.
- secrets
Sequence[Helm
Secret Args] - List of secrets linked to this helm.
- source
Helm
Source Args - Helm chart from a Helm repository or from a git repository
- timeout_
sec int - Helm timeout in second
- values_
override HelmValues Override Args - Define your own overrides to customize the helm chart behaviour.
- advanced
Settings StringJson - Advanced settings.
- allow
Cluster BooleanWide Resources - Allow this chart to deploy resources outside of this environment namespace (including CRDs or non-namespaced resources)
- arguments List<String>
- Helm arguments
- auto
Deploy Boolean - Specify if the service will be automatically updated on every new commit on the branch.
- auto
Preview Boolean - Specify if the environment preview option is activated or not for this helm.
- built
In List<Property Map>Environment Variables - List of built-in environment variables linked to this helm.
- deployment
Restrictions List<Property Map> - List of deployment restrictions
- deployment
Stage StringId - Id of the deployment stage.
- environment
Id String - Id of the environment.
- environment
Variable List<Property Map>Aliases - List of environment variable aliases linked to this helm.
- environment
Variable List<Property Map>Overrides - List of environment variable overrides linked to this helm.
- environment
Variables List<Property Map> - List of environment variables linked to this helm.
- external
Host String - The helm external FQDN host [NOTE: only if your helm is using a publicly accessible port].
- internal
Host String - The helm internal host.
- name String
- Name of the helm.
- ports Map<Property Map>
- List of ports linked to this helm.
- secret
Aliases List<Property Map> - List of secret aliases linked to this helm.
- secret
Overrides List<Property Map> - List of secret overrides linked to this helm.
- secrets List<Property Map>
- List of secrets linked to this helm.
- source Property Map
- Helm chart from a Helm repository or from a git repository
- timeout
Sec Number - Helm timeout in second
- values
Override Property Map - Define your own overrides to customize the helm chart behaviour.
Supporting Types
HelmBuiltInEnvironmentVariable, HelmBuiltInEnvironmentVariableArgs
HelmDeploymentRestriction, HelmDeploymentRestrictionArgs
HelmEnvironmentVariable, HelmEnvironmentVariableArgs
HelmEnvironmentVariableAlias, HelmEnvironmentVariableAliasArgs
HelmEnvironmentVariableOverride, HelmEnvironmentVariableOverrideArgs
HelmPorts, HelmPortsArgs
- External
Port int - External port of the container.
- Required if:
ports.publicly_accessible=true
. - Must be:>= 1
and<= 65535
. - Internal
Port int - Internal port of the container.
- Must be:
>= 1
and<= 65535
. - Is
Default bool - If this port will be used for the root domain
- Service
Name string - Namespace string
- Protocol string
- Protocol used for the port of the container.
- Can be:
GRPC
,HTTP
. - Default:HTTP
.
- External
Port int - External port of the container.
- Required if:
ports.publicly_accessible=true
. - Must be:>= 1
and<= 65535
. - Internal
Port int - Internal port of the container.
- Must be:
>= 1
and<= 65535
. - Is
Default bool - If this port will be used for the root domain
- Service
Name string - Namespace string
- Protocol string
- Protocol used for the port of the container.
- Can be:
GRPC
,HTTP
. - Default:HTTP
.
- external
Port Integer - External port of the container.
- Required if:
ports.publicly_accessible=true
. - Must be:>= 1
and<= 65535
. - internal
Port Integer - Internal port of the container.
- Must be:
>= 1
and<= 65535
. - is
Default Boolean - If this port will be used for the root domain
- service
Name String - namespace String
- protocol String
- Protocol used for the port of the container.
- Can be:
GRPC
,HTTP
. - Default:HTTP
.
- external
Port number - External port of the container.
- Required if:
ports.publicly_accessible=true
. - Must be:>= 1
and<= 65535
. - internal
Port number - Internal port of the container.
- Must be:
>= 1
and<= 65535
. - is
Default boolean - If this port will be used for the root domain
- service
Name string - namespace string
- protocol string
- Protocol used for the port of the container.
- Can be:
GRPC
,HTTP
. - Default:HTTP
.
- external_
port int - External port of the container.
- Required if:
ports.publicly_accessible=true
. - Must be:>= 1
and<= 65535
. - internal_
port int - Internal port of the container.
- Must be:
>= 1
and<= 65535
. - is_
default bool - If this port will be used for the root domain
- service_
name str - namespace str
- protocol str
- Protocol used for the port of the container.
- Can be:
GRPC
,HTTP
. - Default:HTTP
.
- external
Port Number - External port of the container.
- Required if:
ports.publicly_accessible=true
. - Must be:>= 1
and<= 65535
. - internal
Port Number - Internal port of the container.
- Must be:
>= 1
and<= 65535
. - is
Default Boolean - If this port will be used for the root domain
- service
Name String - namespace String
- protocol String
- Protocol used for the port of the container.
- Can be:
GRPC
,HTTP
. - Default:HTTP
.
HelmSecret, HelmSecretArgs
HelmSecretAlias, HelmSecretAliasArgs
HelmSecretOverride, HelmSecretOverrideArgs
HelmSource, HelmSourceArgs
- Git
Repository ediri.Qovery. Inputs. Helm Source Git Repository - Git repository
- Helm
Repository ediri.Qovery. Inputs. Helm Source Helm Repository - Helm repositories can be private or public
- Git
Repository HelmSource Git Repository - Git repository
- Helm
Repository HelmSource Helm Repository - Helm repositories can be private or public
- git
Repository HelmSource Git Repository - Git repository
- helm
Repository HelmSource Helm Repository - Helm repositories can be private or public
- git
Repository HelmSource Git Repository - Git repository
- helm
Repository HelmSource Helm Repository - Helm repositories can be private or public
- git_
repository HelmSource Git Repository - Git repository
- helm_
repository HelmSource Helm Repository - Helm repositories can be private or public
- git
Repository Property Map - Git repository
- helm
Repository Property Map - Helm repositories can be private or public
HelmSourceGitRepository, HelmSourceGitRepositoryArgs
- Url string
- Helm's source git repository URL
- Branch string
- Helm's source git repository branch
- Git
Token stringId - The git token ID to be used
- Root
Path string - Helm's source git repository root path
- Url string
- Helm's source git repository URL
- Branch string
- Helm's source git repository branch
- Git
Token stringId - The git token ID to be used
- Root
Path string - Helm's source git repository root path
- url String
- Helm's source git repository URL
- branch String
- Helm's source git repository branch
- git
Token StringId - The git token ID to be used
- root
Path String - Helm's source git repository root path
- url string
- Helm's source git repository URL
- branch string
- Helm's source git repository branch
- git
Token stringId - The git token ID to be used
- root
Path string - Helm's source git repository root path
- url str
- Helm's source git repository URL
- branch str
- Helm's source git repository branch
- git_
token_ strid - The git token ID to be used
- root_
path str - Helm's source git repository root path
- url String
- Helm's source git repository URL
- branch String
- Helm's source git repository branch
- git
Token StringId - The git token ID to be used
- root
Path String - Helm's source git repository root path
HelmSourceHelmRepository, HelmSourceHelmRepositoryArgs
- Chart
Name string - Chart name
- Chart
Version string - Chart version
- Helm
Repository stringId - helm repository id
- Chart
Name string - Chart name
- Chart
Version string - Chart version
- Helm
Repository stringId - helm repository id
- chart
Name String - Chart name
- chart
Version String - Chart version
- helm
Repository StringId - helm repository id
- chart
Name string - Chart name
- chart
Version string - Chart version
- helm
Repository stringId - helm repository id
- chart_
name str - Chart name
- chart_
version str - Chart version
- helm_
repository_ strid - helm repository id
- chart
Name String - Chart name
- chart
Version String - Chart version
- helm
Repository StringId - helm repository id
HelmValuesOverride, HelmValuesOverrideArgs
- Set Dictionary<string, string>
- Set
Json Dictionary<string, string> - Set
String Dictionary<string, string> - File
ediri.
Qovery. Inputs. Helm Values Override File - Define the overrides by selecting a YAML file from a git repository (preferred) or by passing raw YAML files.
- Set map[string]string
- Set
Json map[string]string - Set
String map[string]string - File
Helm
Values Override File - Define the overrides by selecting a YAML file from a git repository (preferred) or by passing raw YAML files.
- set Map<String,String>
- set
Json Map<String,String> - set
String Map<String,String> - file
Helm
Values Override File - Define the overrides by selecting a YAML file from a git repository (preferred) or by passing raw YAML files.
- set {[key: string]: string}
- set
Json {[key: string]: string} - set
String {[key: string]: string} - file
Helm
Values Override File - Define the overrides by selecting a YAML file from a git repository (preferred) or by passing raw YAML files.
- set Mapping[str, str]
- set_
json Mapping[str, str] - set_
string Mapping[str, str] - file
Helm
Values Override File - Define the overrides by selecting a YAML file from a git repository (preferred) or by passing raw YAML files.
- set Map<String>
- set
Json Map<String> - set
String Map<String> - file Property Map
- Define the overrides by selecting a YAML file from a git repository (preferred) or by passing raw YAML files.
HelmValuesOverrideFile, HelmValuesOverrideFileArgs
- Git
Repository ediri.Qovery. Inputs. Helm Values Override File Git Repository - YAML file from a git repository
- Raw
Dictionary<string, ediri.
Qovery. Inputs. Helm Values Override File Raw> - Raw YAML files
- Git
Repository HelmValues Override File Git Repository - YAML file from a git repository
- Raw
map[string]Helm
Values Override File Raw - Raw YAML files
- git
Repository HelmValues Override File Git Repository - YAML file from a git repository
- raw
Map<String,Helm
Values Override File Raw> - Raw YAML files
- git
Repository HelmValues Override File Git Repository - YAML file from a git repository
- raw
{[key: string]: Helm
Values Override File Raw} - Raw YAML files
- git_
repository HelmValues Override File Git Repository - YAML file from a git repository
- raw
Mapping[str, Helm
Values Override File Raw] - Raw YAML files
- git
Repository Property Map - YAML file from a git repository
- raw Map<Property Map>
- Raw YAML files
HelmValuesOverrideFileGitRepository, HelmValuesOverrideFileGitRepositoryArgs
- Branch string
- YAML file git repository branch
- Paths List<string>
- YAML files git repository paths
- Url string
- YAML file git repository URL
- Git
Token stringId - The git token ID to be used
- Branch string
- YAML file git repository branch
- Paths []string
- YAML files git repository paths
- Url string
- YAML file git repository URL
- Git
Token stringId - The git token ID to be used
- branch String
- YAML file git repository branch
- paths List<String>
- YAML files git repository paths
- url String
- YAML file git repository URL
- git
Token StringId - The git token ID to be used
- branch string
- YAML file git repository branch
- paths string[]
- YAML files git repository paths
- url string
- YAML file git repository URL
- git
Token stringId - The git token ID to be used
- branch str
- YAML file git repository branch
- paths Sequence[str]
- YAML files git repository paths
- url str
- YAML file git repository URL
- git_
token_ strid - The git token ID to be used
- branch String
- YAML file git repository branch
- paths List<String>
- YAML files git repository paths
- url String
- YAML file git repository URL
- git
Token StringId - The git token ID to be used
HelmValuesOverrideFileRaw, HelmValuesOverrideFileRawArgs
- Content string
- content of the file
- Content string
- content of the file
- content String
- content of the file
- content string
- content of the file
- content str
- content of the file
- content String
- content of the file
Import
$ pulumi import qovery:index/helm:Helm my_helm "<helm_id>"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- qovery dirien/pulumi-qovery
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
qovery
Terraform Provider.