Qovery v0.28.10 published on Friday, Jun 7, 2024 by dirien
qovery.getContainer
Explore with Pulumi AI
# qovery.Container (Data Source)
Provides a Qovery container resource. This can be used to create and manage Qovery container registry.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as qovery from "@pulumi/qovery";
const myContainer = qovery.getContainer({
id: "<container_id>",
});
import pulumi
import pulumi_qovery as qovery
my_container = qovery.get_container(id="<container_id>")
package main
import (
"github.com/dirien/pulumi-qovery/sdk/go/qovery"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := qovery.LookupContainer(ctx, &qovery.LookupContainerArgs{
Id: "<container_id>",
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Qovery = Pulumi.Qovery;
return await Deployment.RunAsync(() =>
{
var myContainer = Qovery.GetContainer.Invoke(new()
{
Id = "<container_id>",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.qovery.QoveryFunctions;
import com.pulumi.qovery.inputs.GetContainerArgs;
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) {
final var myContainer = QoveryFunctions.getContainer(GetContainerArgs.builder()
.id("<container_id>")
.build());
}
}
variables:
myContainer:
fn::invoke:
Function: qovery:getContainer
Arguments:
id: <container_id>
Using getContainer
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getContainer(args: GetContainerArgs, opts?: InvokeOptions): Promise<GetContainerResult>
function getContainerOutput(args: GetContainerOutputArgs, opts?: InvokeOptions): Output<GetContainerResult>
def get_container(advanced_settings_json: Optional[str] = None,
arguments: Optional[Sequence[str]] = None,
auto_deploy: Optional[bool] = None,
auto_preview: Optional[bool] = None,
cpu: Optional[int] = None,
custom_domains: Optional[Sequence[GetContainerCustomDomain]] = None,
deployment_stage_id: Optional[str] = None,
entrypoint: Optional[str] = None,
environment_variable_aliases: Optional[Sequence[GetContainerEnvironmentVariableAlias]] = None,
environment_variable_overrides: Optional[Sequence[GetContainerEnvironmentVariableOverride]] = None,
environment_variables: Optional[Sequence[GetContainerEnvironmentVariable]] = None,
healthchecks: Optional[GetContainerHealthchecks] = None,
id: Optional[str] = None,
max_running_instances: Optional[int] = None,
memory: Optional[int] = None,
min_running_instances: Optional[int] = None,
ports: Optional[Sequence[GetContainerPort]] = None,
secret_aliases: Optional[Sequence[GetContainerSecretAlias]] = None,
secret_overrides: Optional[Sequence[GetContainerSecretOverride]] = None,
secrets: Optional[Sequence[GetContainerSecret]] = None,
storages: Optional[Sequence[GetContainerStorage]] = None,
opts: Optional[InvokeOptions] = None) -> GetContainerResult
def get_container_output(advanced_settings_json: Optional[pulumi.Input[str]] = None,
arguments: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
auto_deploy: Optional[pulumi.Input[bool]] = None,
auto_preview: Optional[pulumi.Input[bool]] = None,
cpu: Optional[pulumi.Input[int]] = None,
custom_domains: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerCustomDomainArgs]]]] = None,
deployment_stage_id: Optional[pulumi.Input[str]] = None,
entrypoint: Optional[pulumi.Input[str]] = None,
environment_variable_aliases: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerEnvironmentVariableAliasArgs]]]] = None,
environment_variable_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerEnvironmentVariableOverrideArgs]]]] = None,
environment_variables: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerEnvironmentVariableArgs]]]] = None,
healthchecks: Optional[pulumi.Input[GetContainerHealthchecksArgs]] = None,
id: Optional[pulumi.Input[str]] = None,
max_running_instances: Optional[pulumi.Input[int]] = None,
memory: Optional[pulumi.Input[int]] = None,
min_running_instances: Optional[pulumi.Input[int]] = None,
ports: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerPortArgs]]]] = None,
secret_aliases: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerSecretAliasArgs]]]] = None,
secret_overrides: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerSecretOverrideArgs]]]] = None,
secrets: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerSecretArgs]]]] = None,
storages: Optional[pulumi.Input[Sequence[pulumi.Input[GetContainerStorageArgs]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetContainerResult]
func LookupContainer(ctx *Context, args *LookupContainerArgs, opts ...InvokeOption) (*LookupContainerResult, error)
func LookupContainerOutput(ctx *Context, args *LookupContainerOutputArgs, opts ...InvokeOption) LookupContainerResultOutput
> Note: This function is named LookupContainer
in the Go SDK.
public static class GetContainer
{
public static Task<GetContainerResult> InvokeAsync(GetContainerArgs args, InvokeOptions? opts = null)
public static Output<GetContainerResult> Invoke(GetContainerInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetContainerResult> getContainer(GetContainerArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: qovery:index/getContainer:getContainer
arguments:
# arguments dictionary
The following arguments are supported:
- Id string
- Advanced
Settings stringJson - Arguments List<string>
- Auto
Deploy bool - Auto
Preview bool - Cpu int
- Custom
Domains List<ediri.Qovery. Inputs. Get Container Custom Domain> - Deployment
Stage stringId - Entrypoint string
- Environment
Variable List<ediri.Aliases Qovery. Inputs. Get Container Environment Variable Alias> - Environment
Variable List<ediri.Overrides Qovery. Inputs. Get Container Environment Variable Override> - Environment
Variables List<ediri.Qovery. Inputs. Get Container Environment Variable> - Healthchecks
ediri.
Qovery. Inputs. Get Container Healthchecks - Max
Running intInstances - Memory int
- Min
Running intInstances - Ports
List<ediri.
Qovery. Inputs. Get Container Port> - Secret
Aliases List<ediri.Qovery. Inputs. Get Container Secret Alias> - Secret
Overrides List<ediri.Qovery. Inputs. Get Container Secret Override> - Secrets
List<ediri.
Qovery. Inputs. Get Container Secret> - Storages
List<ediri.
Qovery. Inputs. Get Container Storage>
- Id string
- Advanced
Settings stringJson - Arguments []string
- Auto
Deploy bool - Auto
Preview bool - Cpu int
- Custom
Domains []GetContainer Custom Domain - Deployment
Stage stringId - Entrypoint string
- Environment
Variable []GetAliases Container Environment Variable Alias - Environment
Variable []GetOverrides Container Environment Variable Override - Environment
Variables []GetContainer Environment Variable - Healthchecks
Get
Container Healthchecks - Max
Running intInstances - Memory int
- Min
Running intInstances - Ports
[]Get
Container Port - Secret
Aliases []GetContainer Secret Alias - Secret
Overrides []GetContainer Secret Override - Secrets
[]Get
Container Secret - Storages
[]Get
Container Storage
- id String
- advanced
Settings StringJson - arguments List<String>
- auto
Deploy Boolean - auto
Preview Boolean - cpu Integer
- custom
Domains List<GetContainer Custom Domain> - deployment
Stage StringId - entrypoint String
- environment
Variable List<GetAliases Container Environment Variable Alias> - environment
Variable List<GetOverrides Container Environment Variable Override> - environment
Variables List<GetContainer Environment Variable> - healthchecks
Get
Container Healthchecks - max
Running IntegerInstances - memory Integer
- min
Running IntegerInstances - ports
List<Get
Container Port> - secret
Aliases List<GetContainer Secret Alias> - secret
Overrides List<GetContainer Secret Override> - secrets
List<Get
Container Secret> - storages
List<Get
Container Storage>
- id string
- advanced
Settings stringJson - arguments string[]
- auto
Deploy boolean - auto
Preview boolean - cpu number
- custom
Domains GetContainer Custom Domain[] - deployment
Stage stringId - entrypoint string
- environment
Variable GetAliases Container Environment Variable Alias[] - environment
Variable GetOverrides Container Environment Variable Override[] - environment
Variables GetContainer Environment Variable[] - healthchecks
Get
Container Healthchecks - max
Running numberInstances - memory number
- min
Running numberInstances - ports
Get
Container Port[] - secret
Aliases GetContainer Secret Alias[] - secret
Overrides GetContainer Secret Override[] - secrets
Get
Container Secret[] - storages
Get
Container Storage[]
- id str
- advanced_
settings_ strjson - arguments Sequence[str]
- auto_
deploy bool - auto_
preview bool - cpu int
- custom_
domains Sequence[GetContainer Custom Domain] - deployment_
stage_ strid - entrypoint str
- environment_
variable_ Sequence[Getaliases Container Environment Variable Alias] - environment_
variable_ Sequence[Getoverrides Container Environment Variable Override] - environment_
variables Sequence[GetContainer Environment Variable] - healthchecks
Get
Container Healthchecks - max_
running_ intinstances - memory int
- min_
running_ intinstances - ports
Sequence[Get
Container Port] - secret_
aliases Sequence[GetContainer Secret Alias] - secret_
overrides Sequence[GetContainer Secret Override] - secrets
Sequence[Get
Container Secret] - storages
Sequence[Get
Container Storage]
- id String
- advanced
Settings StringJson - arguments List<String>
- auto
Deploy Boolean - auto
Preview Boolean - cpu Number
- custom
Domains List<Property Map> - deployment
Stage StringId - entrypoint String
- environment
Variable List<Property Map>Aliases - environment
Variable List<Property Map>Overrides - environment
Variables List<Property Map> - healthchecks Property Map
- max
Running NumberInstances - memory Number
- min
Running NumberInstances - ports List<Property Map>
- secret
Aliases List<Property Map> - secret
Overrides List<Property Map> - secrets List<Property Map>
- storages List<Property Map>
getContainer Result
The following output properties are available:
- Advanced
Settings stringJson - Auto
Deploy bool - Auto
Preview bool - Built
In List<ediri.Environment Variables Qovery. Outputs. Get Container Built In Environment Variable> - Cpu int
- Deployment
Stage stringId - Entrypoint string
- Environment
Id string - External
Host string - Id string
- Image
Name string - Internal
Host string - Max
Running intInstances - Memory int
- Min
Running intInstances - Name string
- Ports
List<ediri.
Qovery. Outputs. Get Container Port> - Registry
Id string - Storages
List<ediri.
Qovery. Outputs. Get Container Storage> - Tag string
- Arguments List<string>
- Custom
Domains List<ediri.Qovery. Outputs. Get Container Custom Domain> - Environment
Variable List<ediri.Aliases Qovery. Outputs. Get Container Environment Variable Alias> - Environment
Variable List<ediri.Overrides Qovery. Outputs. Get Container Environment Variable Override> - Environment
Variables List<ediri.Qovery. Outputs. Get Container Environment Variable> - Healthchecks
ediri.
Qovery. Outputs. Get Container Healthchecks - Secret
Aliases List<ediri.Qovery. Outputs. Get Container Secret Alias> - Secret
Overrides List<ediri.Qovery. Outputs. Get Container Secret Override> - Secrets
List<ediri.
Qovery. Outputs. Get Container Secret>
- Advanced
Settings stringJson - Auto
Deploy bool - Auto
Preview bool - Built
In []GetEnvironment Variables Container Built In Environment Variable - Cpu int
- Deployment
Stage stringId - Entrypoint string
- Environment
Id string - External
Host string - Id string
- Image
Name string - Internal
Host string - Max
Running intInstances - Memory int
- Min
Running intInstances - Name string
- Ports
[]Get
Container Port - Registry
Id string - Storages
[]Get
Container Storage - Tag string
- Arguments []string
- Custom
Domains []GetContainer Custom Domain - Environment
Variable []GetAliases Container Environment Variable Alias - Environment
Variable []GetOverrides Container Environment Variable Override - Environment
Variables []GetContainer Environment Variable - Healthchecks
Get
Container Healthchecks - Secret
Aliases []GetContainer Secret Alias - Secret
Overrides []GetContainer Secret Override - Secrets
[]Get
Container Secret
- advanced
Settings StringJson - auto
Deploy Boolean - auto
Preview Boolean - built
In List<GetEnvironment Variables Container Built In Environment Variable> - cpu Integer
- deployment
Stage StringId - entrypoint String
- environment
Id String - external
Host String - id String
- image
Name String - internal
Host String - max
Running IntegerInstances - memory Integer
- min
Running IntegerInstances - name String
- ports
List<Get
Container Port> - registry
Id String - storages
List<Get
Container Storage> - tag String
- arguments List<String>
- custom
Domains List<GetContainer Custom Domain> - environment
Variable List<GetAliases Container Environment Variable Alias> - environment
Variable List<GetOverrides Container Environment Variable Override> - environment
Variables List<GetContainer Environment Variable> - healthchecks
Get
Container Healthchecks - secret
Aliases List<GetContainer Secret Alias> - secret
Overrides List<GetContainer Secret Override> - secrets
List<Get
Container Secret>
- advanced
Settings stringJson - auto
Deploy boolean - auto
Preview boolean - built
In GetEnvironment Variables Container Built In Environment Variable[] - cpu number
- deployment
Stage stringId - entrypoint string
- environment
Id string - external
Host string - id string
- image
Name string - internal
Host string - max
Running numberInstances - memory number
- min
Running numberInstances - name string
- ports
Get
Container Port[] - registry
Id string - storages
Get
Container Storage[] - tag string
- arguments string[]
- custom
Domains GetContainer Custom Domain[] - environment
Variable GetAliases Container Environment Variable Alias[] - environment
Variable GetOverrides Container Environment Variable Override[] - environment
Variables GetContainer Environment Variable[] - healthchecks
Get
Container Healthchecks - secret
Aliases GetContainer Secret Alias[] - secret
Overrides GetContainer Secret Override[] - secrets
Get
Container Secret[]
- advanced_
settings_ strjson - auto_
deploy bool - auto_
preview bool - built_
in_ Sequence[Getenvironment_ variables Container Built In Environment Variable] - cpu int
- deployment_
stage_ strid - entrypoint str
- environment_
id str - external_
host str - id str
- image_
name str - internal_
host str - max_
running_ intinstances - memory int
- min_
running_ intinstances - name str
- ports
Sequence[Get
Container Port] - registry_
id str - storages
Sequence[Get
Container Storage] - tag str
- arguments Sequence[str]
- custom_
domains Sequence[GetContainer Custom Domain] - environment_
variable_ Sequence[Getaliases Container Environment Variable Alias] - environment_
variable_ Sequence[Getoverrides Container Environment Variable Override] - environment_
variables Sequence[GetContainer Environment Variable] - healthchecks
Get
Container Healthchecks - secret_
aliases Sequence[GetContainer Secret Alias] - secret_
overrides Sequence[GetContainer Secret Override] - secrets
Sequence[Get
Container Secret]
- advanced
Settings StringJson - auto
Deploy Boolean - auto
Preview Boolean - built
In List<Property Map>Environment Variables - cpu Number
- deployment
Stage StringId - entrypoint String
- environment
Id String - external
Host String - id String
- image
Name String - internal
Host String - max
Running NumberInstances - memory Number
- min
Running NumberInstances - name String
- ports List<Property Map>
- registry
Id String - storages List<Property Map>
- tag String
- arguments List<String>
- custom
Domains List<Property Map> - environment
Variable List<Property Map>Aliases - environment
Variable List<Property Map>Overrides - environment
Variables List<Property Map> - healthchecks Property Map
- secret
Aliases List<Property Map> - secret
Overrides List<Property Map> - secrets List<Property Map>
Supporting Types
GetContainerBuiltInEnvironmentVariable
GetContainerCustomDomain
- Domain string
- Your custom domain.
- Id string
- Id of the custom domain.
- Status string
- Status of the custom domain.
- Validation
Domain string - URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
- Domain string
- Your custom domain.
- Id string
- Id of the custom domain.
- Status string
- Status of the custom domain.
- Validation
Domain string - URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
- domain String
- Your custom domain.
- id String
- Id of the custom domain.
- status String
- Status of the custom domain.
- validation
Domain String - URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
- domain string
- Your custom domain.
- id string
- Id of the custom domain.
- status string
- Status of the custom domain.
- validation
Domain string - URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
- domain str
- Your custom domain.
- id str
- Id of the custom domain.
- status str
- Status of the custom domain.
- validation_
domain str - URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
- domain String
- Your custom domain.
- id String
- Id of the custom domain.
- status String
- Status of the custom domain.
- validation
Domain String - URL provided by Qovery. You must create a CNAME on your DNS provider using that URL.
GetContainerEnvironmentVariable
GetContainerEnvironmentVariableAlias
GetContainerEnvironmentVariableOverride
GetContainerHealthchecks
- Liveness
Probe ediri.Qovery. Inputs. Get Container Healthchecks Liveness Probe - Configuration for the liveness probe, in order to know when your service is working correctly. Failing the probe means your service being killed/ask to be restarted.
- Readiness
Probe ediri.Qovery. Inputs. Get Container Healthchecks Readiness Probe - Configuration for the readiness probe, in order to know when your service is ready to receive traffic. Failing the probe means your service will stop receiving traffic.
- Liveness
Probe GetContainer Healthchecks Liveness Probe - Configuration for the liveness probe, in order to know when your service is working correctly. Failing the probe means your service being killed/ask to be restarted.
- Readiness
Probe GetContainer Healthchecks Readiness Probe - Configuration for the readiness probe, in order to know when your service is ready to receive traffic. Failing the probe means your service will stop receiving traffic.
- liveness
Probe GetContainer Healthchecks Liveness Probe - Configuration for the liveness probe, in order to know when your service is working correctly. Failing the probe means your service being killed/ask to be restarted.
- readiness
Probe GetContainer Healthchecks Readiness Probe - Configuration for the readiness probe, in order to know when your service is ready to receive traffic. Failing the probe means your service will stop receiving traffic.
- liveness
Probe GetContainer Healthchecks Liveness Probe - Configuration for the liveness probe, in order to know when your service is working correctly. Failing the probe means your service being killed/ask to be restarted.
- readiness
Probe GetContainer Healthchecks Readiness Probe - Configuration for the readiness probe, in order to know when your service is ready to receive traffic. Failing the probe means your service will stop receiving traffic.
- liveness_
probe GetContainer Healthchecks Liveness Probe - Configuration for the liveness probe, in order to know when your service is working correctly. Failing the probe means your service being killed/ask to be restarted.
- readiness_
probe GetContainer Healthchecks Readiness Probe - Configuration for the readiness probe, in order to know when your service is ready to receive traffic. Failing the probe means your service will stop receiving traffic.
- liveness
Probe Property Map - Configuration for the liveness probe, in order to know when your service is working correctly. Failing the probe means your service being killed/ask to be restarted.
- readiness
Probe Property Map - Configuration for the readiness probe, in order to know when your service is ready to receive traffic. Failing the probe means your service will stop receiving traffic.
GetContainerHealthchecksLivenessProbe
- Failure
Threshold int - Number of time the an ok probe should fail before declaring it as failed
- Initial
Delay intSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- Period
Seconds int - Number of seconds before each execution of the probe
- Success
Threshold int - Number of time the probe should success before declaring a failed probe as ok again
- Timeout
Seconds int - Number of seconds within which the check need to respond before declaring it as a failure
- Type
ediri.
Qovery. Inputs. Get Container Healthchecks Liveness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- Failure
Threshold int - Number of time the an ok probe should fail before declaring it as failed
- Initial
Delay intSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- Period
Seconds int - Number of seconds before each execution of the probe
- Success
Threshold int - Number of time the probe should success before declaring a failed probe as ok again
- Timeout
Seconds int - Number of seconds within which the check need to respond before declaring it as a failure
- Type
Get
Container Healthchecks Liveness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure
Threshold Integer - Number of time the an ok probe should fail before declaring it as failed
- initial
Delay IntegerSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period
Seconds Integer - Number of seconds before each execution of the probe
- success
Threshold Integer - Number of time the probe should success before declaring a failed probe as ok again
- timeout
Seconds Integer - Number of seconds within which the check need to respond before declaring it as a failure
- type
Get
Container Healthchecks Liveness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure
Threshold number - Number of time the an ok probe should fail before declaring it as failed
- initial
Delay numberSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period
Seconds number - Number of seconds before each execution of the probe
- success
Threshold number - Number of time the probe should success before declaring a failed probe as ok again
- timeout
Seconds number - Number of seconds within which the check need to respond before declaring it as a failure
- type
Get
Container Healthchecks Liveness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure_
threshold int - Number of time the an ok probe should fail before declaring it as failed
- initial_
delay_ intseconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period_
seconds int - Number of seconds before each execution of the probe
- success_
threshold int - Number of time the probe should success before declaring a failed probe as ok again
- timeout_
seconds int - Number of seconds within which the check need to respond before declaring it as a failure
- type
Get
Container Healthchecks Liveness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure
Threshold Number - Number of time the an ok probe should fail before declaring it as failed
- initial
Delay NumberSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period
Seconds Number - Number of seconds before each execution of the probe
- success
Threshold Number - Number of time the probe should success before declaring a failed probe as ok again
- timeout
Seconds Number - Number of seconds within which the check need to respond before declaring it as a failure
- type Property Map
- Kind of check to run for this probe. There can only be one configured at a time
GetContainerHealthchecksLivenessProbeType
- Exec
ediri.
Qovery. Inputs. Get Container Healthchecks Liveness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- Grpc
ediri.
Qovery. Inputs. Get Container Healthchecks Liveness Probe Type Grpc - Check that the given port respond to GRPC call
- Http
ediri.
Qovery. Inputs. Get Container Healthchecks Liveness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- Tcp
ediri.
Qovery. Inputs. Get Container Healthchecks Liveness Probe Type Tcp - Check that the given port accepting connection
- Exec
Get
Container Healthchecks Liveness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- Grpc
Get
Container Healthchecks Liveness Probe Type Grpc - Check that the given port respond to GRPC call
- Http
Get
Container Healthchecks Liveness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- Tcp
Get
Container Healthchecks Liveness Probe Type Tcp - Check that the given port accepting connection
- exec
Get
Container Healthchecks Liveness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- grpc
Get
Container Healthchecks Liveness Probe Type Grpc - Check that the given port respond to GRPC call
- http
Get
Container Healthchecks Liveness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
Get
Container Healthchecks Liveness Probe Type Tcp - Check that the given port accepting connection
- exec
Get
Container Healthchecks Liveness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- grpc
Get
Container Healthchecks Liveness Probe Type Grpc - Check that the given port respond to GRPC call
- http
Get
Container Healthchecks Liveness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
Get
Container Healthchecks Liveness Probe Type Tcp - Check that the given port accepting connection
- exec_
Get
Container Healthchecks Liveness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- grpc
Get
Container Healthchecks Liveness Probe Type Grpc - Check that the given port respond to GRPC call
- http
Get
Container Healthchecks Liveness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
Get
Container Healthchecks Liveness Probe Type Tcp - Check that the given port accepting connection
- exec Property Map
- Check that the given command return an exit 0. Binary should be present in the image
- grpc Property Map
- Check that the given port respond to GRPC call
- http Property Map
- Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp Property Map
- Check that the given port accepting connection
GetContainerHealthchecksLivenessProbeTypeExec
- Commands List<string>
- The command and its arguments to exec
- Commands []string
- The command and its arguments to exec
- commands List<String>
- The command and its arguments to exec
- commands string[]
- The command and its arguments to exec
- commands Sequence[str]
- The command and its arguments to exec
- commands List<String>
- The command and its arguments to exec
GetContainerHealthchecksLivenessProbeTypeGrpc
GetContainerHealthchecksLivenessProbeTypeHttp
GetContainerHealthchecksLivenessProbeTypeTcp
GetContainerHealthchecksReadinessProbe
- Failure
Threshold int - Number of time the an ok probe should fail before declaring it as failed
- Initial
Delay intSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- Period
Seconds int - Number of seconds before each execution of the probe
- Success
Threshold int - Number of time the probe should success before declaring a failed probe as ok again
- Timeout
Seconds int - Number of seconds within which the check need to respond before declaring it as a failure
- Type
ediri.
Qovery. Inputs. Get Container Healthchecks Readiness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- Failure
Threshold int - Number of time the an ok probe should fail before declaring it as failed
- Initial
Delay intSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- Period
Seconds int - Number of seconds before each execution of the probe
- Success
Threshold int - Number of time the probe should success before declaring a failed probe as ok again
- Timeout
Seconds int - Number of seconds within which the check need to respond before declaring it as a failure
- Type
Get
Container Healthchecks Readiness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure
Threshold Integer - Number of time the an ok probe should fail before declaring it as failed
- initial
Delay IntegerSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period
Seconds Integer - Number of seconds before each execution of the probe
- success
Threshold Integer - Number of time the probe should success before declaring a failed probe as ok again
- timeout
Seconds Integer - Number of seconds within which the check need to respond before declaring it as a failure
- type
Get
Container Healthchecks Readiness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure
Threshold number - Number of time the an ok probe should fail before declaring it as failed
- initial
Delay numberSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period
Seconds number - Number of seconds before each execution of the probe
- success
Threshold number - Number of time the probe should success before declaring a failed probe as ok again
- timeout
Seconds number - Number of seconds within which the check need to respond before declaring it as a failure
- type
Get
Container Healthchecks Readiness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure_
threshold int - Number of time the an ok probe should fail before declaring it as failed
- initial_
delay_ intseconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period_
seconds int - Number of seconds before each execution of the probe
- success_
threshold int - Number of time the probe should success before declaring a failed probe as ok again
- timeout_
seconds int - Number of seconds within which the check need to respond before declaring it as a failure
- type
Get
Container Healthchecks Readiness Probe Type - Kind of check to run for this probe. There can only be one configured at a time
- failure
Threshold Number - Number of time the an ok probe should fail before declaring it as failed
- initial
Delay NumberSeconds - Number of seconds to wait before the first execution of the probe to be trigerred
- period
Seconds Number - Number of seconds before each execution of the probe
- success
Threshold Number - Number of time the probe should success before declaring a failed probe as ok again
- timeout
Seconds Number - Number of seconds within which the check need to respond before declaring it as a failure
- type Property Map
- Kind of check to run for this probe. There can only be one configured at a time
GetContainerHealthchecksReadinessProbeType
- Exec
ediri.
Qovery. Inputs. Get Container Healthchecks Readiness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- Grpc
ediri.
Qovery. Inputs. Get Container Healthchecks Readiness Probe Type Grpc - Check that the given port respond to GRPC call
- Http
ediri.
Qovery. Inputs. Get Container Healthchecks Readiness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- Tcp
ediri.
Qovery. Inputs. Get Container Healthchecks Readiness Probe Type Tcp - Check that the given port accepting connection
- Exec
Get
Container Healthchecks Readiness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- Grpc
Get
Container Healthchecks Readiness Probe Type Grpc - Check that the given port respond to GRPC call
- Http
Get
Container Healthchecks Readiness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- Tcp
Get
Container Healthchecks Readiness Probe Type Tcp - Check that the given port accepting connection
- exec
Get
Container Healthchecks Readiness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- grpc
Get
Container Healthchecks Readiness Probe Type Grpc - Check that the given port respond to GRPC call
- http
Get
Container Healthchecks Readiness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
Get
Container Healthchecks Readiness Probe Type Tcp - Check that the given port accepting connection
- exec
Get
Container Healthchecks Readiness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- grpc
Get
Container Healthchecks Readiness Probe Type Grpc - Check that the given port respond to GRPC call
- http
Get
Container Healthchecks Readiness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
Get
Container Healthchecks Readiness Probe Type Tcp - Check that the given port accepting connection
- exec_
Get
Container Healthchecks Readiness Probe Type Exec - Check that the given command return an exit 0. Binary should be present in the image
- grpc
Get
Container Healthchecks Readiness Probe Type Grpc - Check that the given port respond to GRPC call
- http
Get
Container Healthchecks Readiness Probe Type Http - Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp
Get
Container Healthchecks Readiness Probe Type Tcp - Check that the given port accepting connection
- exec Property Map
- Check that the given command return an exit 0. Binary should be present in the image
- grpc Property Map
- Check that the given port respond to GRPC call
- http Property Map
- Check that the given port respond to HTTP call (should return a 2xx response code)
- tcp Property Map
- Check that the given port accepting connection
GetContainerHealthchecksReadinessProbeTypeExec
- Commands List<string>
- The command and its arguments to exec
- Commands []string
- The command and its arguments to exec
- commands List<String>
- The command and its arguments to exec
- commands string[]
- The command and its arguments to exec
- commands Sequence[str]
- The command and its arguments to exec
- commands List<String>
- The command and its arguments to exec
GetContainerHealthchecksReadinessProbeTypeGrpc
GetContainerHealthchecksReadinessProbeTypeHttp
GetContainerHealthchecksReadinessProbeTypeTcp
GetContainerPort
- External
Port int - External port of the container.
- Required if:
ports.publicly_accessible=true
. - Must be:>= 1
and<= 65535
. - Id string
- Id of the port.
- 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
- Name string
- Name of the port.
- Protocol string
- Protocol used for the port of the container.
- Can be:
GRPC
,HTTP
,TCP
,UDP
. - Default:HTTP
. - Publicly
Accessible bool - Specify if the port is exposed to the world or not for this container.
- External
Port int - External port of the container.
- Required if:
ports.publicly_accessible=true
. - Must be:>= 1
and<= 65535
. - Id string
- Id of the port.
- 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
- Name string
- Name of the port.
- Protocol string
- Protocol used for the port of the container.
- Can be:
GRPC
,HTTP
,TCP
,UDP
. - Default:HTTP
. - Publicly
Accessible bool - Specify if the port is exposed to the world or not for this container.
- external
Port Integer - External port of the container.
- Required if:
ports.publicly_accessible=true
. - Must be:>= 1
and<= 65535
. - id String
- Id of the port.
- 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
- name String
- Name of the port.
- protocol String
- Protocol used for the port of the container.
- Can be:
GRPC
,HTTP
,TCP
,UDP
. - Default:HTTP
. - publicly
Accessible Boolean - Specify if the port is exposed to the world or not for this container.
- external
Port number - External port of the container.
- Required if:
ports.publicly_accessible=true
. - Must be:>= 1
and<= 65535
. - id string
- Id of the port.
- 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
- name string
- Name of the port.
- protocol string
- Protocol used for the port of the container.
- Can be:
GRPC
,HTTP
,TCP
,UDP
. - Default:HTTP
. - publicly
Accessible boolean - Specify if the port is exposed to the world or not for this container.
- external_
port int - External port of the container.
- Required if:
ports.publicly_accessible=true
. - Must be:>= 1
and<= 65535
. - id str
- Id of the port.
- 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
- name str
- Name of the port.
- protocol str
- Protocol used for the port of the container.
- Can be:
GRPC
,HTTP
,TCP
,UDP
. - Default:HTTP
. - publicly_
accessible bool - Specify if the port is exposed to the world or not for this container.
- external
Port Number - External port of the container.
- Required if:
ports.publicly_accessible=true
. - Must be:>= 1
and<= 65535
. - id String
- Id of the port.
- 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
- name String
- Name of the port.
- protocol String
- Protocol used for the port of the container.
- Can be:
GRPC
,HTTP
,TCP
,UDP
. - Default:HTTP
. - publicly
Accessible Boolean - Specify if the port is exposed to the world or not for this container.
GetContainerSecret
GetContainerSecretAlias
GetContainerSecretOverride
GetContainerStorage
- Id string
- Id of the storage.
- Mount
Point string - Mount point of the storage for the container.
- Size int
- Size of the storage for the container in GB [1024MB = 1GB].
- Must be:
>= 1
. - Type string
- Type of the storage for the container.
- Can be:
FAST_SSD
.
- Id string
- Id of the storage.
- Mount
Point string - Mount point of the storage for the container.
- Size int
- Size of the storage for the container in GB [1024MB = 1GB].
- Must be:
>= 1
. - Type string
- Type of the storage for the container.
- Can be:
FAST_SSD
.
- id String
- Id of the storage.
- mount
Point String - Mount point of the storage for the container.
- size Integer
- Size of the storage for the container in GB [1024MB = 1GB].
- Must be:
>= 1
. - type String
- Type of the storage for the container.
- Can be:
FAST_SSD
.
- id string
- Id of the storage.
- mount
Point string - Mount point of the storage for the container.
- size number
- Size of the storage for the container in GB [1024MB = 1GB].
- Must be:
>= 1
. - type string
- Type of the storage for the container.
- Can be:
FAST_SSD
.
- id str
- Id of the storage.
- mount_
point str - Mount point of the storage for the container.
- size int
- Size of the storage for the container in GB [1024MB = 1GB].
- Must be:
>= 1
. - type str
- Type of the storage for the container.
- Can be:
FAST_SSD
.
- id String
- Id of the storage.
- mount
Point String - Mount point of the storage for the container.
- size Number
- Size of the storage for the container in GB [1024MB = 1GB].
- Must be:
>= 1
. - type String
- Type of the storage for the container.
- Can be:
FAST_SSD
.
Package Details
- Repository
- qovery dirien/pulumi-qovery
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
qovery
Terraform Provider.