Viewing docs for opentelekomcloud 1.36.64
published on Thursday, Apr 23, 2026 by opentelekomcloud
published on Thursday, Apr 23, 2026 by opentelekomcloud
Viewing docs for opentelekomcloud 1.36.64
published on Thursday, Apr 23, 2026 by opentelekomcloud
published on Thursday, Apr 23, 2026 by opentelekomcloud
Up-to-date reference of API arguments for CCI Pod you can get at documentation portal
Use this data source to get the list of CCI v2 Pods under a namespace within OpenTelekomCloud.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as opentelekomcloud from "@pulumi/opentelekomcloud";
const config = new pulumi.Config();
const namespace = config.requireObject<any>("namespace");
const test = opentelekomcloud.getCciPodsV2({
namespace: namespace,
});
import pulumi
import pulumi_opentelekomcloud as opentelekomcloud
config = pulumi.Config()
namespace = config.require_object("namespace")
test = opentelekomcloud.get_cci_pods_v2(namespace=namespace)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/opentelekomcloud/opentelekomcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
namespace := cfg.RequireObject("namespace")
_, err := opentelekomcloud.GetCciPodsV2(ctx, &opentelekomcloud.GetCciPodsV2Args{
Namespace: namespace,
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Opentelekomcloud = Pulumi.Opentelekomcloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var @namespace = config.RequireObject<dynamic>("namespace");
var test = Opentelekomcloud.GetCciPodsV2.Invoke(new()
{
Namespace = @namespace,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.opentelekomcloud.OpentelekomcloudFunctions;
import com.pulumi.opentelekomcloud.inputs.GetCciPodsV2Args;
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 config = ctx.config();
final var namespace = config.get("namespace");
final var test = OpentelekomcloudFunctions.getCciPodsV2(GetCciPodsV2Args.builder()
.namespace(namespace)
.build());
}
}
configuration:
namespace:
type: dynamic
variables:
test:
fn::invoke:
function: opentelekomcloud:getCciPodsV2
arguments:
namespace: ${namespace}
Query a Single Pod by Name
import * as pulumi from "@pulumi/pulumi";
import * as opentelekomcloud from "@pulumi/opentelekomcloud";
const config = new pulumi.Config();
const namespace = config.requireObject<any>("namespace");
const podName = config.requireObject<any>("podName");
const test = opentelekomcloud.getCciPodsV2({
namespace: namespace,
name: podName,
});
import pulumi
import pulumi_opentelekomcloud as opentelekomcloud
config = pulumi.Config()
namespace = config.require_object("namespace")
pod_name = config.require_object("podName")
test = opentelekomcloud.get_cci_pods_v2(namespace=namespace,
name=pod_name)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/opentelekomcloud/opentelekomcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
namespace := cfg.RequireObject("namespace")
podName := cfg.RequireObject("podName")
_, err := opentelekomcloud.GetCciPodsV2(ctx, &opentelekomcloud.GetCciPodsV2Args{
Namespace: namespace,
Name: pulumi.StringRef(podName),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Opentelekomcloud = Pulumi.Opentelekomcloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var @namespace = config.RequireObject<dynamic>("namespace");
var podName = config.RequireObject<dynamic>("podName");
var test = Opentelekomcloud.GetCciPodsV2.Invoke(new()
{
Namespace = @namespace,
Name = podName,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.opentelekomcloud.OpentelekomcloudFunctions;
import com.pulumi.opentelekomcloud.inputs.GetCciPodsV2Args;
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 config = ctx.config();
final var namespace = config.get("namespace");
final var podName = config.get("podName");
final var test = OpentelekomcloudFunctions.getCciPodsV2(GetCciPodsV2Args.builder()
.namespace(namespace)
.name(podName)
.build());
}
}
configuration:
namespace:
type: dynamic
podName:
type: dynamic
variables:
test:
fn::invoke:
function: opentelekomcloud:getCciPodsV2
arguments:
namespace: ${namespace}
name: ${podName}
Using getCciPodsV2
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 getCciPodsV2(args: GetCciPodsV2Args, opts?: InvokeOptions): Promise<GetCciPodsV2Result>
function getCciPodsV2Output(args: GetCciPodsV2OutputArgs, opts?: InvokeOptions): Output<GetCciPodsV2Result>def get_cci_pods_v2(id: Optional[str] = None,
name: Optional[str] = None,
namespace: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetCciPodsV2Result
def get_cci_pods_v2_output(id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
namespace: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetCciPodsV2Result]func GetCciPodsV2(ctx *Context, args *GetCciPodsV2Args, opts ...InvokeOption) (*GetCciPodsV2Result, error)
func GetCciPodsV2Output(ctx *Context, args *GetCciPodsV2OutputArgs, opts ...InvokeOption) GetCciPodsV2ResultOutput> Note: This function is named GetCciPodsV2 in the Go SDK.
public static class GetCciPodsV2
{
public static Task<GetCciPodsV2Result> InvokeAsync(GetCciPodsV2Args args, InvokeOptions? opts = null)
public static Output<GetCciPodsV2Result> Invoke(GetCciPodsV2InvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetCciPodsV2Result> getCciPodsV2(GetCciPodsV2Args args, InvokeOptions options)
public static Output<GetCciPodsV2Result> getCciPodsV2(GetCciPodsV2Args args, InvokeOptions options)
fn::invoke:
function: opentelekomcloud:index/getCciPodsV2:getCciPodsV2
arguments:
# arguments dictionaryThe following arguments are supported:
getCciPodsV2 Result
The following output properties are available:
Supporting Types
GetCciPodsV2Pod
- Active
Deadline doubleSeconds - The active deadline of the Pod, in seconds.
- Affinities
List<Get
Cci Pods V2Pod Affinity> - The affinity scheduling rules of the Pod. The affinity structure is documented below.
- Annotations Dictionary<string, string>
- The annotations of the Pod.
- Api
Version string - The API version of the selected metadata field.
- Containers
List<Get
Cci Pods V2Pod Container> - The list of containers in the Pod. The containers structure is documented below.
- Creation
Timestamp string - The creation timestamp of the Pod.
- Dns
Configs List<GetCci Pods V2Pod Dns Config> - The DNS configuration of the Pod. The dns_config structure is documented below.
- Dns
Policy string - The DNS policy of the Pod.
- Ephemeral
Containers List<GetCci Pods V2Pod Ephemeral Container> - The list of ephemeral containers in the Pod. The containers structure is documented below.
- Finalizers List<string>
- The finalizers of the Pod.
- Host
Aliases List<GetCci Pods V2Pod Host Alias> - The list of hosts and IPs injected into the Pod's
/etc/hosts. The host_aliases structure is documented below. - Hostname string
- The hostname of the Pod.
- Image
Pull List<GetSecrets Cci Pods V2Pod Image Pull Secret> - The list of references to secrets used for pulling images. The image_pull_secrets structure is documented below.
- Init
Containers List<GetCci Pods V2Pod Init Container> - The list of init containers of the Pod. The containers structure is documented below.
- Kind string
- The kind of the Pod.
- Labels Dictionary<string, string>
- The labels of the Pod.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Namespace string
- Specifies the namespace to which the Pods belong.
- Node
Name string - The name of the node the Pod is scheduled on.
- Overhead Dictionary<string, string>
- The resource overhead associated with running the Pod.
- Readiness
Gates List<GetCci Pods V2Pod Readiness Gate> - The list of additional pod readiness conditions. The readiness_gates structure is documented below.
- Resource
Version string - The resource version of the Pod.
- Restart
Policy string - The restart policy of the Pod.
- Scheduler
Name string - The name of the scheduler used to dispatch the Pod.
- Security
Contexts List<GetCci Pods V2Pod Security Context> - The security context of the container. The container_security_context structure is documented below.
- Set
Hostname boolAs Fqdn - Whether the Pod's hostname is set to its FQDN.
- bool
- Whether a single process namespace is shared between all containers.
- Statuses
List<Get
Cci Pods V2Pod Status> - The status of the condition.
- Termination
Grace doublePeriod Seconds - The grace period in seconds when the probe fails.
- Uid string
- The UID of the Pod.
- Volumes
List<Get
Cci Pods V2Pod Volume> - The list of volumes used by the Pod. The volumes structure is documented below.
- Active
Deadline float64Seconds - The active deadline of the Pod, in seconds.
- Affinities
[]Get
Cci Pods V2Pod Affinity - The affinity scheduling rules of the Pod. The affinity structure is documented below.
- Annotations map[string]string
- The annotations of the Pod.
- Api
Version string - The API version of the selected metadata field.
- Containers
[]Get
Cci Pods V2Pod Container - The list of containers in the Pod. The containers structure is documented below.
- Creation
Timestamp string - The creation timestamp of the Pod.
- Dns
Configs []GetCci Pods V2Pod Dns Config - The DNS configuration of the Pod. The dns_config structure is documented below.
- Dns
Policy string - The DNS policy of the Pod.
- Ephemeral
Containers []GetCci Pods V2Pod Ephemeral Container - The list of ephemeral containers in the Pod. The containers structure is documented below.
- Finalizers []string
- The finalizers of the Pod.
- Host
Aliases []GetCci Pods V2Pod Host Alias - The list of hosts and IPs injected into the Pod's
/etc/hosts. The host_aliases structure is documented below. - Hostname string
- The hostname of the Pod.
- Image
Pull []GetSecrets Cci Pods V2Pod Image Pull Secret - The list of references to secrets used for pulling images. The image_pull_secrets structure is documented below.
- Init
Containers []GetCci Pods V2Pod Init Container - The list of init containers of the Pod. The containers structure is documented below.
- Kind string
- The kind of the Pod.
- Labels map[string]string
- The labels of the Pod.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Namespace string
- Specifies the namespace to which the Pods belong.
- Node
Name string - The name of the node the Pod is scheduled on.
- Overhead map[string]string
- The resource overhead associated with running the Pod.
- Readiness
Gates []GetCci Pods V2Pod Readiness Gate - The list of additional pod readiness conditions. The readiness_gates structure is documented below.
- Resource
Version string - The resource version of the Pod.
- Restart
Policy string - The restart policy of the Pod.
- Scheduler
Name string - The name of the scheduler used to dispatch the Pod.
- Security
Contexts []GetCci Pods V2Pod Security Context - The security context of the container. The container_security_context structure is documented below.
- Set
Hostname boolAs Fqdn - Whether the Pod's hostname is set to its FQDN.
- bool
- Whether a single process namespace is shared between all containers.
- Statuses
[]Get
Cci Pods V2Pod Status - The status of the condition.
- Termination
Grace float64Period Seconds - The grace period in seconds when the probe fails.
- Uid string
- The UID of the Pod.
- Volumes
[]Get
Cci Pods V2Pod Volume - The list of volumes used by the Pod. The volumes structure is documented below.
- active
Deadline DoubleSeconds - The active deadline of the Pod, in seconds.
- affinities
List<Get
Cci Pods V2Pod Affinity> - The affinity scheduling rules of the Pod. The affinity structure is documented below.
- annotations Map<String,String>
- The annotations of the Pod.
- api
Version String - The API version of the selected metadata field.
- containers
List<Get
Cci Pods V2Pod Container> - The list of containers in the Pod. The containers structure is documented below.
- creation
Timestamp String - The creation timestamp of the Pod.
- dns
Configs List<GetCci Pods V2Pod Dns Config> - The DNS configuration of the Pod. The dns_config structure is documented below.
- dns
Policy String - The DNS policy of the Pod.
- ephemeral
Containers List<GetCci Pods V2Pod Ephemeral Container> - The list of ephemeral containers in the Pod. The containers structure is documented below.
- finalizers List<String>
- The finalizers of the Pod.
- host
Aliases List<GetCci Pods V2Pod Host Alias> - The list of hosts and IPs injected into the Pod's
/etc/hosts. The host_aliases structure is documented below. - hostname String
- The hostname of the Pod.
- image
Pull List<GetSecrets Cci Pods V2Pod Image Pull Secret> - The list of references to secrets used for pulling images. The image_pull_secrets structure is documented below.
- init
Containers List<GetCci Pods V2Pod Init Container> - The list of init containers of the Pod. The containers structure is documented below.
- kind String
- The kind of the Pod.
- labels Map<String,String>
- The labels of the Pod.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- namespace String
- Specifies the namespace to which the Pods belong.
- node
Name String - The name of the node the Pod is scheduled on.
- overhead Map<String,String>
- The resource overhead associated with running the Pod.
- readiness
Gates List<GetCci Pods V2Pod Readiness Gate> - The list of additional pod readiness conditions. The readiness_gates structure is documented below.
- resource
Version String - The resource version of the Pod.
- restart
Policy String - The restart policy of the Pod.
- scheduler
Name String - The name of the scheduler used to dispatch the Pod.
- security
Contexts List<GetCci Pods V2Pod Security Context> - The security context of the container. The container_security_context structure is documented below.
- set
Hostname BooleanAs Fqdn - Whether the Pod's hostname is set to its FQDN.
- Boolean
- Whether a single process namespace is shared between all containers.
- statuses
List<Get
Cci Pods V2Pod Status> - The status of the condition.
- termination
Grace DoublePeriod Seconds - The grace period in seconds when the probe fails.
- uid String
- The UID of the Pod.
- volumes
List<Get
Cci Pods V2Pod Volume> - The list of volumes used by the Pod. The volumes structure is documented below.
- active
Deadline numberSeconds - The active deadline of the Pod, in seconds.
- affinities
Get
Cci Pods V2Pod Affinity[] - The affinity scheduling rules of the Pod. The affinity structure is documented below.
- annotations {[key: string]: string}
- The annotations of the Pod.
- api
Version string - The API version of the selected metadata field.
- containers
Get
Cci Pods V2Pod Container[] - The list of containers in the Pod. The containers structure is documented below.
- creation
Timestamp string - The creation timestamp of the Pod.
- dns
Configs GetCci Pods V2Pod Dns Config[] - The DNS configuration of the Pod. The dns_config structure is documented below.
- dns
Policy string - The DNS policy of the Pod.
- ephemeral
Containers GetCci Pods V2Pod Ephemeral Container[] - The list of ephemeral containers in the Pod. The containers structure is documented below.
- finalizers string[]
- The finalizers of the Pod.
- host
Aliases GetCci Pods V2Pod Host Alias[] - The list of hosts and IPs injected into the Pod's
/etc/hosts. The host_aliases structure is documented below. - hostname string
- The hostname of the Pod.
- image
Pull GetSecrets Cci Pods V2Pod Image Pull Secret[] - The list of references to secrets used for pulling images. The image_pull_secrets structure is documented below.
- init
Containers GetCci Pods V2Pod Init Container[] - The list of init containers of the Pod. The containers structure is documented below.
- kind string
- The kind of the Pod.
- labels {[key: string]: string}
- The labels of the Pod.
- name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- namespace string
- Specifies the namespace to which the Pods belong.
- node
Name string - The name of the node the Pod is scheduled on.
- overhead {[key: string]: string}
- The resource overhead associated with running the Pod.
- readiness
Gates GetCci Pods V2Pod Readiness Gate[] - The list of additional pod readiness conditions. The readiness_gates structure is documented below.
- resource
Version string - The resource version of the Pod.
- restart
Policy string - The restart policy of the Pod.
- scheduler
Name string - The name of the scheduler used to dispatch the Pod.
- security
Contexts GetCci Pods V2Pod Security Context[] - The security context of the container. The container_security_context structure is documented below.
- set
Hostname booleanAs Fqdn - Whether the Pod's hostname is set to its FQDN.
- boolean
- Whether a single process namespace is shared between all containers.
- statuses
Get
Cci Pods V2Pod Status[] - The status of the condition.
- termination
Grace numberPeriod Seconds - The grace period in seconds when the probe fails.
- uid string
- The UID of the Pod.
- volumes
Get
Cci Pods V2Pod Volume[] - The list of volumes used by the Pod. The volumes structure is documented below.
- active_
deadline_ floatseconds - The active deadline of the Pod, in seconds.
- affinities
Sequence[Get
Cci Pods V2Pod Affinity] - The affinity scheduling rules of the Pod. The affinity structure is documented below.
- annotations Mapping[str, str]
- The annotations of the Pod.
- api_
version str - The API version of the selected metadata field.
- containers
Sequence[Get
Cci Pods V2Pod Container] - The list of containers in the Pod. The containers structure is documented below.
- creation_
timestamp str - The creation timestamp of the Pod.
- dns_
configs Sequence[GetCci Pods V2Pod Dns Config] - The DNS configuration of the Pod. The dns_config structure is documented below.
- dns_
policy str - The DNS policy of the Pod.
- ephemeral_
containers Sequence[GetCci Pods V2Pod Ephemeral Container] - The list of ephemeral containers in the Pod. The containers structure is documented below.
- finalizers Sequence[str]
- The finalizers of the Pod.
- host_
aliases Sequence[GetCci Pods V2Pod Host Alias] - The list of hosts and IPs injected into the Pod's
/etc/hosts. The host_aliases structure is documented below. - hostname str
- The hostname of the Pod.
- image_
pull_ Sequence[Getsecrets Cci Pods V2Pod Image Pull Secret] - The list of references to secrets used for pulling images. The image_pull_secrets structure is documented below.
- init_
containers Sequence[GetCci Pods V2Pod Init Container] - The list of init containers of the Pod. The containers structure is documented below.
- kind str
- The kind of the Pod.
- labels Mapping[str, str]
- The labels of the Pod.
- name str
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- namespace str
- Specifies the namespace to which the Pods belong.
- node_
name str - The name of the node the Pod is scheduled on.
- overhead Mapping[str, str]
- The resource overhead associated with running the Pod.
- readiness_
gates Sequence[GetCci Pods V2Pod Readiness Gate] - The list of additional pod readiness conditions. The readiness_gates structure is documented below.
- resource_
version str - The resource version of the Pod.
- restart_
policy str - The restart policy of the Pod.
- scheduler_
name str - The name of the scheduler used to dispatch the Pod.
- security_
contexts Sequence[GetCci Pods V2Pod Security Context] - The security context of the container. The container_security_context structure is documented below.
- set_
hostname_ boolas_ fqdn - Whether the Pod's hostname is set to its FQDN.
- bool
- Whether a single process namespace is shared between all containers.
- statuses
Sequence[Get
Cci Pods V2Pod Status] - The status of the condition.
- termination_
grace_ floatperiod_ seconds - The grace period in seconds when the probe fails.
- uid str
- The UID of the Pod.
- volumes
Sequence[Get
Cci Pods V2Pod Volume] - The list of volumes used by the Pod. The volumes structure is documented below.
- active
Deadline NumberSeconds - The active deadline of the Pod, in seconds.
- affinities List<Property Map>
- The affinity scheduling rules of the Pod. The affinity structure is documented below.
- annotations Map<String>
- The annotations of the Pod.
- api
Version String - The API version of the selected metadata field.
- containers List<Property Map>
- The list of containers in the Pod. The containers structure is documented below.
- creation
Timestamp String - The creation timestamp of the Pod.
- dns
Configs List<Property Map> - The DNS configuration of the Pod. The dns_config structure is documented below.
- dns
Policy String - The DNS policy of the Pod.
- ephemeral
Containers List<Property Map> - The list of ephemeral containers in the Pod. The containers structure is documented below.
- finalizers List<String>
- The finalizers of the Pod.
- host
Aliases List<Property Map> - The list of hosts and IPs injected into the Pod's
/etc/hosts. The host_aliases structure is documented below. - hostname String
- The hostname of the Pod.
- image
Pull List<Property Map>Secrets - The list of references to secrets used for pulling images. The image_pull_secrets structure is documented below.
- init
Containers List<Property Map> - The list of init containers of the Pod. The containers structure is documented below.
- kind String
- The kind of the Pod.
- labels Map<String>
- The labels of the Pod.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- namespace String
- Specifies the namespace to which the Pods belong.
- node
Name String - The name of the node the Pod is scheduled on.
- overhead Map<String>
- The resource overhead associated with running the Pod.
- readiness
Gates List<Property Map> - The list of additional pod readiness conditions. The readiness_gates structure is documented below.
- resource
Version String - The resource version of the Pod.
- restart
Policy String - The restart policy of the Pod.
- scheduler
Name String - The name of the scheduler used to dispatch the Pod.
- security
Contexts List<Property Map> - The security context of the container. The container_security_context structure is documented below.
- set
Hostname BooleanAs Fqdn - Whether the Pod's hostname is set to its FQDN.
- Boolean
- Whether a single process namespace is shared between all containers.
- statuses List<Property Map>
- The status of the condition.
- termination
Grace NumberPeriod Seconds - The grace period in seconds when the probe fails.
- uid String
- The UID of the Pod.
- volumes List<Property Map>
- The list of volumes used by the Pod. The volumes structure is documented below.
GetCciPodsV2PodAffinity
- Node
Affinities List<GetCci Pods V2Pod Affinity Node Affinity> - The node affinity rules. The node_affinity structure is documented below.
- Pod
Anti List<GetAffinities Cci Pods V2Pod Affinity Pod Anti Affinity> - The pod anti-affinity rules. The pod_anti_affinity structure is documented below.
- Node
Affinities []GetCci Pods V2Pod Affinity Node Affinity - The node affinity rules. The node_affinity structure is documented below.
- Pod
Anti []GetAffinities Cci Pods V2Pod Affinity Pod Anti Affinity - The pod anti-affinity rules. The pod_anti_affinity structure is documented below.
- node
Affinities List<GetCci Pods V2Pod Affinity Node Affinity> - The node affinity rules. The node_affinity structure is documented below.
- pod
Anti List<GetAffinities Cci Pods V2Pod Affinity Pod Anti Affinity> - The pod anti-affinity rules. The pod_anti_affinity structure is documented below.
- node
Affinities GetCci Pods V2Pod Affinity Node Affinity[] - The node affinity rules. The node_affinity structure is documented below.
- pod
Anti GetAffinities Cci Pods V2Pod Affinity Pod Anti Affinity[] - The pod anti-affinity rules. The pod_anti_affinity structure is documented below.
- node_
affinities Sequence[GetCci Pods V2Pod Affinity Node Affinity] - The node affinity rules. The node_affinity structure is documented below.
- pod_
anti_ Sequence[Getaffinities Cci Pods V2Pod Affinity Pod Anti Affinity] - The pod anti-affinity rules. The pod_anti_affinity structure is documented below.
- node
Affinities List<Property Map> - The node affinity rules. The node_affinity structure is documented below.
- pod
Anti List<Property Map>Affinities - The pod anti-affinity rules. The pod_anti_affinity structure is documented below.
GetCciPodsV2PodAffinityNodeAffinity
- Required
During List<GetScheduling Ignored During Executions Cci Pods V2Pod Affinity Node Affinity Required During Scheduling Ignored During Execution> - The hard anti-affinity requirements. The pod_affinity_term structure is documented below.
- Required
During []GetScheduling Ignored During Executions Cci Pods V2Pod Affinity Node Affinity Required During Scheduling Ignored During Execution - The hard anti-affinity requirements. The pod_affinity_term structure is documented below.
- required
During List<GetScheduling Ignored During Executions Cci Pods V2Pod Affinity Node Affinity Required During Scheduling Ignored During Execution> - The hard anti-affinity requirements. The pod_affinity_term structure is documented below.
- required
During GetScheduling Ignored During Executions Cci Pods V2Pod Affinity Node Affinity Required During Scheduling Ignored During Execution[] - The hard anti-affinity requirements. The pod_affinity_term structure is documented below.
- required_
during_ Sequence[Getscheduling_ ignored_ during_ executions Cci Pods V2Pod Affinity Node Affinity Required During Scheduling Ignored During Execution] - The hard anti-affinity requirements. The pod_affinity_term structure is documented below.
- required
During List<Property Map>Scheduling Ignored During Executions - The hard anti-affinity requirements. The pod_affinity_term structure is documented below.
GetCciPodsV2PodAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecution
- Node
Selector List<GetTerms Cci Pods V2Pod Affinity Node Affinity Required During Scheduling Ignored During Execution Node Selector Term> - The list of node selector terms. The node_selector_terms structure is documented below.
- Node
Selector []GetTerms Cci Pods V2Pod Affinity Node Affinity Required During Scheduling Ignored During Execution Node Selector Term - The list of node selector terms. The node_selector_terms structure is documented below.
- node
Selector List<GetTerms Cci Pods V2Pod Affinity Node Affinity Required During Scheduling Ignored During Execution Node Selector Term> - The list of node selector terms. The node_selector_terms structure is documented below.
- node
Selector GetTerms Cci Pods V2Pod Affinity Node Affinity Required During Scheduling Ignored During Execution Node Selector Term[] - The list of node selector terms. The node_selector_terms structure is documented below.
- node_
selector_ Sequence[Getterms Cci Pods V2Pod Affinity Node Affinity Required During Scheduling Ignored During Execution Node Selector Term] - The list of node selector terms. The node_selector_terms structure is documented below.
- node
Selector List<Property Map>Terms - The list of node selector terms. The node_selector_terms structure is documented below.
GetCciPodsV2PodAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecutionNodeSelectorTerm
- Match
Expressions List<GetCci Pods V2Pod Affinity Node Affinity Required During Scheduling Ignored During Execution Node Selector Term Match Expression> - The list of label selector requirements. The match_expressions structure is documented below.
- Match
Expressions []GetCci Pods V2Pod Affinity Node Affinity Required During Scheduling Ignored During Execution Node Selector Term Match Expression - The list of label selector requirements. The match_expressions structure is documented below.
- match
Expressions List<GetCci Pods V2Pod Affinity Node Affinity Required During Scheduling Ignored During Execution Node Selector Term Match Expression> - The list of label selector requirements. The match_expressions structure is documented below.
- match
Expressions GetCci Pods V2Pod Affinity Node Affinity Required During Scheduling Ignored During Execution Node Selector Term Match Expression[] - The list of label selector requirements. The match_expressions structure is documented below.
- match_
expressions Sequence[GetCci Pods V2Pod Affinity Node Affinity Required During Scheduling Ignored During Execution Node Selector Term Match Expression] - The list of label selector requirements. The match_expressions structure is documented below.
- match
Expressions List<Property Map> - The list of label selector requirements. The match_expressions structure is documented below.
GetCciPodsV2PodAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecutionNodeSelectorTermMatchExpression
GetCciPodsV2PodAffinityPodAntiAffinity
- Preferred
During List<GetScheduling Ignored During Executions Cci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution> - The soft anti-affinity preferences. The weighted_pod_affinity_term structure is documented below.
- Required
During List<GetScheduling Ignored During Executions Cci Pods V2Pod Affinity Pod Anti Affinity Required During Scheduling Ignored During Execution> - The hard anti-affinity requirements. The pod_affinity_term structure is documented below.
- Preferred
During []GetScheduling Ignored During Executions Cci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution - The soft anti-affinity preferences. The weighted_pod_affinity_term structure is documented below.
- Required
During []GetScheduling Ignored During Executions Cci Pods V2Pod Affinity Pod Anti Affinity Required During Scheduling Ignored During Execution - The hard anti-affinity requirements. The pod_affinity_term structure is documented below.
- preferred
During List<GetScheduling Ignored During Executions Cci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution> - The soft anti-affinity preferences. The weighted_pod_affinity_term structure is documented below.
- required
During List<GetScheduling Ignored During Executions Cci Pods V2Pod Affinity Pod Anti Affinity Required During Scheduling Ignored During Execution> - The hard anti-affinity requirements. The pod_affinity_term structure is documented below.
- preferred
During GetScheduling Ignored During Executions Cci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution[] - The soft anti-affinity preferences. The weighted_pod_affinity_term structure is documented below.
- required
During GetScheduling Ignored During Executions Cci Pods V2Pod Affinity Pod Anti Affinity Required During Scheduling Ignored During Execution[] - The hard anti-affinity requirements. The pod_affinity_term structure is documented below.
- preferred_
during_ Sequence[Getscheduling_ ignored_ during_ executions Cci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution] - The soft anti-affinity preferences. The weighted_pod_affinity_term structure is documented below.
- required_
during_ Sequence[Getscheduling_ ignored_ during_ executions Cci Pods V2Pod Affinity Pod Anti Affinity Required During Scheduling Ignored During Execution] - The hard anti-affinity requirements. The pod_affinity_term structure is documented below.
- preferred
During List<Property Map>Scheduling Ignored During Executions - The soft anti-affinity preferences. The weighted_pod_affinity_term structure is documented below.
- required
During List<Property Map>Scheduling Ignored During Executions - The hard anti-affinity requirements. The pod_affinity_term structure is documented below.
GetCciPodsV2PodAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecution
- Pod
Affinity List<GetTerms Cci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution Pod Affinity Term> - The pod affinity term associated with this weight. The pod_affinity_term structure is documented below.
- Weight double
- The weight associated with matching the corresponding term.
- Pod
Affinity []GetTerms Cci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution Pod Affinity Term - The pod affinity term associated with this weight. The pod_affinity_term structure is documented below.
- Weight float64
- The weight associated with matching the corresponding term.
- pod
Affinity List<GetTerms Cci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution Pod Affinity Term> - The pod affinity term associated with this weight. The pod_affinity_term structure is documented below.
- weight Double
- The weight associated with matching the corresponding term.
- pod
Affinity GetTerms Cci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution Pod Affinity Term[] - The pod affinity term associated with this weight. The pod_affinity_term structure is documented below.
- weight number
- The weight associated with matching the corresponding term.
- pod_
affinity_ Sequence[Getterms Cci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution Pod Affinity Term] - The pod affinity term associated with this weight. The pod_affinity_term structure is documented below.
- weight float
- The weight associated with matching the corresponding term.
- pod
Affinity List<Property Map>Terms - The pod affinity term associated with this weight. The pod_affinity_term structure is documented below.
- weight Number
- The weight associated with matching the corresponding term.
GetCciPodsV2PodAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTerm
- Label
Selectors List<GetCci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution Pod Affinity Term Label Selector> - The label query over a set of resources. The label_selector structure is documented below.
- Namespaces List<string>
- The list of namespaces the label selector applies to.
- Topology
Key string - The key of the node label used to define a topology domain.
- Label
Selectors []GetCci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution Pod Affinity Term Label Selector - The label query over a set of resources. The label_selector structure is documented below.
- Namespaces []string
- The list of namespaces the label selector applies to.
- Topology
Key string - The key of the node label used to define a topology domain.
- label
Selectors List<GetCci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution Pod Affinity Term Label Selector> - The label query over a set of resources. The label_selector structure is documented below.
- namespaces List<String>
- The list of namespaces the label selector applies to.
- topology
Key String - The key of the node label used to define a topology domain.
- label
Selectors GetCci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution Pod Affinity Term Label Selector[] - The label query over a set of resources. The label_selector structure is documented below.
- namespaces string[]
- The list of namespaces the label selector applies to.
- topology
Key string - The key of the node label used to define a topology domain.
- label_
selectors Sequence[GetCci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution Pod Affinity Term Label Selector] - The label query over a set of resources. The label_selector structure is documented below.
- namespaces Sequence[str]
- The list of namespaces the label selector applies to.
- topology_
key str - The key of the node label used to define a topology domain.
- label
Selectors List<Property Map> - The label query over a set of resources. The label_selector structure is documented below.
- namespaces List<String>
- The list of namespaces the label selector applies to.
- topology
Key String - The key of the node label used to define a topology domain.
GetCciPodsV2PodAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermLabelSelector
- Match
Expressions List<GetCci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution Pod Affinity Term Label Selector Match Expression> - The list of label selector requirements. The match_expressions structure is documented below.
- Match
Labels Dictionary<string, string> - The map of
{key,value}pairs.
- Match
Expressions []GetCci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution Pod Affinity Term Label Selector Match Expression - The list of label selector requirements. The match_expressions structure is documented below.
- Match
Labels map[string]string - The map of
{key,value}pairs.
- match
Expressions List<GetCci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution Pod Affinity Term Label Selector Match Expression> - The list of label selector requirements. The match_expressions structure is documented below.
- match
Labels Map<String,String> - The map of
{key,value}pairs.
- match
Expressions GetCci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution Pod Affinity Term Label Selector Match Expression[] - The list of label selector requirements. The match_expressions structure is documented below.
- match
Labels {[key: string]: string} - The map of
{key,value}pairs.
- match_
expressions Sequence[GetCci Pods V2Pod Affinity Pod Anti Affinity Preferred During Scheduling Ignored During Execution Pod Affinity Term Label Selector Match Expression] - The list of label selector requirements. The match_expressions structure is documented below.
- match_
labels Mapping[str, str] - The map of
{key,value}pairs.
- match
Expressions List<Property Map> - The list of label selector requirements. The match_expressions structure is documented below.
- match
Labels Map<String> - The map of
{key,value}pairs.
GetCciPodsV2PodAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermLabelSelectorMatchExpression
GetCciPodsV2PodAffinityPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecution
- Label
Selectors List<GetCci Pods V2Pod Affinity Pod Anti Affinity Required During Scheduling Ignored During Execution Label Selector> - The label query over a set of resources. The label_selector structure is documented below.
- Namespaces List<string>
- The list of namespaces the label selector applies to.
- Topology
Key string - The key of the node label used to define a topology domain.
- Label
Selectors []GetCci Pods V2Pod Affinity Pod Anti Affinity Required During Scheduling Ignored During Execution Label Selector - The label query over a set of resources. The label_selector structure is documented below.
- Namespaces []string
- The list of namespaces the label selector applies to.
- Topology
Key string - The key of the node label used to define a topology domain.
- label
Selectors List<GetCci Pods V2Pod Affinity Pod Anti Affinity Required During Scheduling Ignored During Execution Label Selector> - The label query over a set of resources. The label_selector structure is documented below.
- namespaces List<String>
- The list of namespaces the label selector applies to.
- topology
Key String - The key of the node label used to define a topology domain.
- label
Selectors GetCci Pods V2Pod Affinity Pod Anti Affinity Required During Scheduling Ignored During Execution Label Selector[] - The label query over a set of resources. The label_selector structure is documented below.
- namespaces string[]
- The list of namespaces the label selector applies to.
- topology
Key string - The key of the node label used to define a topology domain.
- label_
selectors Sequence[GetCci Pods V2Pod Affinity Pod Anti Affinity Required During Scheduling Ignored During Execution Label Selector] - The label query over a set of resources. The label_selector structure is documented below.
- namespaces Sequence[str]
- The list of namespaces the label selector applies to.
- topology_
key str - The key of the node label used to define a topology domain.
- label
Selectors List<Property Map> - The label query over a set of resources. The label_selector structure is documented below.
- namespaces List<String>
- The list of namespaces the label selector applies to.
- topology
Key String - The key of the node label used to define a topology domain.
GetCciPodsV2PodAffinityPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionLabelSelector
- Match
Expressions List<GetCci Pods V2Pod Affinity Pod Anti Affinity Required During Scheduling Ignored During Execution Label Selector Match Expression> - The list of label selector requirements. The match_expressions structure is documented below.
- Match
Labels Dictionary<string, string> - The map of
{key,value}pairs.
- Match
Expressions []GetCci Pods V2Pod Affinity Pod Anti Affinity Required During Scheduling Ignored During Execution Label Selector Match Expression - The list of label selector requirements. The match_expressions structure is documented below.
- Match
Labels map[string]string - The map of
{key,value}pairs.
- match
Expressions List<GetCci Pods V2Pod Affinity Pod Anti Affinity Required During Scheduling Ignored During Execution Label Selector Match Expression> - The list of label selector requirements. The match_expressions structure is documented below.
- match
Labels Map<String,String> - The map of
{key,value}pairs.
- match
Expressions GetCci Pods V2Pod Affinity Pod Anti Affinity Required During Scheduling Ignored During Execution Label Selector Match Expression[] - The list of label selector requirements. The match_expressions structure is documented below.
- match
Labels {[key: string]: string} - The map of
{key,value}pairs.
- match_
expressions Sequence[GetCci Pods V2Pod Affinity Pod Anti Affinity Required During Scheduling Ignored During Execution Label Selector Match Expression] - The list of label selector requirements. The match_expressions structure is documented below.
- match_
labels Mapping[str, str] - The map of
{key,value}pairs.
- match
Expressions List<Property Map> - The list of label selector requirements. The match_expressions structure is documented below.
- match
Labels Map<String> - The map of
{key,value}pairs.
GetCciPodsV2PodAffinityPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionLabelSelectorMatchExpression
GetCciPodsV2PodContainer
- Args List<string>
- The arguments to the entrypoint.
- Commands List<string>
- The command line to execute inside the container.
- Env
Froms List<GetCci Pods V2Pod Container Env From> - The list of sources to populate environment variables from. The env_from structure is documented below.
- Envs
List<Get
Cci Pods V2Pod Container Env> - The list of environment variables. The env structure is documented below.
- Image string
- The container image name.
- Lifecycles
List<Get
Cci Pods V2Pod Container Lifecycle> - Actions that the management system should take in response to container lifecycle events. The lifecycle structure is documented below.
- Liveness
Probes List<GetCci Pods V2Pod Container Liveness Probe> - The liveness probe configuration. The probe structure is documented below.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Ports
List<Get
Cci Pods V2Pod Container Port> - The list of ports exposed by the container. The ports structure is documented below.
- Readiness
Probes List<GetCci Pods V2Pod Container Readiness Probe> - The readiness probe configuration. The probe structure is documented below.
- Resources
List<Get
Cci Pods V2Pod Container Resource> - The compute resource requirements of the container. The resources structure is documented below.
- Security
Contexts List<GetCci Pods V2Pod Container Security Context> - The security context of the container. The container_security_context structure is documented below.
- Startup
Probes List<GetCci Pods V2Pod Container Startup Probe> - The startup probe configuration. The probe structure is documented below.
- Stdin bool
- Whether the container should allocate a buffer for stdin.
- Stdin
Once bool - Whether the stdin channel is closed after the first attach disconnects.
- Target
Container stringName - The name of the target container for ephemeral containers.
- Termination
Message stringPath - The path at which the file for the container's termination message is written.
- Termination
Message stringPolicy - The policy for determining the container's termination message.
- Tty bool
- Whether the container should be allocated a TTY.
- Volume
Mounts List<GetCci Pods V2Pod Container Volume Mount> - The list of volume mounts within the container. The volume_mounts structure is documented below.
- Working
Dir string - The container's working directory.
- Args []string
- The arguments to the entrypoint.
- Commands []string
- The command line to execute inside the container.
- Env
Froms []GetCci Pods V2Pod Container Env From - The list of sources to populate environment variables from. The env_from structure is documented below.
- Envs
[]Get
Cci Pods V2Pod Container Env - The list of environment variables. The env structure is documented below.
- Image string
- The container image name.
- Lifecycles
[]Get
Cci Pods V2Pod Container Lifecycle - Actions that the management system should take in response to container lifecycle events. The lifecycle structure is documented below.
- Liveness
Probes []GetCci Pods V2Pod Container Liveness Probe - The liveness probe configuration. The probe structure is documented below.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Ports
[]Get
Cci Pods V2Pod Container Port - The list of ports exposed by the container. The ports structure is documented below.
- Readiness
Probes []GetCci Pods V2Pod Container Readiness Probe - The readiness probe configuration. The probe structure is documented below.
- Resources
[]Get
Cci Pods V2Pod Container Resource - The compute resource requirements of the container. The resources structure is documented below.
- Security
Contexts []GetCci Pods V2Pod Container Security Context - The security context of the container. The container_security_context structure is documented below.
- Startup
Probes []GetCci Pods V2Pod Container Startup Probe - The startup probe configuration. The probe structure is documented below.
- Stdin bool
- Whether the container should allocate a buffer for stdin.
- Stdin
Once bool - Whether the stdin channel is closed after the first attach disconnects.
- Target
Container stringName - The name of the target container for ephemeral containers.
- Termination
Message stringPath - The path at which the file for the container's termination message is written.
- Termination
Message stringPolicy - The policy for determining the container's termination message.
- Tty bool
- Whether the container should be allocated a TTY.
- Volume
Mounts []GetCci Pods V2Pod Container Volume Mount - The list of volume mounts within the container. The volume_mounts structure is documented below.
- Working
Dir string - The container's working directory.
- args List<String>
- The arguments to the entrypoint.
- commands List<String>
- The command line to execute inside the container.
- env
Froms List<GetCci Pods V2Pod Container Env From> - The list of sources to populate environment variables from. The env_from structure is documented below.
- envs
List<Get
Cci Pods V2Pod Container Env> - The list of environment variables. The env structure is documented below.
- image String
- The container image name.
- lifecycles
List<Get
Cci Pods V2Pod Container Lifecycle> - Actions that the management system should take in response to container lifecycle events. The lifecycle structure is documented below.
- liveness
Probes List<GetCci Pods V2Pod Container Liveness Probe> - The liveness probe configuration. The probe structure is documented below.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- ports
List<Get
Cci Pods V2Pod Container Port> - The list of ports exposed by the container. The ports structure is documented below.
- readiness
Probes List<GetCci Pods V2Pod Container Readiness Probe> - The readiness probe configuration. The probe structure is documented below.
- resources
List<Get
Cci Pods V2Pod Container Resource> - The compute resource requirements of the container. The resources structure is documented below.
- security
Contexts List<GetCci Pods V2Pod Container Security Context> - The security context of the container. The container_security_context structure is documented below.
- startup
Probes List<GetCci Pods V2Pod Container Startup Probe> - The startup probe configuration. The probe structure is documented below.
- stdin Boolean
- Whether the container should allocate a buffer for stdin.
- stdin
Once Boolean - Whether the stdin channel is closed after the first attach disconnects.
- target
Container StringName - The name of the target container for ephemeral containers.
- termination
Message StringPath - The path at which the file for the container's termination message is written.
- termination
Message StringPolicy - The policy for determining the container's termination message.
- tty Boolean
- Whether the container should be allocated a TTY.
- volume
Mounts List<GetCci Pods V2Pod Container Volume Mount> - The list of volume mounts within the container. The volume_mounts structure is documented below.
- working
Dir String - The container's working directory.
- args string[]
- The arguments to the entrypoint.
- commands string[]
- The command line to execute inside the container.
- env
Froms GetCci Pods V2Pod Container Env From[] - The list of sources to populate environment variables from. The env_from structure is documented below.
- envs
Get
Cci Pods V2Pod Container Env[] - The list of environment variables. The env structure is documented below.
- image string
- The container image name.
- lifecycles
Get
Cci Pods V2Pod Container Lifecycle[] - Actions that the management system should take in response to container lifecycle events. The lifecycle structure is documented below.
- liveness
Probes GetCci Pods V2Pod Container Liveness Probe[] - The liveness probe configuration. The probe structure is documented below.
- name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- ports
Get
Cci Pods V2Pod Container Port[] - The list of ports exposed by the container. The ports structure is documented below.
- readiness
Probes GetCci Pods V2Pod Container Readiness Probe[] - The readiness probe configuration. The probe structure is documented below.
- resources
Get
Cci Pods V2Pod Container Resource[] - The compute resource requirements of the container. The resources structure is documented below.
- security
Contexts GetCci Pods V2Pod Container Security Context[] - The security context of the container. The container_security_context structure is documented below.
- startup
Probes GetCci Pods V2Pod Container Startup Probe[] - The startup probe configuration. The probe structure is documented below.
- stdin boolean
- Whether the container should allocate a buffer for stdin.
- stdin
Once boolean - Whether the stdin channel is closed after the first attach disconnects.
- target
Container stringName - The name of the target container for ephemeral containers.
- termination
Message stringPath - The path at which the file for the container's termination message is written.
- termination
Message stringPolicy - The policy for determining the container's termination message.
- tty boolean
- Whether the container should be allocated a TTY.
- volume
Mounts GetCci Pods V2Pod Container Volume Mount[] - The list of volume mounts within the container. The volume_mounts structure is documented below.
- working
Dir string - The container's working directory.
- args Sequence[str]
- The arguments to the entrypoint.
- commands Sequence[str]
- The command line to execute inside the container.
- env_
froms Sequence[GetCci Pods V2Pod Container Env From] - The list of sources to populate environment variables from. The env_from structure is documented below.
- envs
Sequence[Get
Cci Pods V2Pod Container Env] - The list of environment variables. The env structure is documented below.
- image str
- The container image name.
- lifecycles
Sequence[Get
Cci Pods V2Pod Container Lifecycle] - Actions that the management system should take in response to container lifecycle events. The lifecycle structure is documented below.
- liveness_
probes Sequence[GetCci Pods V2Pod Container Liveness Probe] - The liveness probe configuration. The probe structure is documented below.
- name str
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- ports
Sequence[Get
Cci Pods V2Pod Container Port] - The list of ports exposed by the container. The ports structure is documented below.
- readiness_
probes Sequence[GetCci Pods V2Pod Container Readiness Probe] - The readiness probe configuration. The probe structure is documented below.
- resources
Sequence[Get
Cci Pods V2Pod Container Resource] - The compute resource requirements of the container. The resources structure is documented below.
- security_
contexts Sequence[GetCci Pods V2Pod Container Security Context] - The security context of the container. The container_security_context structure is documented below.
- startup_
probes Sequence[GetCci Pods V2Pod Container Startup Probe] - The startup probe configuration. The probe structure is documented below.
- stdin bool
- Whether the container should allocate a buffer for stdin.
- stdin_
once bool - Whether the stdin channel is closed after the first attach disconnects.
- target_
container_ strname - The name of the target container for ephemeral containers.
- termination_
message_ strpath - The path at which the file for the container's termination message is written.
- termination_
message_ strpolicy - The policy for determining the container's termination message.
- tty bool
- Whether the container should be allocated a TTY.
- volume_
mounts Sequence[GetCci Pods V2Pod Container Volume Mount] - The list of volume mounts within the container. The volume_mounts structure is documented below.
- working_
dir str - The container's working directory.
- args List<String>
- The arguments to the entrypoint.
- commands List<String>
- The command line to execute inside the container.
- env
Froms List<Property Map> - The list of sources to populate environment variables from. The env_from structure is documented below.
- envs List<Property Map>
- The list of environment variables. The env structure is documented below.
- image String
- The container image name.
- lifecycles List<Property Map>
- Actions that the management system should take in response to container lifecycle events. The lifecycle structure is documented below.
- liveness
Probes List<Property Map> - The liveness probe configuration. The probe structure is documented below.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- ports List<Property Map>
- The list of ports exposed by the container. The ports structure is documented below.
- readiness
Probes List<Property Map> - The readiness probe configuration. The probe structure is documented below.
- resources List<Property Map>
- The compute resource requirements of the container. The resources structure is documented below.
- security
Contexts List<Property Map> - The security context of the container. The container_security_context structure is documented below.
- startup
Probes List<Property Map> - The startup probe configuration. The probe structure is documented below.
- stdin Boolean
- Whether the container should allocate a buffer for stdin.
- stdin
Once Boolean - Whether the stdin channel is closed after the first attach disconnects.
- target
Container StringName - The name of the target container for ephemeral containers.
- termination
Message StringPath - The path at which the file for the container's termination message is written.
- termination
Message StringPolicy - The policy for determining the container's termination message.
- tty Boolean
- Whether the container should be allocated a TTY.
- volume
Mounts List<Property Map> - The list of volume mounts within the container. The volume_mounts structure is documented below.
- working
Dir String - The container's working directory.
GetCciPodsV2PodContainerEnv
GetCciPodsV2PodContainerEnvFrom
- Config
Map List<GetReves Cci Pods V2Pod Container Env From Config Map Ref> - A reference to a ConfigMap from which to load environment variables. The env_source structure is documented below.
- Prefix string
- The prefix prepended to each key.
- Secret
Reves List<GetCci Pods V2Pod Container Env From Secret Ref> - A reference to a Secret from which to load environment variables. The env_source structure is documented below.
- Config
Map []GetReves Cci Pods V2Pod Container Env From Config Map Ref - A reference to a ConfigMap from which to load environment variables. The env_source structure is documented below.
- Prefix string
- The prefix prepended to each key.
- Secret
Reves []GetCci Pods V2Pod Container Env From Secret Ref - A reference to a Secret from which to load environment variables. The env_source structure is documented below.
- config
Map List<GetReves Cci Pods V2Pod Container Env From Config Map Ref> - A reference to a ConfigMap from which to load environment variables. The env_source structure is documented below.
- prefix String
- The prefix prepended to each key.
- secret
Reves List<GetCci Pods V2Pod Container Env From Secret Ref> - A reference to a Secret from which to load environment variables. The env_source structure is documented below.
- config
Map GetReves Cci Pods V2Pod Container Env From Config Map Ref[] - A reference to a ConfigMap from which to load environment variables. The env_source structure is documented below.
- prefix string
- The prefix prepended to each key.
- secret
Reves GetCci Pods V2Pod Container Env From Secret Ref[] - A reference to a Secret from which to load environment variables. The env_source structure is documented below.
- config_
map_ Sequence[Getreves Cci Pods V2Pod Container Env From Config Map Ref] - A reference to a ConfigMap from which to load environment variables. The env_source structure is documented below.
- prefix str
- The prefix prepended to each key.
- secret_
reves Sequence[GetCci Pods V2Pod Container Env From Secret Ref] - A reference to a Secret from which to load environment variables. The env_source structure is documented below.
- config
Map List<Property Map>Reves - A reference to a ConfigMap from which to load environment variables. The env_source structure is documented below.
- prefix String
- The prefix prepended to each key.
- secret
Reves List<Property Map> - A reference to a Secret from which to load environment variables. The env_source structure is documented below.
GetCciPodsV2PodContainerEnvFromConfigMapRef
GetCciPodsV2PodContainerEnvFromSecretRef
GetCciPodsV2PodContainerLifecycle
- Post
Starts List<GetCci Pods V2Pod Container Lifecycle Post Start> - The handler executed right after container is created. The lifecycle_handler structure is documented below.
- Pre
Stops List<GetCci Pods V2Pod Container Lifecycle Pre Stop> - The handler executed right before a container is terminated. The lifecycle_handler structure is documented below.
- Post
Starts []GetCci Pods V2Pod Container Lifecycle Post Start - The handler executed right after container is created. The lifecycle_handler structure is documented below.
- Pre
Stops []GetCci Pods V2Pod Container Lifecycle Pre Stop - The handler executed right before a container is terminated. The lifecycle_handler structure is documented below.
- post
Starts List<GetCci Pods V2Pod Container Lifecycle Post Start> - The handler executed right after container is created. The lifecycle_handler structure is documented below.
- pre
Stops List<GetCci Pods V2Pod Container Lifecycle Pre Stop> - The handler executed right before a container is terminated. The lifecycle_handler structure is documented below.
- post
Starts GetCci Pods V2Pod Container Lifecycle Post Start[] - The handler executed right after container is created. The lifecycle_handler structure is documented below.
- pre
Stops GetCci Pods V2Pod Container Lifecycle Pre Stop[] - The handler executed right before a container is terminated. The lifecycle_handler structure is documented below.
- post_
starts Sequence[GetCci Pods V2Pod Container Lifecycle Post Start] - The handler executed right after container is created. The lifecycle_handler structure is documented below.
- pre_
stops Sequence[GetCci Pods V2Pod Container Lifecycle Pre Stop] - The handler executed right before a container is terminated. The lifecycle_handler structure is documented below.
- post
Starts List<Property Map> - The handler executed right after container is created. The lifecycle_handler structure is documented below.
- pre
Stops List<Property Map> - The handler executed right before a container is terminated. The lifecycle_handler structure is documented below.
GetCciPodsV2PodContainerLifecyclePostStart
- Execs
List<Get
Cci Pods V2Pod Container Lifecycle Post Start Exec> - The exec action to perform. The exec structure is documented below.
- Http
Gets List<GetCci Pods V2Pod Container Lifecycle Post Start Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- Execs
[]Get
Cci Pods V2Pod Container Lifecycle Post Start Exec - The exec action to perform. The exec structure is documented below.
- Http
Gets []GetCci Pods V2Pod Container Lifecycle Post Start Http Get - The HTTP GET action to perform. The http_get structure is documented below.
- execs
List<Get
Cci Pods V2Pod Container Lifecycle Post Start Exec> - The exec action to perform. The exec structure is documented below.
- http
Gets List<GetCci Pods V2Pod Container Lifecycle Post Start Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- execs
Get
Cci Pods V2Pod Container Lifecycle Post Start Exec[] - The exec action to perform. The exec structure is documented below.
- http
Gets GetCci Pods V2Pod Container Lifecycle Post Start Http Get[] - The HTTP GET action to perform. The http_get structure is documented below.
- execs
Sequence[Get
Cci Pods V2Pod Container Lifecycle Post Start Exec] - The exec action to perform. The exec structure is documented below.
- http_
gets Sequence[GetCci Pods V2Pod Container Lifecycle Post Start Http Get] - The HTTP GET action to perform. The http_get structure is documented below.
- execs List<Property Map>
- The exec action to perform. The exec structure is documented below.
- http
Gets List<Property Map> - The HTTP GET action to perform. The http_get structure is documented below.
GetCciPodsV2PodContainerLifecyclePostStartExec
- Commands List<string>
- The command line to execute inside the container.
- Commands []string
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
- commands string[]
- The command line to execute inside the container.
- commands Sequence[str]
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
GetCciPodsV2PodContainerLifecyclePostStartHttpGet
- Host string
- The host name to connect to.
- Http
Headers List<GetCci Pods V2Pod Container Lifecycle Post Start Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- Host string
- The host name to connect to.
- Http
Headers []GetCci Pods V2Pod Container Lifecycle Post Start Http Get Http Header - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<GetCci Pods V2Pod Container Lifecycle Post Start Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
- host string
- The host name to connect to.
- http
Headers GetCci Pods V2Pod Container Lifecycle Post Start Http Get Http Header[] - The list of custom HTTP headers. The http_headers structure is documented below.
- path string
- The relative path of the file to create.
- port string
- The port to access on the container.
- scheme string
- The scheme to use for connecting to the host.
- host str
- The host name to connect to.
- http_
headers Sequence[GetCci Pods V2Pod Container Lifecycle Post Start Http Get Http Header] - The list of custom HTTP headers. The http_headers structure is documented below.
- path str
- The relative path of the file to create.
- port str
- The port to access on the container.
- scheme str
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<Property Map> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
GetCciPodsV2PodContainerLifecyclePostStartHttpGetHttpHeader
GetCciPodsV2PodContainerLifecyclePreStop
- Execs
List<Get
Cci Pods V2Pod Container Lifecycle Pre Stop Exec> - The exec action to perform. The exec structure is documented below.
- Http
Gets List<GetCci Pods V2Pod Container Lifecycle Pre Stop Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- Execs
[]Get
Cci Pods V2Pod Container Lifecycle Pre Stop Exec - The exec action to perform. The exec structure is documented below.
- Http
Gets []GetCci Pods V2Pod Container Lifecycle Pre Stop Http Get - The HTTP GET action to perform. The http_get structure is documented below.
- execs
List<Get
Cci Pods V2Pod Container Lifecycle Pre Stop Exec> - The exec action to perform. The exec structure is documented below.
- http
Gets List<GetCci Pods V2Pod Container Lifecycle Pre Stop Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- execs
Get
Cci Pods V2Pod Container Lifecycle Pre Stop Exec[] - The exec action to perform. The exec structure is documented below.
- http
Gets GetCci Pods V2Pod Container Lifecycle Pre Stop Http Get[] - The HTTP GET action to perform. The http_get structure is documented below.
- execs
Sequence[Get
Cci Pods V2Pod Container Lifecycle Pre Stop Exec] - The exec action to perform. The exec structure is documented below.
- http_
gets Sequence[GetCci Pods V2Pod Container Lifecycle Pre Stop Http Get] - The HTTP GET action to perform. The http_get structure is documented below.
- execs List<Property Map>
- The exec action to perform. The exec structure is documented below.
- http
Gets List<Property Map> - The HTTP GET action to perform. The http_get structure is documented below.
GetCciPodsV2PodContainerLifecyclePreStopExec
- Commands List<string>
- The command line to execute inside the container.
- Commands []string
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
- commands string[]
- The command line to execute inside the container.
- commands Sequence[str]
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
GetCciPodsV2PodContainerLifecyclePreStopHttpGet
- Host string
- The host name to connect to.
- Http
Headers List<GetCci Pods V2Pod Container Lifecycle Pre Stop Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- Host string
- The host name to connect to.
- Http
Headers []GetCci Pods V2Pod Container Lifecycle Pre Stop Http Get Http Header - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<GetCci Pods V2Pod Container Lifecycle Pre Stop Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
- host string
- The host name to connect to.
- http
Headers GetCci Pods V2Pod Container Lifecycle Pre Stop Http Get Http Header[] - The list of custom HTTP headers. The http_headers structure is documented below.
- path string
- The relative path of the file to create.
- port string
- The port to access on the container.
- scheme string
- The scheme to use for connecting to the host.
- host str
- The host name to connect to.
- http_
headers Sequence[GetCci Pods V2Pod Container Lifecycle Pre Stop Http Get Http Header] - The list of custom HTTP headers. The http_headers structure is documented below.
- path str
- The relative path of the file to create.
- port str
- The port to access on the container.
- scheme str
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<Property Map> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
GetCciPodsV2PodContainerLifecyclePreStopHttpGetHttpHeader
GetCciPodsV2PodContainerLivenessProbe
- Execs
List<Get
Cci Pods V2Pod Container Liveness Probe Exec> - The exec action to perform. The exec structure is documented below.
- Failure
Threshold double - Minimum consecutive failures for the probe to be considered failed.
- Http
Gets List<GetCci Pods V2Pod Container Liveness Probe Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- Initial
Delay doubleSeconds - Number of seconds before the first probe is initiated.
- Period
Seconds double - How often to perform the probe, in seconds.
- Success
Threshold double - Minimum consecutive successes for the probe to be considered successful.
- Termination
Grace doublePeriod Seconds - The grace period in seconds when the probe fails.
- Execs
[]Get
Cci Pods V2Pod Container Liveness Probe Exec - The exec action to perform. The exec structure is documented below.
- Failure
Threshold float64 - Minimum consecutive failures for the probe to be considered failed.
- Http
Gets []GetCci Pods V2Pod Container Liveness Probe Http Get - The HTTP GET action to perform. The http_get structure is documented below.
- Initial
Delay float64Seconds - Number of seconds before the first probe is initiated.
- Period
Seconds float64 - How often to perform the probe, in seconds.
- Success
Threshold float64 - Minimum consecutive successes for the probe to be considered successful.
- Termination
Grace float64Period Seconds - The grace period in seconds when the probe fails.
- execs
List<Get
Cci Pods V2Pod Container Liveness Probe Exec> - The exec action to perform. The exec structure is documented below.
- failure
Threshold Double - Minimum consecutive failures for the probe to be considered failed.
- http
Gets List<GetCci Pods V2Pod Container Liveness Probe Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay DoubleSeconds - Number of seconds before the first probe is initiated.
- period
Seconds Double - How often to perform the probe, in seconds.
- success
Threshold Double - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace DoublePeriod Seconds - The grace period in seconds when the probe fails.
- execs
Get
Cci Pods V2Pod Container Liveness Probe Exec[] - The exec action to perform. The exec structure is documented below.
- failure
Threshold number - Minimum consecutive failures for the probe to be considered failed.
- http
Gets GetCci Pods V2Pod Container Liveness Probe Http Get[] - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay numberSeconds - Number of seconds before the first probe is initiated.
- period
Seconds number - How often to perform the probe, in seconds.
- success
Threshold number - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace numberPeriod Seconds - The grace period in seconds when the probe fails.
- execs
Sequence[Get
Cci Pods V2Pod Container Liveness Probe Exec] - The exec action to perform. The exec structure is documented below.
- failure_
threshold float - Minimum consecutive failures for the probe to be considered failed.
- http_
gets Sequence[GetCci Pods V2Pod Container Liveness Probe Http Get] - The HTTP GET action to perform. The http_get structure is documented below.
- initial_
delay_ floatseconds - Number of seconds before the first probe is initiated.
- period_
seconds float - How often to perform the probe, in seconds.
- success_
threshold float - Minimum consecutive successes for the probe to be considered successful.
- termination_
grace_ floatperiod_ seconds - The grace period in seconds when the probe fails.
- execs List<Property Map>
- The exec action to perform. The exec structure is documented below.
- failure
Threshold Number - Minimum consecutive failures for the probe to be considered failed.
- http
Gets List<Property Map> - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay NumberSeconds - Number of seconds before the first probe is initiated.
- period
Seconds Number - How often to perform the probe, in seconds.
- success
Threshold Number - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace NumberPeriod Seconds - The grace period in seconds when the probe fails.
GetCciPodsV2PodContainerLivenessProbeExec
- Commands List<string>
- The command line to execute inside the container.
- Commands []string
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
- commands string[]
- The command line to execute inside the container.
- commands Sequence[str]
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
GetCciPodsV2PodContainerLivenessProbeHttpGet
- Host string
- The host name to connect to.
- Http
Headers List<GetCci Pods V2Pod Container Liveness Probe Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- Host string
- The host name to connect to.
- Http
Headers []GetCci Pods V2Pod Container Liveness Probe Http Get Http Header - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<GetCci Pods V2Pod Container Liveness Probe Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
- host string
- The host name to connect to.
- http
Headers GetCci Pods V2Pod Container Liveness Probe Http Get Http Header[] - The list of custom HTTP headers. The http_headers structure is documented below.
- path string
- The relative path of the file to create.
- port string
- The port to access on the container.
- scheme string
- The scheme to use for connecting to the host.
- host str
- The host name to connect to.
- http_
headers Sequence[GetCci Pods V2Pod Container Liveness Probe Http Get Http Header] - The list of custom HTTP headers. The http_headers structure is documented below.
- path str
- The relative path of the file to create.
- port str
- The port to access on the container.
- scheme str
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<Property Map> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
GetCciPodsV2PodContainerLivenessProbeHttpGetHttpHeader
GetCciPodsV2PodContainerPort
- Container
Port double - The port number exposed by the container.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Protocol string
- The protocol of the port.
- Container
Port float64 - The port number exposed by the container.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Protocol string
- The protocol of the port.
- container
Port Double - The port number exposed by the container.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- protocol String
- The protocol of the port.
- container
Port number - The port number exposed by the container.
- name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- protocol string
- The protocol of the port.
- container_
port float - The port number exposed by the container.
- name str
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- protocol str
- The protocol of the port.
- container
Port Number - The port number exposed by the container.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- protocol String
- The protocol of the port.
GetCciPodsV2PodContainerReadinessProbe
- Execs
List<Get
Cci Pods V2Pod Container Readiness Probe Exec> - The exec action to perform. The exec structure is documented below.
- Failure
Threshold double - Minimum consecutive failures for the probe to be considered failed.
- Http
Gets List<GetCci Pods V2Pod Container Readiness Probe Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- Initial
Delay doubleSeconds - Number of seconds before the first probe is initiated.
- Period
Seconds double - How often to perform the probe, in seconds.
- Success
Threshold double - Minimum consecutive successes for the probe to be considered successful.
- Termination
Grace doublePeriod Seconds - The grace period in seconds when the probe fails.
- Execs
[]Get
Cci Pods V2Pod Container Readiness Probe Exec - The exec action to perform. The exec structure is documented below.
- Failure
Threshold float64 - Minimum consecutive failures for the probe to be considered failed.
- Http
Gets []GetCci Pods V2Pod Container Readiness Probe Http Get - The HTTP GET action to perform. The http_get structure is documented below.
- Initial
Delay float64Seconds - Number of seconds before the first probe is initiated.
- Period
Seconds float64 - How often to perform the probe, in seconds.
- Success
Threshold float64 - Minimum consecutive successes for the probe to be considered successful.
- Termination
Grace float64Period Seconds - The grace period in seconds when the probe fails.
- execs
List<Get
Cci Pods V2Pod Container Readiness Probe Exec> - The exec action to perform. The exec structure is documented below.
- failure
Threshold Double - Minimum consecutive failures for the probe to be considered failed.
- http
Gets List<GetCci Pods V2Pod Container Readiness Probe Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay DoubleSeconds - Number of seconds before the first probe is initiated.
- period
Seconds Double - How often to perform the probe, in seconds.
- success
Threshold Double - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace DoublePeriod Seconds - The grace period in seconds when the probe fails.
- execs
Get
Cci Pods V2Pod Container Readiness Probe Exec[] - The exec action to perform. The exec structure is documented below.
- failure
Threshold number - Minimum consecutive failures for the probe to be considered failed.
- http
Gets GetCci Pods V2Pod Container Readiness Probe Http Get[] - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay numberSeconds - Number of seconds before the first probe is initiated.
- period
Seconds number - How often to perform the probe, in seconds.
- success
Threshold number - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace numberPeriod Seconds - The grace period in seconds when the probe fails.
- execs
Sequence[Get
Cci Pods V2Pod Container Readiness Probe Exec] - The exec action to perform. The exec structure is documented below.
- failure_
threshold float - Minimum consecutive failures for the probe to be considered failed.
- http_
gets Sequence[GetCci Pods V2Pod Container Readiness Probe Http Get] - The HTTP GET action to perform. The http_get structure is documented below.
- initial_
delay_ floatseconds - Number of seconds before the first probe is initiated.
- period_
seconds float - How often to perform the probe, in seconds.
- success_
threshold float - Minimum consecutive successes for the probe to be considered successful.
- termination_
grace_ floatperiod_ seconds - The grace period in seconds when the probe fails.
- execs List<Property Map>
- The exec action to perform. The exec structure is documented below.
- failure
Threshold Number - Minimum consecutive failures for the probe to be considered failed.
- http
Gets List<Property Map> - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay NumberSeconds - Number of seconds before the first probe is initiated.
- period
Seconds Number - How often to perform the probe, in seconds.
- success
Threshold Number - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace NumberPeriod Seconds - The grace period in seconds when the probe fails.
GetCciPodsV2PodContainerReadinessProbeExec
- Commands List<string>
- The command line to execute inside the container.
- Commands []string
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
- commands string[]
- The command line to execute inside the container.
- commands Sequence[str]
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
GetCciPodsV2PodContainerReadinessProbeHttpGet
- Host string
- The host name to connect to.
- Http
Headers List<GetCci Pods V2Pod Container Readiness Probe Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- Host string
- The host name to connect to.
- Http
Headers []GetCci Pods V2Pod Container Readiness Probe Http Get Http Header - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<GetCci Pods V2Pod Container Readiness Probe Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
- host string
- The host name to connect to.
- http
Headers GetCci Pods V2Pod Container Readiness Probe Http Get Http Header[] - The list of custom HTTP headers. The http_headers structure is documented below.
- path string
- The relative path of the file to create.
- port string
- The port to access on the container.
- scheme string
- The scheme to use for connecting to the host.
- host str
- The host name to connect to.
- http_
headers Sequence[GetCci Pods V2Pod Container Readiness Probe Http Get Http Header] - The list of custom HTTP headers. The http_headers structure is documented below.
- path str
- The relative path of the file to create.
- port str
- The port to access on the container.
- scheme str
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<Property Map> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
GetCciPodsV2PodContainerReadinessProbeHttpGetHttpHeader
GetCciPodsV2PodContainerResource
GetCciPodsV2PodContainerSecurityContext
- Capabilities
List<Get
Cci Pods V2Pod Container Security Context Capability> - The list of capabilities to add or drop. The capabilities structure is documented below.
- Proc
Mount string - The type of proc mount to use for the container.
- Read
Only boolRoot File System - Whether the container has a read-only root filesystem.
- Run
As doubleGroup - The GID to run the entrypoint of the container process.
- Run
As boolNon Root - Whether containers must run as a non-root user.
- Run
As doubleUser - The UID to run the entrypoint of the container process.
- Capabilities
[]Get
Cci Pods V2Pod Container Security Context Capability - The list of capabilities to add or drop. The capabilities structure is documented below.
- Proc
Mount string - The type of proc mount to use for the container.
- Read
Only boolRoot File System - Whether the container has a read-only root filesystem.
- Run
As float64Group - The GID to run the entrypoint of the container process.
- Run
As boolNon Root - Whether containers must run as a non-root user.
- Run
As float64User - The UID to run the entrypoint of the container process.
- capabilities
List<Get
Cci Pods V2Pod Container Security Context Capability> - The list of capabilities to add or drop. The capabilities structure is documented below.
- proc
Mount String - The type of proc mount to use for the container.
- read
Only BooleanRoot File System - Whether the container has a read-only root filesystem.
- run
As DoubleGroup - The GID to run the entrypoint of the container process.
- run
As BooleanNon Root - Whether containers must run as a non-root user.
- run
As DoubleUser - The UID to run the entrypoint of the container process.
- capabilities
Get
Cci Pods V2Pod Container Security Context Capability[] - The list of capabilities to add or drop. The capabilities structure is documented below.
- proc
Mount string - The type of proc mount to use for the container.
- read
Only booleanRoot File System - Whether the container has a read-only root filesystem.
- run
As numberGroup - The GID to run the entrypoint of the container process.
- run
As booleanNon Root - Whether containers must run as a non-root user.
- run
As numberUser - The UID to run the entrypoint of the container process.
- capabilities
Sequence[Get
Cci Pods V2Pod Container Security Context Capability] - The list of capabilities to add or drop. The capabilities structure is documented below.
- proc_
mount str - The type of proc mount to use for the container.
- read_
only_ boolroot_ file_ system - Whether the container has a read-only root filesystem.
- run_
as_ floatgroup - The GID to run the entrypoint of the container process.
- run_
as_ boolnon_ root - Whether containers must run as a non-root user.
- run_
as_ floatuser - The UID to run the entrypoint of the container process.
- capabilities List<Property Map>
- The list of capabilities to add or drop. The capabilities structure is documented below.
- proc
Mount String - The type of proc mount to use for the container.
- read
Only BooleanRoot File System - Whether the container has a read-only root filesystem.
- run
As NumberGroup - The GID to run the entrypoint of the container process.
- run
As BooleanNon Root - Whether containers must run as a non-root user.
- run
As NumberUser - The UID to run the entrypoint of the container process.
GetCciPodsV2PodContainerSecurityContextCapability
GetCciPodsV2PodContainerStartupProbe
- Execs
List<Get
Cci Pods V2Pod Container Startup Probe Exec> - The exec action to perform. The exec structure is documented below.
- Failure
Threshold double - Minimum consecutive failures for the probe to be considered failed.
- Http
Gets List<GetCci Pods V2Pod Container Startup Probe Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- Initial
Delay doubleSeconds - Number of seconds before the first probe is initiated.
- Period
Seconds double - How often to perform the probe, in seconds.
- Success
Threshold double - Minimum consecutive successes for the probe to be considered successful.
- Termination
Grace doublePeriod Seconds - The grace period in seconds when the probe fails.
- Execs
[]Get
Cci Pods V2Pod Container Startup Probe Exec - The exec action to perform. The exec structure is documented below.
- Failure
Threshold float64 - Minimum consecutive failures for the probe to be considered failed.
- Http
Gets []GetCci Pods V2Pod Container Startup Probe Http Get - The HTTP GET action to perform. The http_get structure is documented below.
- Initial
Delay float64Seconds - Number of seconds before the first probe is initiated.
- Period
Seconds float64 - How often to perform the probe, in seconds.
- Success
Threshold float64 - Minimum consecutive successes for the probe to be considered successful.
- Termination
Grace float64Period Seconds - The grace period in seconds when the probe fails.
- execs
List<Get
Cci Pods V2Pod Container Startup Probe Exec> - The exec action to perform. The exec structure is documented below.
- failure
Threshold Double - Minimum consecutive failures for the probe to be considered failed.
- http
Gets List<GetCci Pods V2Pod Container Startup Probe Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay DoubleSeconds - Number of seconds before the first probe is initiated.
- period
Seconds Double - How often to perform the probe, in seconds.
- success
Threshold Double - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace DoublePeriod Seconds - The grace period in seconds when the probe fails.
- execs
Get
Cci Pods V2Pod Container Startup Probe Exec[] - The exec action to perform. The exec structure is documented below.
- failure
Threshold number - Minimum consecutive failures for the probe to be considered failed.
- http
Gets GetCci Pods V2Pod Container Startup Probe Http Get[] - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay numberSeconds - Number of seconds before the first probe is initiated.
- period
Seconds number - How often to perform the probe, in seconds.
- success
Threshold number - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace numberPeriod Seconds - The grace period in seconds when the probe fails.
- execs
Sequence[Get
Cci Pods V2Pod Container Startup Probe Exec] - The exec action to perform. The exec structure is documented below.
- failure_
threshold float - Minimum consecutive failures for the probe to be considered failed.
- http_
gets Sequence[GetCci Pods V2Pod Container Startup Probe Http Get] - The HTTP GET action to perform. The http_get structure is documented below.
- initial_
delay_ floatseconds - Number of seconds before the first probe is initiated.
- period_
seconds float - How often to perform the probe, in seconds.
- success_
threshold float - Minimum consecutive successes for the probe to be considered successful.
- termination_
grace_ floatperiod_ seconds - The grace period in seconds when the probe fails.
- execs List<Property Map>
- The exec action to perform. The exec structure is documented below.
- failure
Threshold Number - Minimum consecutive failures for the probe to be considered failed.
- http
Gets List<Property Map> - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay NumberSeconds - Number of seconds before the first probe is initiated.
- period
Seconds Number - How often to perform the probe, in seconds.
- success
Threshold Number - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace NumberPeriod Seconds - The grace period in seconds when the probe fails.
GetCciPodsV2PodContainerStartupProbeExec
- Commands List<string>
- The command line to execute inside the container.
- Commands []string
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
- commands string[]
- The command line to execute inside the container.
- commands Sequence[str]
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
GetCciPodsV2PodContainerStartupProbeHttpGet
- Host string
- The host name to connect to.
- Http
Headers List<GetCci Pods V2Pod Container Startup Probe Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- Host string
- The host name to connect to.
- Http
Headers []GetCci Pods V2Pod Container Startup Probe Http Get Http Header - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<GetCci Pods V2Pod Container Startup Probe Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
- host string
- The host name to connect to.
- http
Headers GetCci Pods V2Pod Container Startup Probe Http Get Http Header[] - The list of custom HTTP headers. The http_headers structure is documented below.
- path string
- The relative path of the file to create.
- port string
- The port to access on the container.
- scheme string
- The scheme to use for connecting to the host.
- host str
- The host name to connect to.
- http_
headers Sequence[GetCci Pods V2Pod Container Startup Probe Http Get Http Header] - The list of custom HTTP headers. The http_headers structure is documented below.
- path str
- The relative path of the file to create.
- port str
- The port to access on the container.
- scheme str
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<Property Map> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
GetCciPodsV2PodContainerStartupProbeHttpGetHttpHeader
GetCciPodsV2PodContainerVolumeMount
- Extend
Path stringMode - The extended path mode of the mount.
- Mount
Path string - The path within the container at which the volume is mounted.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Read
Only bool - Whether the volume is mounted read-only.
- Sub
Path string - A sub-path within the volume that should be mounted.
- Sub
Path stringExpr - An expanded sub-path within the volume.
- Extend
Path stringMode - The extended path mode of the mount.
- Mount
Path string - The path within the container at which the volume is mounted.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Read
Only bool - Whether the volume is mounted read-only.
- Sub
Path string - A sub-path within the volume that should be mounted.
- Sub
Path stringExpr - An expanded sub-path within the volume.
- extend
Path StringMode - The extended path mode of the mount.
- mount
Path String - The path within the container at which the volume is mounted.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- read
Only Boolean - Whether the volume is mounted read-only.
- sub
Path String - A sub-path within the volume that should be mounted.
- sub
Path StringExpr - An expanded sub-path within the volume.
- extend
Path stringMode - The extended path mode of the mount.
- mount
Path string - The path within the container at which the volume is mounted.
- name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- read
Only boolean - Whether the volume is mounted read-only.
- sub
Path string - A sub-path within the volume that should be mounted.
- sub
Path stringExpr - An expanded sub-path within the volume.
- extend_
path_ strmode - The extended path mode of the mount.
- mount_
path str - The path within the container at which the volume is mounted.
- name str
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- read_
only bool - Whether the volume is mounted read-only.
- sub_
path str - A sub-path within the volume that should be mounted.
- sub_
path_ strexpr - An expanded sub-path within the volume.
- extend
Path StringMode - The extended path mode of the mount.
- mount
Path String - The path within the container at which the volume is mounted.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- read
Only Boolean - Whether the volume is mounted read-only.
- sub
Path String - A sub-path within the volume that should be mounted.
- sub
Path StringExpr - An expanded sub-path within the volume.
GetCciPodsV2PodDnsConfig
- Nameservers List<string>
- The list of DNS name servers.
- Options
List<Get
Cci Pods V2Pod Dns Config Option> - The list of DNS resolver options. The options structure is documented below.
- Searches List<string>
- The list of DNS search domains.
- Nameservers []string
- The list of DNS name servers.
- Options
[]Get
Cci Pods V2Pod Dns Config Option - The list of DNS resolver options. The options structure is documented below.
- Searches []string
- The list of DNS search domains.
- nameservers List<String>
- The list of DNS name servers.
- options
List<Get
Cci Pods V2Pod Dns Config Option> - The list of DNS resolver options. The options structure is documented below.
- searches List<String>
- The list of DNS search domains.
- nameservers string[]
- The list of DNS name servers.
- options
Get
Cci Pods V2Pod Dns Config Option[] - The list of DNS resolver options. The options structure is documented below.
- searches string[]
- The list of DNS search domains.
- nameservers Sequence[str]
- The list of DNS name servers.
- options
Sequence[Get
Cci Pods V2Pod Dns Config Option] - The list of DNS resolver options. The options structure is documented below.
- searches Sequence[str]
- The list of DNS search domains.
- nameservers List<String>
- The list of DNS name servers.
- options List<Property Map>
- The list of DNS resolver options. The options structure is documented below.
- searches List<String>
- The list of DNS search domains.
GetCciPodsV2PodDnsConfigOption
GetCciPodsV2PodEphemeralContainer
- Args List<string>
- The arguments to the entrypoint.
- Commands List<string>
- The command line to execute inside the container.
- Env
Froms List<GetCci Pods V2Pod Ephemeral Container Env From> - The list of sources to populate environment variables from. The env_from structure is documented below.
- Envs
List<Get
Cci Pods V2Pod Ephemeral Container Env> - The list of environment variables. The env structure is documented below.
- Image string
- The container image name.
- Lifecycles
List<Get
Cci Pods V2Pod Ephemeral Container Lifecycle> - Actions that the management system should take in response to container lifecycle events. The lifecycle structure is documented below.
- Liveness
Probes List<GetCci Pods V2Pod Ephemeral Container Liveness Probe> - The liveness probe configuration. The probe structure is documented below.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Ports
List<Get
Cci Pods V2Pod Ephemeral Container Port> - The list of ports exposed by the container. The ports structure is documented below.
- Readiness
Probes List<GetCci Pods V2Pod Ephemeral Container Readiness Probe> - The readiness probe configuration. The probe structure is documented below.
- Resources
List<Get
Cci Pods V2Pod Ephemeral Container Resource> - The compute resource requirements of the container. The resources structure is documented below.
- Security
Contexts List<GetCci Pods V2Pod Ephemeral Container Security Context> - The security context of the container. The container_security_context structure is documented below.
- Startup
Probes List<GetCci Pods V2Pod Ephemeral Container Startup Probe> - The startup probe configuration. The probe structure is documented below.
- Stdin bool
- Whether the container should allocate a buffer for stdin.
- Stdin
Once bool - Whether the stdin channel is closed after the first attach disconnects.
- Target
Container stringName - The name of the target container for ephemeral containers.
- Termination
Message stringPath - The path at which the file for the container's termination message is written.
- Termination
Message stringPolicy - The policy for determining the container's termination message.
- Tty bool
- Whether the container should be allocated a TTY.
- Volume
Mounts List<GetCci Pods V2Pod Ephemeral Container Volume Mount> - The list of volume mounts within the container. The volume_mounts structure is documented below.
- Working
Dir string - The container's working directory.
- Args []string
- The arguments to the entrypoint.
- Commands []string
- The command line to execute inside the container.
- Env
Froms []GetCci Pods V2Pod Ephemeral Container Env From - The list of sources to populate environment variables from. The env_from structure is documented below.
- Envs
[]Get
Cci Pods V2Pod Ephemeral Container Env - The list of environment variables. The env structure is documented below.
- Image string
- The container image name.
- Lifecycles
[]Get
Cci Pods V2Pod Ephemeral Container Lifecycle - Actions that the management system should take in response to container lifecycle events. The lifecycle structure is documented below.
- Liveness
Probes []GetCci Pods V2Pod Ephemeral Container Liveness Probe - The liveness probe configuration. The probe structure is documented below.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Ports
[]Get
Cci Pods V2Pod Ephemeral Container Port - The list of ports exposed by the container. The ports structure is documented below.
- Readiness
Probes []GetCci Pods V2Pod Ephemeral Container Readiness Probe - The readiness probe configuration. The probe structure is documented below.
- Resources
[]Get
Cci Pods V2Pod Ephemeral Container Resource - The compute resource requirements of the container. The resources structure is documented below.
- Security
Contexts []GetCci Pods V2Pod Ephemeral Container Security Context - The security context of the container. The container_security_context structure is documented below.
- Startup
Probes []GetCci Pods V2Pod Ephemeral Container Startup Probe - The startup probe configuration. The probe structure is documented below.
- Stdin bool
- Whether the container should allocate a buffer for stdin.
- Stdin
Once bool - Whether the stdin channel is closed after the first attach disconnects.
- Target
Container stringName - The name of the target container for ephemeral containers.
- Termination
Message stringPath - The path at which the file for the container's termination message is written.
- Termination
Message stringPolicy - The policy for determining the container's termination message.
- Tty bool
- Whether the container should be allocated a TTY.
- Volume
Mounts []GetCci Pods V2Pod Ephemeral Container Volume Mount - The list of volume mounts within the container. The volume_mounts structure is documented below.
- Working
Dir string - The container's working directory.
- args List<String>
- The arguments to the entrypoint.
- commands List<String>
- The command line to execute inside the container.
- env
Froms List<GetCci Pods V2Pod Ephemeral Container Env From> - The list of sources to populate environment variables from. The env_from structure is documented below.
- envs
List<Get
Cci Pods V2Pod Ephemeral Container Env> - The list of environment variables. The env structure is documented below.
- image String
- The container image name.
- lifecycles
List<Get
Cci Pods V2Pod Ephemeral Container Lifecycle> - Actions that the management system should take in response to container lifecycle events. The lifecycle structure is documented below.
- liveness
Probes List<GetCci Pods V2Pod Ephemeral Container Liveness Probe> - The liveness probe configuration. The probe structure is documented below.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- ports
List<Get
Cci Pods V2Pod Ephemeral Container Port> - The list of ports exposed by the container. The ports structure is documented below.
- readiness
Probes List<GetCci Pods V2Pod Ephemeral Container Readiness Probe> - The readiness probe configuration. The probe structure is documented below.
- resources
List<Get
Cci Pods V2Pod Ephemeral Container Resource> - The compute resource requirements of the container. The resources structure is documented below.
- security
Contexts List<GetCci Pods V2Pod Ephemeral Container Security Context> - The security context of the container. The container_security_context structure is documented below.
- startup
Probes List<GetCci Pods V2Pod Ephemeral Container Startup Probe> - The startup probe configuration. The probe structure is documented below.
- stdin Boolean
- Whether the container should allocate a buffer for stdin.
- stdin
Once Boolean - Whether the stdin channel is closed after the first attach disconnects.
- target
Container StringName - The name of the target container for ephemeral containers.
- termination
Message StringPath - The path at which the file for the container's termination message is written.
- termination
Message StringPolicy - The policy for determining the container's termination message.
- tty Boolean
- Whether the container should be allocated a TTY.
- volume
Mounts List<GetCci Pods V2Pod Ephemeral Container Volume Mount> - The list of volume mounts within the container. The volume_mounts structure is documented below.
- working
Dir String - The container's working directory.
- args string[]
- The arguments to the entrypoint.
- commands string[]
- The command line to execute inside the container.
- env
Froms GetCci Pods V2Pod Ephemeral Container Env From[] - The list of sources to populate environment variables from. The env_from structure is documented below.
- envs
Get
Cci Pods V2Pod Ephemeral Container Env[] - The list of environment variables. The env structure is documented below.
- image string
- The container image name.
- lifecycles
Get
Cci Pods V2Pod Ephemeral Container Lifecycle[] - Actions that the management system should take in response to container lifecycle events. The lifecycle structure is documented below.
- liveness
Probes GetCci Pods V2Pod Ephemeral Container Liveness Probe[] - The liveness probe configuration. The probe structure is documented below.
- name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- ports
Get
Cci Pods V2Pod Ephemeral Container Port[] - The list of ports exposed by the container. The ports structure is documented below.
- readiness
Probes GetCci Pods V2Pod Ephemeral Container Readiness Probe[] - The readiness probe configuration. The probe structure is documented below.
- resources
Get
Cci Pods V2Pod Ephemeral Container Resource[] - The compute resource requirements of the container. The resources structure is documented below.
- security
Contexts GetCci Pods V2Pod Ephemeral Container Security Context[] - The security context of the container. The container_security_context structure is documented below.
- startup
Probes GetCci Pods V2Pod Ephemeral Container Startup Probe[] - The startup probe configuration. The probe structure is documented below.
- stdin boolean
- Whether the container should allocate a buffer for stdin.
- stdin
Once boolean - Whether the stdin channel is closed after the first attach disconnects.
- target
Container stringName - The name of the target container for ephemeral containers.
- termination
Message stringPath - The path at which the file for the container's termination message is written.
- termination
Message stringPolicy - The policy for determining the container's termination message.
- tty boolean
- Whether the container should be allocated a TTY.
- volume
Mounts GetCci Pods V2Pod Ephemeral Container Volume Mount[] - The list of volume mounts within the container. The volume_mounts structure is documented below.
- working
Dir string - The container's working directory.
- args Sequence[str]
- The arguments to the entrypoint.
- commands Sequence[str]
- The command line to execute inside the container.
- env_
froms Sequence[GetCci Pods V2Pod Ephemeral Container Env From] - The list of sources to populate environment variables from. The env_from structure is documented below.
- envs
Sequence[Get
Cci Pods V2Pod Ephemeral Container Env] - The list of environment variables. The env structure is documented below.
- image str
- The container image name.
- lifecycles
Sequence[Get
Cci Pods V2Pod Ephemeral Container Lifecycle] - Actions that the management system should take in response to container lifecycle events. The lifecycle structure is documented below.
- liveness_
probes Sequence[GetCci Pods V2Pod Ephemeral Container Liveness Probe] - The liveness probe configuration. The probe structure is documented below.
- name str
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- ports
Sequence[Get
Cci Pods V2Pod Ephemeral Container Port] - The list of ports exposed by the container. The ports structure is documented below.
- readiness_
probes Sequence[GetCci Pods V2Pod Ephemeral Container Readiness Probe] - The readiness probe configuration. The probe structure is documented below.
- resources
Sequence[Get
Cci Pods V2Pod Ephemeral Container Resource] - The compute resource requirements of the container. The resources structure is documented below.
- security_
contexts Sequence[GetCci Pods V2Pod Ephemeral Container Security Context] - The security context of the container. The container_security_context structure is documented below.
- startup_
probes Sequence[GetCci Pods V2Pod Ephemeral Container Startup Probe] - The startup probe configuration. The probe structure is documented below.
- stdin bool
- Whether the container should allocate a buffer for stdin.
- stdin_
once bool - Whether the stdin channel is closed after the first attach disconnects.
- target_
container_ strname - The name of the target container for ephemeral containers.
- termination_
message_ strpath - The path at which the file for the container's termination message is written.
- termination_
message_ strpolicy - The policy for determining the container's termination message.
- tty bool
- Whether the container should be allocated a TTY.
- volume_
mounts Sequence[GetCci Pods V2Pod Ephemeral Container Volume Mount] - The list of volume mounts within the container. The volume_mounts structure is documented below.
- working_
dir str - The container's working directory.
- args List<String>
- The arguments to the entrypoint.
- commands List<String>
- The command line to execute inside the container.
- env
Froms List<Property Map> - The list of sources to populate environment variables from. The env_from structure is documented below.
- envs List<Property Map>
- The list of environment variables. The env structure is documented below.
- image String
- The container image name.
- lifecycles List<Property Map>
- Actions that the management system should take in response to container lifecycle events. The lifecycle structure is documented below.
- liveness
Probes List<Property Map> - The liveness probe configuration. The probe structure is documented below.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- ports List<Property Map>
- The list of ports exposed by the container. The ports structure is documented below.
- readiness
Probes List<Property Map> - The readiness probe configuration. The probe structure is documented below.
- resources List<Property Map>
- The compute resource requirements of the container. The resources structure is documented below.
- security
Contexts List<Property Map> - The security context of the container. The container_security_context structure is documented below.
- startup
Probes List<Property Map> - The startup probe configuration. The probe structure is documented below.
- stdin Boolean
- Whether the container should allocate a buffer for stdin.
- stdin
Once Boolean - Whether the stdin channel is closed after the first attach disconnects.
- target
Container StringName - The name of the target container for ephemeral containers.
- termination
Message StringPath - The path at which the file for the container's termination message is written.
- termination
Message StringPolicy - The policy for determining the container's termination message.
- tty Boolean
- Whether the container should be allocated a TTY.
- volume
Mounts List<Property Map> - The list of volume mounts within the container. The volume_mounts structure is documented below.
- working
Dir String - The container's working directory.
GetCciPodsV2PodEphemeralContainerEnv
GetCciPodsV2PodEphemeralContainerEnvFrom
- Config
Map List<GetReves Cci Pods V2Pod Ephemeral Container Env From Config Map Ref> - A reference to a ConfigMap from which to load environment variables. The env_source structure is documented below.
- Prefix string
- The prefix prepended to each key.
- Secret
Reves List<GetCci Pods V2Pod Ephemeral Container Env From Secret Ref> - A reference to a Secret from which to load environment variables. The env_source structure is documented below.
- Config
Map []GetReves Cci Pods V2Pod Ephemeral Container Env From Config Map Ref - A reference to a ConfigMap from which to load environment variables. The env_source structure is documented below.
- Prefix string
- The prefix prepended to each key.
- Secret
Reves []GetCci Pods V2Pod Ephemeral Container Env From Secret Ref - A reference to a Secret from which to load environment variables. The env_source structure is documented below.
- config
Map List<GetReves Cci Pods V2Pod Ephemeral Container Env From Config Map Ref> - A reference to a ConfigMap from which to load environment variables. The env_source structure is documented below.
- prefix String
- The prefix prepended to each key.
- secret
Reves List<GetCci Pods V2Pod Ephemeral Container Env From Secret Ref> - A reference to a Secret from which to load environment variables. The env_source structure is documented below.
- config
Map GetReves Cci Pods V2Pod Ephemeral Container Env From Config Map Ref[] - A reference to a ConfigMap from which to load environment variables. The env_source structure is documented below.
- prefix string
- The prefix prepended to each key.
- secret
Reves GetCci Pods V2Pod Ephemeral Container Env From Secret Ref[] - A reference to a Secret from which to load environment variables. The env_source structure is documented below.
- config_
map_ Sequence[Getreves Cci Pods V2Pod Ephemeral Container Env From Config Map Ref] - A reference to a ConfigMap from which to load environment variables. The env_source structure is documented below.
- prefix str
- The prefix prepended to each key.
- secret_
reves Sequence[GetCci Pods V2Pod Ephemeral Container Env From Secret Ref] - A reference to a Secret from which to load environment variables. The env_source structure is documented below.
- config
Map List<Property Map>Reves - A reference to a ConfigMap from which to load environment variables. The env_source structure is documented below.
- prefix String
- The prefix prepended to each key.
- secret
Reves List<Property Map> - A reference to a Secret from which to load environment variables. The env_source structure is documented below.
GetCciPodsV2PodEphemeralContainerEnvFromConfigMapRef
GetCciPodsV2PodEphemeralContainerEnvFromSecretRef
GetCciPodsV2PodEphemeralContainerLifecycle
- Post
Starts List<GetCci Pods V2Pod Ephemeral Container Lifecycle Post Start> - The handler executed right after container is created. The lifecycle_handler structure is documented below.
- Pre
Stops List<GetCci Pods V2Pod Ephemeral Container Lifecycle Pre Stop> - The handler executed right before a container is terminated. The lifecycle_handler structure is documented below.
- Post
Starts []GetCci Pods V2Pod Ephemeral Container Lifecycle Post Start - The handler executed right after container is created. The lifecycle_handler structure is documented below.
- Pre
Stops []GetCci Pods V2Pod Ephemeral Container Lifecycle Pre Stop - The handler executed right before a container is terminated. The lifecycle_handler structure is documented below.
- post
Starts List<GetCci Pods V2Pod Ephemeral Container Lifecycle Post Start> - The handler executed right after container is created. The lifecycle_handler structure is documented below.
- pre
Stops List<GetCci Pods V2Pod Ephemeral Container Lifecycle Pre Stop> - The handler executed right before a container is terminated. The lifecycle_handler structure is documented below.
- post
Starts GetCci Pods V2Pod Ephemeral Container Lifecycle Post Start[] - The handler executed right after container is created. The lifecycle_handler structure is documented below.
- pre
Stops GetCci Pods V2Pod Ephemeral Container Lifecycle Pre Stop[] - The handler executed right before a container is terminated. The lifecycle_handler structure is documented below.
- post_
starts Sequence[GetCci Pods V2Pod Ephemeral Container Lifecycle Post Start] - The handler executed right after container is created. The lifecycle_handler structure is documented below.
- pre_
stops Sequence[GetCci Pods V2Pod Ephemeral Container Lifecycle Pre Stop] - The handler executed right before a container is terminated. The lifecycle_handler structure is documented below.
- post
Starts List<Property Map> - The handler executed right after container is created. The lifecycle_handler structure is documented below.
- pre
Stops List<Property Map> - The handler executed right before a container is terminated. The lifecycle_handler structure is documented below.
GetCciPodsV2PodEphemeralContainerLifecyclePostStart
- Execs
List<Get
Cci Pods V2Pod Ephemeral Container Lifecycle Post Start Exec> - The exec action to perform. The exec structure is documented below.
- Http
Gets List<GetCci Pods V2Pod Ephemeral Container Lifecycle Post Start Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- Execs
[]Get
Cci Pods V2Pod Ephemeral Container Lifecycle Post Start Exec - The exec action to perform. The exec structure is documented below.
- Http
Gets []GetCci Pods V2Pod Ephemeral Container Lifecycle Post Start Http Get - The HTTP GET action to perform. The http_get structure is documented below.
- execs
List<Get
Cci Pods V2Pod Ephemeral Container Lifecycle Post Start Exec> - The exec action to perform. The exec structure is documented below.
- http
Gets List<GetCci Pods V2Pod Ephemeral Container Lifecycle Post Start Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- execs
Get
Cci Pods V2Pod Ephemeral Container Lifecycle Post Start Exec[] - The exec action to perform. The exec structure is documented below.
- http
Gets GetCci Pods V2Pod Ephemeral Container Lifecycle Post Start Http Get[] - The HTTP GET action to perform. The http_get structure is documented below.
- execs
Sequence[Get
Cci Pods V2Pod Ephemeral Container Lifecycle Post Start Exec] - The exec action to perform. The exec structure is documented below.
- http_
gets Sequence[GetCci Pods V2Pod Ephemeral Container Lifecycle Post Start Http Get] - The HTTP GET action to perform. The http_get structure is documented below.
- execs List<Property Map>
- The exec action to perform. The exec structure is documented below.
- http
Gets List<Property Map> - The HTTP GET action to perform. The http_get structure is documented below.
GetCciPodsV2PodEphemeralContainerLifecyclePostStartExec
- Commands List<string>
- The command line to execute inside the container.
- Commands []string
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
- commands string[]
- The command line to execute inside the container.
- commands Sequence[str]
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
GetCciPodsV2PodEphemeralContainerLifecyclePostStartHttpGet
- Host string
- The host name to connect to.
- Http
Headers List<GetCci Pods V2Pod Ephemeral Container Lifecycle Post Start Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- Host string
- The host name to connect to.
- Http
Headers []GetCci Pods V2Pod Ephemeral Container Lifecycle Post Start Http Get Http Header - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<GetCci Pods V2Pod Ephemeral Container Lifecycle Post Start Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
- host string
- The host name to connect to.
- http
Headers GetCci Pods V2Pod Ephemeral Container Lifecycle Post Start Http Get Http Header[] - The list of custom HTTP headers. The http_headers structure is documented below.
- path string
- The relative path of the file to create.
- port string
- The port to access on the container.
- scheme string
- The scheme to use for connecting to the host.
- host str
- The host name to connect to.
- http_
headers Sequence[GetCci Pods V2Pod Ephemeral Container Lifecycle Post Start Http Get Http Header] - The list of custom HTTP headers. The http_headers structure is documented below.
- path str
- The relative path of the file to create.
- port str
- The port to access on the container.
- scheme str
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<Property Map> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
GetCciPodsV2PodEphemeralContainerLifecyclePostStartHttpGetHttpHeader
GetCciPodsV2PodEphemeralContainerLifecyclePreStop
- Execs
List<Get
Cci Pods V2Pod Ephemeral Container Lifecycle Pre Stop Exec> - The exec action to perform. The exec structure is documented below.
- Http
Gets List<GetCci Pods V2Pod Ephemeral Container Lifecycle Pre Stop Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- Execs
[]Get
Cci Pods V2Pod Ephemeral Container Lifecycle Pre Stop Exec - The exec action to perform. The exec structure is documented below.
- Http
Gets []GetCci Pods V2Pod Ephemeral Container Lifecycle Pre Stop Http Get - The HTTP GET action to perform. The http_get structure is documented below.
- execs
List<Get
Cci Pods V2Pod Ephemeral Container Lifecycle Pre Stop Exec> - The exec action to perform. The exec structure is documented below.
- http
Gets List<GetCci Pods V2Pod Ephemeral Container Lifecycle Pre Stop Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- execs
Get
Cci Pods V2Pod Ephemeral Container Lifecycle Pre Stop Exec[] - The exec action to perform. The exec structure is documented below.
- http
Gets GetCci Pods V2Pod Ephemeral Container Lifecycle Pre Stop Http Get[] - The HTTP GET action to perform. The http_get structure is documented below.
- execs
Sequence[Get
Cci Pods V2Pod Ephemeral Container Lifecycle Pre Stop Exec] - The exec action to perform. The exec structure is documented below.
- http_
gets Sequence[GetCci Pods V2Pod Ephemeral Container Lifecycle Pre Stop Http Get] - The HTTP GET action to perform. The http_get structure is documented below.
- execs List<Property Map>
- The exec action to perform. The exec structure is documented below.
- http
Gets List<Property Map> - The HTTP GET action to perform. The http_get structure is documented below.
GetCciPodsV2PodEphemeralContainerLifecyclePreStopExec
- Commands List<string>
- The command line to execute inside the container.
- Commands []string
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
- commands string[]
- The command line to execute inside the container.
- commands Sequence[str]
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
GetCciPodsV2PodEphemeralContainerLifecyclePreStopHttpGet
- Host string
- The host name to connect to.
- Http
Headers List<GetCci Pods V2Pod Ephemeral Container Lifecycle Pre Stop Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- Host string
- The host name to connect to.
- Http
Headers []GetCci Pods V2Pod Ephemeral Container Lifecycle Pre Stop Http Get Http Header - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<GetCci Pods V2Pod Ephemeral Container Lifecycle Pre Stop Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
- host string
- The host name to connect to.
- http
Headers GetCci Pods V2Pod Ephemeral Container Lifecycle Pre Stop Http Get Http Header[] - The list of custom HTTP headers. The http_headers structure is documented below.
- path string
- The relative path of the file to create.
- port string
- The port to access on the container.
- scheme string
- The scheme to use for connecting to the host.
- host str
- The host name to connect to.
- http_
headers Sequence[GetCci Pods V2Pod Ephemeral Container Lifecycle Pre Stop Http Get Http Header] - The list of custom HTTP headers. The http_headers structure is documented below.
- path str
- The relative path of the file to create.
- port str
- The port to access on the container.
- scheme str
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<Property Map> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
GetCciPodsV2PodEphemeralContainerLifecyclePreStopHttpGetHttpHeader
GetCciPodsV2PodEphemeralContainerLivenessProbe
- Execs
List<Get
Cci Pods V2Pod Ephemeral Container Liveness Probe Exec> - The exec action to perform. The exec structure is documented below.
- Failure
Threshold double - Minimum consecutive failures for the probe to be considered failed.
- Http
Gets List<GetCci Pods V2Pod Ephemeral Container Liveness Probe Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- Initial
Delay doubleSeconds - Number of seconds before the first probe is initiated.
- Period
Seconds double - How often to perform the probe, in seconds.
- Success
Threshold double - Minimum consecutive successes for the probe to be considered successful.
- Termination
Grace doublePeriod Seconds - The grace period in seconds when the probe fails.
- Execs
[]Get
Cci Pods V2Pod Ephemeral Container Liveness Probe Exec - The exec action to perform. The exec structure is documented below.
- Failure
Threshold float64 - Minimum consecutive failures for the probe to be considered failed.
- Http
Gets []GetCci Pods V2Pod Ephemeral Container Liveness Probe Http Get - The HTTP GET action to perform. The http_get structure is documented below.
- Initial
Delay float64Seconds - Number of seconds before the first probe is initiated.
- Period
Seconds float64 - How often to perform the probe, in seconds.
- Success
Threshold float64 - Minimum consecutive successes for the probe to be considered successful.
- Termination
Grace float64Period Seconds - The grace period in seconds when the probe fails.
- execs
List<Get
Cci Pods V2Pod Ephemeral Container Liveness Probe Exec> - The exec action to perform. The exec structure is documented below.
- failure
Threshold Double - Minimum consecutive failures for the probe to be considered failed.
- http
Gets List<GetCci Pods V2Pod Ephemeral Container Liveness Probe Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay DoubleSeconds - Number of seconds before the first probe is initiated.
- period
Seconds Double - How often to perform the probe, in seconds.
- success
Threshold Double - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace DoublePeriod Seconds - The grace period in seconds when the probe fails.
- execs
Get
Cci Pods V2Pod Ephemeral Container Liveness Probe Exec[] - The exec action to perform. The exec structure is documented below.
- failure
Threshold number - Minimum consecutive failures for the probe to be considered failed.
- http
Gets GetCci Pods V2Pod Ephemeral Container Liveness Probe Http Get[] - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay numberSeconds - Number of seconds before the first probe is initiated.
- period
Seconds number - How often to perform the probe, in seconds.
- success
Threshold number - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace numberPeriod Seconds - The grace period in seconds when the probe fails.
- execs
Sequence[Get
Cci Pods V2Pod Ephemeral Container Liveness Probe Exec] - The exec action to perform. The exec structure is documented below.
- failure_
threshold float - Minimum consecutive failures for the probe to be considered failed.
- http_
gets Sequence[GetCci Pods V2Pod Ephemeral Container Liveness Probe Http Get] - The HTTP GET action to perform. The http_get structure is documented below.
- initial_
delay_ floatseconds - Number of seconds before the first probe is initiated.
- period_
seconds float - How often to perform the probe, in seconds.
- success_
threshold float - Minimum consecutive successes for the probe to be considered successful.
- termination_
grace_ floatperiod_ seconds - The grace period in seconds when the probe fails.
- execs List<Property Map>
- The exec action to perform. The exec structure is documented below.
- failure
Threshold Number - Minimum consecutive failures for the probe to be considered failed.
- http
Gets List<Property Map> - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay NumberSeconds - Number of seconds before the first probe is initiated.
- period
Seconds Number - How often to perform the probe, in seconds.
- success
Threshold Number - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace NumberPeriod Seconds - The grace period in seconds when the probe fails.
GetCciPodsV2PodEphemeralContainerLivenessProbeExec
- Commands List<string>
- The command line to execute inside the container.
- Commands []string
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
- commands string[]
- The command line to execute inside the container.
- commands Sequence[str]
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
GetCciPodsV2PodEphemeralContainerLivenessProbeHttpGet
- Host string
- The host name to connect to.
- Http
Headers List<GetCci Pods V2Pod Ephemeral Container Liveness Probe Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- Host string
- The host name to connect to.
- Http
Headers []GetCci Pods V2Pod Ephemeral Container Liveness Probe Http Get Http Header - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<GetCci Pods V2Pod Ephemeral Container Liveness Probe Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
- host string
- The host name to connect to.
- http
Headers GetCci Pods V2Pod Ephemeral Container Liveness Probe Http Get Http Header[] - The list of custom HTTP headers. The http_headers structure is documented below.
- path string
- The relative path of the file to create.
- port string
- The port to access on the container.
- scheme string
- The scheme to use for connecting to the host.
- host str
- The host name to connect to.
- http_
headers Sequence[GetCci Pods V2Pod Ephemeral Container Liveness Probe Http Get Http Header] - The list of custom HTTP headers. The http_headers structure is documented below.
- path str
- The relative path of the file to create.
- port str
- The port to access on the container.
- scheme str
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<Property Map> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
GetCciPodsV2PodEphemeralContainerLivenessProbeHttpGetHttpHeader
GetCciPodsV2PodEphemeralContainerPort
- Container
Port double - The port number exposed by the container.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Protocol string
- The protocol of the port.
- Container
Port float64 - The port number exposed by the container.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Protocol string
- The protocol of the port.
- container
Port Double - The port number exposed by the container.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- protocol String
- The protocol of the port.
- container
Port number - The port number exposed by the container.
- name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- protocol string
- The protocol of the port.
- container_
port float - The port number exposed by the container.
- name str
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- protocol str
- The protocol of the port.
- container
Port Number - The port number exposed by the container.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- protocol String
- The protocol of the port.
GetCciPodsV2PodEphemeralContainerReadinessProbe
- Execs
List<Get
Cci Pods V2Pod Ephemeral Container Readiness Probe Exec> - The exec action to perform. The exec structure is documented below.
- Failure
Threshold double - Minimum consecutive failures for the probe to be considered failed.
- Http
Gets List<GetCci Pods V2Pod Ephemeral Container Readiness Probe Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- Initial
Delay doubleSeconds - Number of seconds before the first probe is initiated.
- Period
Seconds double - How often to perform the probe, in seconds.
- Success
Threshold double - Minimum consecutive successes for the probe to be considered successful.
- Termination
Grace doublePeriod Seconds - The grace period in seconds when the probe fails.
- Execs
[]Get
Cci Pods V2Pod Ephemeral Container Readiness Probe Exec - The exec action to perform. The exec structure is documented below.
- Failure
Threshold float64 - Minimum consecutive failures for the probe to be considered failed.
- Http
Gets []GetCci Pods V2Pod Ephemeral Container Readiness Probe Http Get - The HTTP GET action to perform. The http_get structure is documented below.
- Initial
Delay float64Seconds - Number of seconds before the first probe is initiated.
- Period
Seconds float64 - How often to perform the probe, in seconds.
- Success
Threshold float64 - Minimum consecutive successes for the probe to be considered successful.
- Termination
Grace float64Period Seconds - The grace period in seconds when the probe fails.
- execs
List<Get
Cci Pods V2Pod Ephemeral Container Readiness Probe Exec> - The exec action to perform. The exec structure is documented below.
- failure
Threshold Double - Minimum consecutive failures for the probe to be considered failed.
- http
Gets List<GetCci Pods V2Pod Ephemeral Container Readiness Probe Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay DoubleSeconds - Number of seconds before the first probe is initiated.
- period
Seconds Double - How often to perform the probe, in seconds.
- success
Threshold Double - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace DoublePeriod Seconds - The grace period in seconds when the probe fails.
- execs
Get
Cci Pods V2Pod Ephemeral Container Readiness Probe Exec[] - The exec action to perform. The exec structure is documented below.
- failure
Threshold number - Minimum consecutive failures for the probe to be considered failed.
- http
Gets GetCci Pods V2Pod Ephemeral Container Readiness Probe Http Get[] - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay numberSeconds - Number of seconds before the first probe is initiated.
- period
Seconds number - How often to perform the probe, in seconds.
- success
Threshold number - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace numberPeriod Seconds - The grace period in seconds when the probe fails.
- execs
Sequence[Get
Cci Pods V2Pod Ephemeral Container Readiness Probe Exec] - The exec action to perform. The exec structure is documented below.
- failure_
threshold float - Minimum consecutive failures for the probe to be considered failed.
- http_
gets Sequence[GetCci Pods V2Pod Ephemeral Container Readiness Probe Http Get] - The HTTP GET action to perform. The http_get structure is documented below.
- initial_
delay_ floatseconds - Number of seconds before the first probe is initiated.
- period_
seconds float - How often to perform the probe, in seconds.
- success_
threshold float - Minimum consecutive successes for the probe to be considered successful.
- termination_
grace_ floatperiod_ seconds - The grace period in seconds when the probe fails.
- execs List<Property Map>
- The exec action to perform. The exec structure is documented below.
- failure
Threshold Number - Minimum consecutive failures for the probe to be considered failed.
- http
Gets List<Property Map> - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay NumberSeconds - Number of seconds before the first probe is initiated.
- period
Seconds Number - How often to perform the probe, in seconds.
- success
Threshold Number - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace NumberPeriod Seconds - The grace period in seconds when the probe fails.
GetCciPodsV2PodEphemeralContainerReadinessProbeExec
- Commands List<string>
- The command line to execute inside the container.
- Commands []string
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
- commands string[]
- The command line to execute inside the container.
- commands Sequence[str]
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
GetCciPodsV2PodEphemeralContainerReadinessProbeHttpGet
- Host string
- The host name to connect to.
- Http
Headers List<GetCci Pods V2Pod Ephemeral Container Readiness Probe Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- Host string
- The host name to connect to.
- Http
Headers []GetCci Pods V2Pod Ephemeral Container Readiness Probe Http Get Http Header - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<GetCci Pods V2Pod Ephemeral Container Readiness Probe Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
- host string
- The host name to connect to.
- http
Headers GetCci Pods V2Pod Ephemeral Container Readiness Probe Http Get Http Header[] - The list of custom HTTP headers. The http_headers structure is documented below.
- path string
- The relative path of the file to create.
- port string
- The port to access on the container.
- scheme string
- The scheme to use for connecting to the host.
- host str
- The host name to connect to.
- http_
headers Sequence[GetCci Pods V2Pod Ephemeral Container Readiness Probe Http Get Http Header] - The list of custom HTTP headers. The http_headers structure is documented below.
- path str
- The relative path of the file to create.
- port str
- The port to access on the container.
- scheme str
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<Property Map> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
GetCciPodsV2PodEphemeralContainerReadinessProbeHttpGetHttpHeader
GetCciPodsV2PodEphemeralContainerResource
GetCciPodsV2PodEphemeralContainerSecurityContext
- Capabilities
List<Get
Cci Pods V2Pod Ephemeral Container Security Context Capability> - The list of capabilities to add or drop. The capabilities structure is documented below.
- Proc
Mount string - The type of proc mount to use for the container.
- Read
Only boolRoot File System - Whether the container has a read-only root filesystem.
- Run
As doubleGroup - The GID to run the entrypoint of the container process.
- Run
As boolNon Root - Whether containers must run as a non-root user.
- Run
As doubleUser - The UID to run the entrypoint of the container process.
- Capabilities
[]Get
Cci Pods V2Pod Ephemeral Container Security Context Capability - The list of capabilities to add or drop. The capabilities structure is documented below.
- Proc
Mount string - The type of proc mount to use for the container.
- Read
Only boolRoot File System - Whether the container has a read-only root filesystem.
- Run
As float64Group - The GID to run the entrypoint of the container process.
- Run
As boolNon Root - Whether containers must run as a non-root user.
- Run
As float64User - The UID to run the entrypoint of the container process.
- capabilities
List<Get
Cci Pods V2Pod Ephemeral Container Security Context Capability> - The list of capabilities to add or drop. The capabilities structure is documented below.
- proc
Mount String - The type of proc mount to use for the container.
- read
Only BooleanRoot File System - Whether the container has a read-only root filesystem.
- run
As DoubleGroup - The GID to run the entrypoint of the container process.
- run
As BooleanNon Root - Whether containers must run as a non-root user.
- run
As DoubleUser - The UID to run the entrypoint of the container process.
- capabilities
Get
Cci Pods V2Pod Ephemeral Container Security Context Capability[] - The list of capabilities to add or drop. The capabilities structure is documented below.
- proc
Mount string - The type of proc mount to use for the container.
- read
Only booleanRoot File System - Whether the container has a read-only root filesystem.
- run
As numberGroup - The GID to run the entrypoint of the container process.
- run
As booleanNon Root - Whether containers must run as a non-root user.
- run
As numberUser - The UID to run the entrypoint of the container process.
- capabilities
Sequence[Get
Cci Pods V2Pod Ephemeral Container Security Context Capability] - The list of capabilities to add or drop. The capabilities structure is documented below.
- proc_
mount str - The type of proc mount to use for the container.
- read_
only_ boolroot_ file_ system - Whether the container has a read-only root filesystem.
- run_
as_ floatgroup - The GID to run the entrypoint of the container process.
- run_
as_ boolnon_ root - Whether containers must run as a non-root user.
- run_
as_ floatuser - The UID to run the entrypoint of the container process.
- capabilities List<Property Map>
- The list of capabilities to add or drop. The capabilities structure is documented below.
- proc
Mount String - The type of proc mount to use for the container.
- read
Only BooleanRoot File System - Whether the container has a read-only root filesystem.
- run
As NumberGroup - The GID to run the entrypoint of the container process.
- run
As BooleanNon Root - Whether containers must run as a non-root user.
- run
As NumberUser - The UID to run the entrypoint of the container process.
GetCciPodsV2PodEphemeralContainerSecurityContextCapability
GetCciPodsV2PodEphemeralContainerStartupProbe
- Execs
List<Get
Cci Pods V2Pod Ephemeral Container Startup Probe Exec> - The exec action to perform. The exec structure is documented below.
- Failure
Threshold double - Minimum consecutive failures for the probe to be considered failed.
- Http
Gets List<GetCci Pods V2Pod Ephemeral Container Startup Probe Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- Initial
Delay doubleSeconds - Number of seconds before the first probe is initiated.
- Period
Seconds double - How often to perform the probe, in seconds.
- Success
Threshold double - Minimum consecutive successes for the probe to be considered successful.
- Termination
Grace doublePeriod Seconds - The grace period in seconds when the probe fails.
- Execs
[]Get
Cci Pods V2Pod Ephemeral Container Startup Probe Exec - The exec action to perform. The exec structure is documented below.
- Failure
Threshold float64 - Minimum consecutive failures for the probe to be considered failed.
- Http
Gets []GetCci Pods V2Pod Ephemeral Container Startup Probe Http Get - The HTTP GET action to perform. The http_get structure is documented below.
- Initial
Delay float64Seconds - Number of seconds before the first probe is initiated.
- Period
Seconds float64 - How often to perform the probe, in seconds.
- Success
Threshold float64 - Minimum consecutive successes for the probe to be considered successful.
- Termination
Grace float64Period Seconds - The grace period in seconds when the probe fails.
- execs
List<Get
Cci Pods V2Pod Ephemeral Container Startup Probe Exec> - The exec action to perform. The exec structure is documented below.
- failure
Threshold Double - Minimum consecutive failures for the probe to be considered failed.
- http
Gets List<GetCci Pods V2Pod Ephemeral Container Startup Probe Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay DoubleSeconds - Number of seconds before the first probe is initiated.
- period
Seconds Double - How often to perform the probe, in seconds.
- success
Threshold Double - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace DoublePeriod Seconds - The grace period in seconds when the probe fails.
- execs
Get
Cci Pods V2Pod Ephemeral Container Startup Probe Exec[] - The exec action to perform. The exec structure is documented below.
- failure
Threshold number - Minimum consecutive failures for the probe to be considered failed.
- http
Gets GetCci Pods V2Pod Ephemeral Container Startup Probe Http Get[] - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay numberSeconds - Number of seconds before the first probe is initiated.
- period
Seconds number - How often to perform the probe, in seconds.
- success
Threshold number - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace numberPeriod Seconds - The grace period in seconds when the probe fails.
- execs
Sequence[Get
Cci Pods V2Pod Ephemeral Container Startup Probe Exec] - The exec action to perform. The exec structure is documented below.
- failure_
threshold float - Minimum consecutive failures for the probe to be considered failed.
- http_
gets Sequence[GetCci Pods V2Pod Ephemeral Container Startup Probe Http Get] - The HTTP GET action to perform. The http_get structure is documented below.
- initial_
delay_ floatseconds - Number of seconds before the first probe is initiated.
- period_
seconds float - How often to perform the probe, in seconds.
- success_
threshold float - Minimum consecutive successes for the probe to be considered successful.
- termination_
grace_ floatperiod_ seconds - The grace period in seconds when the probe fails.
- execs List<Property Map>
- The exec action to perform. The exec structure is documented below.
- failure
Threshold Number - Minimum consecutive failures for the probe to be considered failed.
- http
Gets List<Property Map> - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay NumberSeconds - Number of seconds before the first probe is initiated.
- period
Seconds Number - How often to perform the probe, in seconds.
- success
Threshold Number - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace NumberPeriod Seconds - The grace period in seconds when the probe fails.
GetCciPodsV2PodEphemeralContainerStartupProbeExec
- Commands List<string>
- The command line to execute inside the container.
- Commands []string
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
- commands string[]
- The command line to execute inside the container.
- commands Sequence[str]
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
GetCciPodsV2PodEphemeralContainerStartupProbeHttpGet
- Host string
- The host name to connect to.
- Http
Headers List<GetCci Pods V2Pod Ephemeral Container Startup Probe Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- Host string
- The host name to connect to.
- Http
Headers []GetCci Pods V2Pod Ephemeral Container Startup Probe Http Get Http Header - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<GetCci Pods V2Pod Ephemeral Container Startup Probe Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
- host string
- The host name to connect to.
- http
Headers GetCci Pods V2Pod Ephemeral Container Startup Probe Http Get Http Header[] - The list of custom HTTP headers. The http_headers structure is documented below.
- path string
- The relative path of the file to create.
- port string
- The port to access on the container.
- scheme string
- The scheme to use for connecting to the host.
- host str
- The host name to connect to.
- http_
headers Sequence[GetCci Pods V2Pod Ephemeral Container Startup Probe Http Get Http Header] - The list of custom HTTP headers. The http_headers structure is documented below.
- path str
- The relative path of the file to create.
- port str
- The port to access on the container.
- scheme str
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<Property Map> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
GetCciPodsV2PodEphemeralContainerStartupProbeHttpGetHttpHeader
GetCciPodsV2PodEphemeralContainerVolumeMount
- Extend
Path stringMode - The extended path mode of the mount.
- Mount
Path string - The path within the container at which the volume is mounted.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Read
Only bool - Whether the volume is mounted read-only.
- Sub
Path string - A sub-path within the volume that should be mounted.
- Sub
Path stringExpr - An expanded sub-path within the volume.
- Extend
Path stringMode - The extended path mode of the mount.
- Mount
Path string - The path within the container at which the volume is mounted.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Read
Only bool - Whether the volume is mounted read-only.
- Sub
Path string - A sub-path within the volume that should be mounted.
- Sub
Path stringExpr - An expanded sub-path within the volume.
- extend
Path StringMode - The extended path mode of the mount.
- mount
Path String - The path within the container at which the volume is mounted.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- read
Only Boolean - Whether the volume is mounted read-only.
- sub
Path String - A sub-path within the volume that should be mounted.
- sub
Path StringExpr - An expanded sub-path within the volume.
- extend
Path stringMode - The extended path mode of the mount.
- mount
Path string - The path within the container at which the volume is mounted.
- name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- read
Only boolean - Whether the volume is mounted read-only.
- sub
Path string - A sub-path within the volume that should be mounted.
- sub
Path stringExpr - An expanded sub-path within the volume.
- extend_
path_ strmode - The extended path mode of the mount.
- mount_
path str - The path within the container at which the volume is mounted.
- name str
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- read_
only bool - Whether the volume is mounted read-only.
- sub_
path str - A sub-path within the volume that should be mounted.
- sub_
path_ strexpr - An expanded sub-path within the volume.
- extend
Path StringMode - The extended path mode of the mount.
- mount
Path String - The path within the container at which the volume is mounted.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- read
Only Boolean - Whether the volume is mounted read-only.
- sub
Path String - A sub-path within the volume that should be mounted.
- sub
Path StringExpr - An expanded sub-path within the volume.
GetCciPodsV2PodHostAlias
GetCciPodsV2PodImagePullSecret
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- name str
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
GetCciPodsV2PodInitContainer
- Args List<string>
- The arguments to the entrypoint.
- Commands List<string>
- The command line to execute inside the container.
- Env
Froms List<GetCci Pods V2Pod Init Container Env From> - The list of sources to populate environment variables from. The env_from structure is documented below.
- Envs
List<Get
Cci Pods V2Pod Init Container Env> - The list of environment variables. The env structure is documented below.
- Image string
- The container image name.
- Lifecycles
List<Get
Cci Pods V2Pod Init Container Lifecycle> - Actions that the management system should take in response to container lifecycle events. The lifecycle structure is documented below.
- Liveness
Probes List<GetCci Pods V2Pod Init Container Liveness Probe> - The liveness probe configuration. The probe structure is documented below.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Ports
List<Get
Cci Pods V2Pod Init Container Port> - The list of ports exposed by the container. The ports structure is documented below.
- Readiness
Probes List<GetCci Pods V2Pod Init Container Readiness Probe> - The readiness probe configuration. The probe structure is documented below.
- Resources
List<Get
Cci Pods V2Pod Init Container Resource> - The compute resource requirements of the container. The resources structure is documented below.
- Security
Contexts List<GetCci Pods V2Pod Init Container Security Context> - The security context of the container. The container_security_context structure is documented below.
- Startup
Probes List<GetCci Pods V2Pod Init Container Startup Probe> - The startup probe configuration. The probe structure is documented below.
- Stdin bool
- Whether the container should allocate a buffer for stdin.
- Stdin
Once bool - Whether the stdin channel is closed after the first attach disconnects.
- Target
Container stringName - The name of the target container for ephemeral containers.
- Termination
Message stringPath - The path at which the file for the container's termination message is written.
- Termination
Message stringPolicy - The policy for determining the container's termination message.
- Tty bool
- Whether the container should be allocated a TTY.
- Volume
Mounts List<GetCci Pods V2Pod Init Container Volume Mount> - The list of volume mounts within the container. The volume_mounts structure is documented below.
- Working
Dir string - The container's working directory.
- Args []string
- The arguments to the entrypoint.
- Commands []string
- The command line to execute inside the container.
- Env
Froms []GetCci Pods V2Pod Init Container Env From - The list of sources to populate environment variables from. The env_from structure is documented below.
- Envs
[]Get
Cci Pods V2Pod Init Container Env - The list of environment variables. The env structure is documented below.
- Image string
- The container image name.
- Lifecycles
[]Get
Cci Pods V2Pod Init Container Lifecycle - Actions that the management system should take in response to container lifecycle events. The lifecycle structure is documented below.
- Liveness
Probes []GetCci Pods V2Pod Init Container Liveness Probe - The liveness probe configuration. The probe structure is documented below.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Ports
[]Get
Cci Pods V2Pod Init Container Port - The list of ports exposed by the container. The ports structure is documented below.
- Readiness
Probes []GetCci Pods V2Pod Init Container Readiness Probe - The readiness probe configuration. The probe structure is documented below.
- Resources
[]Get
Cci Pods V2Pod Init Container Resource - The compute resource requirements of the container. The resources structure is documented below.
- Security
Contexts []GetCci Pods V2Pod Init Container Security Context - The security context of the container. The container_security_context structure is documented below.
- Startup
Probes []GetCci Pods V2Pod Init Container Startup Probe - The startup probe configuration. The probe structure is documented below.
- Stdin bool
- Whether the container should allocate a buffer for stdin.
- Stdin
Once bool - Whether the stdin channel is closed after the first attach disconnects.
- Target
Container stringName - The name of the target container for ephemeral containers.
- Termination
Message stringPath - The path at which the file for the container's termination message is written.
- Termination
Message stringPolicy - The policy for determining the container's termination message.
- Tty bool
- Whether the container should be allocated a TTY.
- Volume
Mounts []GetCci Pods V2Pod Init Container Volume Mount - The list of volume mounts within the container. The volume_mounts structure is documented below.
- Working
Dir string - The container's working directory.
- args List<String>
- The arguments to the entrypoint.
- commands List<String>
- The command line to execute inside the container.
- env
Froms List<GetCci Pods V2Pod Init Container Env From> - The list of sources to populate environment variables from. The env_from structure is documented below.
- envs
List<Get
Cci Pods V2Pod Init Container Env> - The list of environment variables. The env structure is documented below.
- image String
- The container image name.
- lifecycles
List<Get
Cci Pods V2Pod Init Container Lifecycle> - Actions that the management system should take in response to container lifecycle events. The lifecycle structure is documented below.
- liveness
Probes List<GetCci Pods V2Pod Init Container Liveness Probe> - The liveness probe configuration. The probe structure is documented below.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- ports
List<Get
Cci Pods V2Pod Init Container Port> - The list of ports exposed by the container. The ports structure is documented below.
- readiness
Probes List<GetCci Pods V2Pod Init Container Readiness Probe> - The readiness probe configuration. The probe structure is documented below.
- resources
List<Get
Cci Pods V2Pod Init Container Resource> - The compute resource requirements of the container. The resources structure is documented below.
- security
Contexts List<GetCci Pods V2Pod Init Container Security Context> - The security context of the container. The container_security_context structure is documented below.
- startup
Probes List<GetCci Pods V2Pod Init Container Startup Probe> - The startup probe configuration. The probe structure is documented below.
- stdin Boolean
- Whether the container should allocate a buffer for stdin.
- stdin
Once Boolean - Whether the stdin channel is closed after the first attach disconnects.
- target
Container StringName - The name of the target container for ephemeral containers.
- termination
Message StringPath - The path at which the file for the container's termination message is written.
- termination
Message StringPolicy - The policy for determining the container's termination message.
- tty Boolean
- Whether the container should be allocated a TTY.
- volume
Mounts List<GetCci Pods V2Pod Init Container Volume Mount> - The list of volume mounts within the container. The volume_mounts structure is documented below.
- working
Dir String - The container's working directory.
- args string[]
- The arguments to the entrypoint.
- commands string[]
- The command line to execute inside the container.
- env
Froms GetCci Pods V2Pod Init Container Env From[] - The list of sources to populate environment variables from. The env_from structure is documented below.
- envs
Get
Cci Pods V2Pod Init Container Env[] - The list of environment variables. The env structure is documented below.
- image string
- The container image name.
- lifecycles
Get
Cci Pods V2Pod Init Container Lifecycle[] - Actions that the management system should take in response to container lifecycle events. The lifecycle structure is documented below.
- liveness
Probes GetCci Pods V2Pod Init Container Liveness Probe[] - The liveness probe configuration. The probe structure is documented below.
- name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- ports
Get
Cci Pods V2Pod Init Container Port[] - The list of ports exposed by the container. The ports structure is documented below.
- readiness
Probes GetCci Pods V2Pod Init Container Readiness Probe[] - The readiness probe configuration. The probe structure is documented below.
- resources
Get
Cci Pods V2Pod Init Container Resource[] - The compute resource requirements of the container. The resources structure is documented below.
- security
Contexts GetCci Pods V2Pod Init Container Security Context[] - The security context of the container. The container_security_context structure is documented below.
- startup
Probes GetCci Pods V2Pod Init Container Startup Probe[] - The startup probe configuration. The probe structure is documented below.
- stdin boolean
- Whether the container should allocate a buffer for stdin.
- stdin
Once boolean - Whether the stdin channel is closed after the first attach disconnects.
- target
Container stringName - The name of the target container for ephemeral containers.
- termination
Message stringPath - The path at which the file for the container's termination message is written.
- termination
Message stringPolicy - The policy for determining the container's termination message.
- tty boolean
- Whether the container should be allocated a TTY.
- volume
Mounts GetCci Pods V2Pod Init Container Volume Mount[] - The list of volume mounts within the container. The volume_mounts structure is documented below.
- working
Dir string - The container's working directory.
- args Sequence[str]
- The arguments to the entrypoint.
- commands Sequence[str]
- The command line to execute inside the container.
- env_
froms Sequence[GetCci Pods V2Pod Init Container Env From] - The list of sources to populate environment variables from. The env_from structure is documented below.
- envs
Sequence[Get
Cci Pods V2Pod Init Container Env] - The list of environment variables. The env structure is documented below.
- image str
- The container image name.
- lifecycles
Sequence[Get
Cci Pods V2Pod Init Container Lifecycle] - Actions that the management system should take in response to container lifecycle events. The lifecycle structure is documented below.
- liveness_
probes Sequence[GetCci Pods V2Pod Init Container Liveness Probe] - The liveness probe configuration. The probe structure is documented below.
- name str
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- ports
Sequence[Get
Cci Pods V2Pod Init Container Port] - The list of ports exposed by the container. The ports structure is documented below.
- readiness_
probes Sequence[GetCci Pods V2Pod Init Container Readiness Probe] - The readiness probe configuration. The probe structure is documented below.
- resources
Sequence[Get
Cci Pods V2Pod Init Container Resource] - The compute resource requirements of the container. The resources structure is documented below.
- security_
contexts Sequence[GetCci Pods V2Pod Init Container Security Context] - The security context of the container. The container_security_context structure is documented below.
- startup_
probes Sequence[GetCci Pods V2Pod Init Container Startup Probe] - The startup probe configuration. The probe structure is documented below.
- stdin bool
- Whether the container should allocate a buffer for stdin.
- stdin_
once bool - Whether the stdin channel is closed after the first attach disconnects.
- target_
container_ strname - The name of the target container for ephemeral containers.
- termination_
message_ strpath - The path at which the file for the container's termination message is written.
- termination_
message_ strpolicy - The policy for determining the container's termination message.
- tty bool
- Whether the container should be allocated a TTY.
- volume_
mounts Sequence[GetCci Pods V2Pod Init Container Volume Mount] - The list of volume mounts within the container. The volume_mounts structure is documented below.
- working_
dir str - The container's working directory.
- args List<String>
- The arguments to the entrypoint.
- commands List<String>
- The command line to execute inside the container.
- env
Froms List<Property Map> - The list of sources to populate environment variables from. The env_from structure is documented below.
- envs List<Property Map>
- The list of environment variables. The env structure is documented below.
- image String
- The container image name.
- lifecycles List<Property Map>
- Actions that the management system should take in response to container lifecycle events. The lifecycle structure is documented below.
- liveness
Probes List<Property Map> - The liveness probe configuration. The probe structure is documented below.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- ports List<Property Map>
- The list of ports exposed by the container. The ports structure is documented below.
- readiness
Probes List<Property Map> - The readiness probe configuration. The probe structure is documented below.
- resources List<Property Map>
- The compute resource requirements of the container. The resources structure is documented below.
- security
Contexts List<Property Map> - The security context of the container. The container_security_context structure is documented below.
- startup
Probes List<Property Map> - The startup probe configuration. The probe structure is documented below.
- stdin Boolean
- Whether the container should allocate a buffer for stdin.
- stdin
Once Boolean - Whether the stdin channel is closed after the first attach disconnects.
- target
Container StringName - The name of the target container for ephemeral containers.
- termination
Message StringPath - The path at which the file for the container's termination message is written.
- termination
Message StringPolicy - The policy for determining the container's termination message.
- tty Boolean
- Whether the container should be allocated a TTY.
- volume
Mounts List<Property Map> - The list of volume mounts within the container. The volume_mounts structure is documented below.
- working
Dir String - The container's working directory.
GetCciPodsV2PodInitContainerEnv
GetCciPodsV2PodInitContainerEnvFrom
- Config
Map List<GetReves Cci Pods V2Pod Init Container Env From Config Map Ref> - A reference to a ConfigMap from which to load environment variables. The env_source structure is documented below.
- Prefix string
- The prefix prepended to each key.
- Secret
Reves List<GetCci Pods V2Pod Init Container Env From Secret Ref> - A reference to a Secret from which to load environment variables. The env_source structure is documented below.
- Config
Map []GetReves Cci Pods V2Pod Init Container Env From Config Map Ref - A reference to a ConfigMap from which to load environment variables. The env_source structure is documented below.
- Prefix string
- The prefix prepended to each key.
- Secret
Reves []GetCci Pods V2Pod Init Container Env From Secret Ref - A reference to a Secret from which to load environment variables. The env_source structure is documented below.
- config
Map List<GetReves Cci Pods V2Pod Init Container Env From Config Map Ref> - A reference to a ConfigMap from which to load environment variables. The env_source structure is documented below.
- prefix String
- The prefix prepended to each key.
- secret
Reves List<GetCci Pods V2Pod Init Container Env From Secret Ref> - A reference to a Secret from which to load environment variables. The env_source structure is documented below.
- config
Map GetReves Cci Pods V2Pod Init Container Env From Config Map Ref[] - A reference to a ConfigMap from which to load environment variables. The env_source structure is documented below.
- prefix string
- The prefix prepended to each key.
- secret
Reves GetCci Pods V2Pod Init Container Env From Secret Ref[] - A reference to a Secret from which to load environment variables. The env_source structure is documented below.
- config_
map_ Sequence[Getreves Cci Pods V2Pod Init Container Env From Config Map Ref] - A reference to a ConfigMap from which to load environment variables. The env_source structure is documented below.
- prefix str
- The prefix prepended to each key.
- secret_
reves Sequence[GetCci Pods V2Pod Init Container Env From Secret Ref] - A reference to a Secret from which to load environment variables. The env_source structure is documented below.
- config
Map List<Property Map>Reves - A reference to a ConfigMap from which to load environment variables. The env_source structure is documented below.
- prefix String
- The prefix prepended to each key.
- secret
Reves List<Property Map> - A reference to a Secret from which to load environment variables. The env_source structure is documented below.
GetCciPodsV2PodInitContainerEnvFromConfigMapRef
GetCciPodsV2PodInitContainerEnvFromSecretRef
GetCciPodsV2PodInitContainerLifecycle
- Post
Starts List<GetCci Pods V2Pod Init Container Lifecycle Post Start> - The handler executed right after container is created. The lifecycle_handler structure is documented below.
- Pre
Stops List<GetCci Pods V2Pod Init Container Lifecycle Pre Stop> - The handler executed right before a container is terminated. The lifecycle_handler structure is documented below.
- Post
Starts []GetCci Pods V2Pod Init Container Lifecycle Post Start - The handler executed right after container is created. The lifecycle_handler structure is documented below.
- Pre
Stops []GetCci Pods V2Pod Init Container Lifecycle Pre Stop - The handler executed right before a container is terminated. The lifecycle_handler structure is documented below.
- post
Starts List<GetCci Pods V2Pod Init Container Lifecycle Post Start> - The handler executed right after container is created. The lifecycle_handler structure is documented below.
- pre
Stops List<GetCci Pods V2Pod Init Container Lifecycle Pre Stop> - The handler executed right before a container is terminated. The lifecycle_handler structure is documented below.
- post
Starts GetCci Pods V2Pod Init Container Lifecycle Post Start[] - The handler executed right after container is created. The lifecycle_handler structure is documented below.
- pre
Stops GetCci Pods V2Pod Init Container Lifecycle Pre Stop[] - The handler executed right before a container is terminated. The lifecycle_handler structure is documented below.
- post_
starts Sequence[GetCci Pods V2Pod Init Container Lifecycle Post Start] - The handler executed right after container is created. The lifecycle_handler structure is documented below.
- pre_
stops Sequence[GetCci Pods V2Pod Init Container Lifecycle Pre Stop] - The handler executed right before a container is terminated. The lifecycle_handler structure is documented below.
- post
Starts List<Property Map> - The handler executed right after container is created. The lifecycle_handler structure is documented below.
- pre
Stops List<Property Map> - The handler executed right before a container is terminated. The lifecycle_handler structure is documented below.
GetCciPodsV2PodInitContainerLifecyclePostStart
- Execs
List<Get
Cci Pods V2Pod Init Container Lifecycle Post Start Exec> - The exec action to perform. The exec structure is documented below.
- Http
Gets List<GetCci Pods V2Pod Init Container Lifecycle Post Start Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- Execs
[]Get
Cci Pods V2Pod Init Container Lifecycle Post Start Exec - The exec action to perform. The exec structure is documented below.
- Http
Gets []GetCci Pods V2Pod Init Container Lifecycle Post Start Http Get - The HTTP GET action to perform. The http_get structure is documented below.
- execs
List<Get
Cci Pods V2Pod Init Container Lifecycle Post Start Exec> - The exec action to perform. The exec structure is documented below.
- http
Gets List<GetCci Pods V2Pod Init Container Lifecycle Post Start Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- execs
Get
Cci Pods V2Pod Init Container Lifecycle Post Start Exec[] - The exec action to perform. The exec structure is documented below.
- http
Gets GetCci Pods V2Pod Init Container Lifecycle Post Start Http Get[] - The HTTP GET action to perform. The http_get structure is documented below.
- execs
Sequence[Get
Cci Pods V2Pod Init Container Lifecycle Post Start Exec] - The exec action to perform. The exec structure is documented below.
- http_
gets Sequence[GetCci Pods V2Pod Init Container Lifecycle Post Start Http Get] - The HTTP GET action to perform. The http_get structure is documented below.
- execs List<Property Map>
- The exec action to perform. The exec structure is documented below.
- http
Gets List<Property Map> - The HTTP GET action to perform. The http_get structure is documented below.
GetCciPodsV2PodInitContainerLifecyclePostStartExec
- Commands List<string>
- The command line to execute inside the container.
- Commands []string
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
- commands string[]
- The command line to execute inside the container.
- commands Sequence[str]
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
GetCciPodsV2PodInitContainerLifecyclePostStartHttpGet
- Host string
- The host name to connect to.
- Http
Headers List<GetCci Pods V2Pod Init Container Lifecycle Post Start Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- Host string
- The host name to connect to.
- Http
Headers []GetCci Pods V2Pod Init Container Lifecycle Post Start Http Get Http Header - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<GetCci Pods V2Pod Init Container Lifecycle Post Start Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
- host string
- The host name to connect to.
- http
Headers GetCci Pods V2Pod Init Container Lifecycle Post Start Http Get Http Header[] - The list of custom HTTP headers. The http_headers structure is documented below.
- path string
- The relative path of the file to create.
- port string
- The port to access on the container.
- scheme string
- The scheme to use for connecting to the host.
- host str
- The host name to connect to.
- http_
headers Sequence[GetCci Pods V2Pod Init Container Lifecycle Post Start Http Get Http Header] - The list of custom HTTP headers. The http_headers structure is documented below.
- path str
- The relative path of the file to create.
- port str
- The port to access on the container.
- scheme str
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<Property Map> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
GetCciPodsV2PodInitContainerLifecyclePostStartHttpGetHttpHeader
GetCciPodsV2PodInitContainerLifecyclePreStop
- Execs
List<Get
Cci Pods V2Pod Init Container Lifecycle Pre Stop Exec> - The exec action to perform. The exec structure is documented below.
- Http
Gets List<GetCci Pods V2Pod Init Container Lifecycle Pre Stop Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- Execs
[]Get
Cci Pods V2Pod Init Container Lifecycle Pre Stop Exec - The exec action to perform. The exec structure is documented below.
- Http
Gets []GetCci Pods V2Pod Init Container Lifecycle Pre Stop Http Get - The HTTP GET action to perform. The http_get structure is documented below.
- execs
List<Get
Cci Pods V2Pod Init Container Lifecycle Pre Stop Exec> - The exec action to perform. The exec structure is documented below.
- http
Gets List<GetCci Pods V2Pod Init Container Lifecycle Pre Stop Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- execs
Get
Cci Pods V2Pod Init Container Lifecycle Pre Stop Exec[] - The exec action to perform. The exec structure is documented below.
- http
Gets GetCci Pods V2Pod Init Container Lifecycle Pre Stop Http Get[] - The HTTP GET action to perform. The http_get structure is documented below.
- execs
Sequence[Get
Cci Pods V2Pod Init Container Lifecycle Pre Stop Exec] - The exec action to perform. The exec structure is documented below.
- http_
gets Sequence[GetCci Pods V2Pod Init Container Lifecycle Pre Stop Http Get] - The HTTP GET action to perform. The http_get structure is documented below.
- execs List<Property Map>
- The exec action to perform. The exec structure is documented below.
- http
Gets List<Property Map> - The HTTP GET action to perform. The http_get structure is documented below.
GetCciPodsV2PodInitContainerLifecyclePreStopExec
- Commands List<string>
- The command line to execute inside the container.
- Commands []string
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
- commands string[]
- The command line to execute inside the container.
- commands Sequence[str]
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
GetCciPodsV2PodInitContainerLifecyclePreStopHttpGet
- Host string
- The host name to connect to.
- Http
Headers List<GetCci Pods V2Pod Init Container Lifecycle Pre Stop Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- Host string
- The host name to connect to.
- Http
Headers []GetCci Pods V2Pod Init Container Lifecycle Pre Stop Http Get Http Header - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<GetCci Pods V2Pod Init Container Lifecycle Pre Stop Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
- host string
- The host name to connect to.
- http
Headers GetCci Pods V2Pod Init Container Lifecycle Pre Stop Http Get Http Header[] - The list of custom HTTP headers. The http_headers structure is documented below.
- path string
- The relative path of the file to create.
- port string
- The port to access on the container.
- scheme string
- The scheme to use for connecting to the host.
- host str
- The host name to connect to.
- http_
headers Sequence[GetCci Pods V2Pod Init Container Lifecycle Pre Stop Http Get Http Header] - The list of custom HTTP headers. The http_headers structure is documented below.
- path str
- The relative path of the file to create.
- port str
- The port to access on the container.
- scheme str
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<Property Map> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
GetCciPodsV2PodInitContainerLifecyclePreStopHttpGetHttpHeader
GetCciPodsV2PodInitContainerLivenessProbe
- Execs
List<Get
Cci Pods V2Pod Init Container Liveness Probe Exec> - The exec action to perform. The exec structure is documented below.
- Failure
Threshold double - Minimum consecutive failures for the probe to be considered failed.
- Http
Gets List<GetCci Pods V2Pod Init Container Liveness Probe Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- Initial
Delay doubleSeconds - Number of seconds before the first probe is initiated.
- Period
Seconds double - How often to perform the probe, in seconds.
- Success
Threshold double - Minimum consecutive successes for the probe to be considered successful.
- Termination
Grace doublePeriod Seconds - The grace period in seconds when the probe fails.
- Execs
[]Get
Cci Pods V2Pod Init Container Liveness Probe Exec - The exec action to perform. The exec structure is documented below.
- Failure
Threshold float64 - Minimum consecutive failures for the probe to be considered failed.
- Http
Gets []GetCci Pods V2Pod Init Container Liveness Probe Http Get - The HTTP GET action to perform. The http_get structure is documented below.
- Initial
Delay float64Seconds - Number of seconds before the first probe is initiated.
- Period
Seconds float64 - How often to perform the probe, in seconds.
- Success
Threshold float64 - Minimum consecutive successes for the probe to be considered successful.
- Termination
Grace float64Period Seconds - The grace period in seconds when the probe fails.
- execs
List<Get
Cci Pods V2Pod Init Container Liveness Probe Exec> - The exec action to perform. The exec structure is documented below.
- failure
Threshold Double - Minimum consecutive failures for the probe to be considered failed.
- http
Gets List<GetCci Pods V2Pod Init Container Liveness Probe Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay DoubleSeconds - Number of seconds before the first probe is initiated.
- period
Seconds Double - How often to perform the probe, in seconds.
- success
Threshold Double - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace DoublePeriod Seconds - The grace period in seconds when the probe fails.
- execs
Get
Cci Pods V2Pod Init Container Liveness Probe Exec[] - The exec action to perform. The exec structure is documented below.
- failure
Threshold number - Minimum consecutive failures for the probe to be considered failed.
- http
Gets GetCci Pods V2Pod Init Container Liveness Probe Http Get[] - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay numberSeconds - Number of seconds before the first probe is initiated.
- period
Seconds number - How often to perform the probe, in seconds.
- success
Threshold number - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace numberPeriod Seconds - The grace period in seconds when the probe fails.
- execs
Sequence[Get
Cci Pods V2Pod Init Container Liveness Probe Exec] - The exec action to perform. The exec structure is documented below.
- failure_
threshold float - Minimum consecutive failures for the probe to be considered failed.
- http_
gets Sequence[GetCci Pods V2Pod Init Container Liveness Probe Http Get] - The HTTP GET action to perform. The http_get structure is documented below.
- initial_
delay_ floatseconds - Number of seconds before the first probe is initiated.
- period_
seconds float - How often to perform the probe, in seconds.
- success_
threshold float - Minimum consecutive successes for the probe to be considered successful.
- termination_
grace_ floatperiod_ seconds - The grace period in seconds when the probe fails.
- execs List<Property Map>
- The exec action to perform. The exec structure is documented below.
- failure
Threshold Number - Minimum consecutive failures for the probe to be considered failed.
- http
Gets List<Property Map> - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay NumberSeconds - Number of seconds before the first probe is initiated.
- period
Seconds Number - How often to perform the probe, in seconds.
- success
Threshold Number - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace NumberPeriod Seconds - The grace period in seconds when the probe fails.
GetCciPodsV2PodInitContainerLivenessProbeExec
- Commands List<string>
- The command line to execute inside the container.
- Commands []string
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
- commands string[]
- The command line to execute inside the container.
- commands Sequence[str]
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
GetCciPodsV2PodInitContainerLivenessProbeHttpGet
- Host string
- The host name to connect to.
- Http
Headers List<GetCci Pods V2Pod Init Container Liveness Probe Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- Host string
- The host name to connect to.
- Http
Headers []GetCci Pods V2Pod Init Container Liveness Probe Http Get Http Header - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<GetCci Pods V2Pod Init Container Liveness Probe Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
- host string
- The host name to connect to.
- http
Headers GetCci Pods V2Pod Init Container Liveness Probe Http Get Http Header[] - The list of custom HTTP headers. The http_headers structure is documented below.
- path string
- The relative path of the file to create.
- port string
- The port to access on the container.
- scheme string
- The scheme to use for connecting to the host.
- host str
- The host name to connect to.
- http_
headers Sequence[GetCci Pods V2Pod Init Container Liveness Probe Http Get Http Header] - The list of custom HTTP headers. The http_headers structure is documented below.
- path str
- The relative path of the file to create.
- port str
- The port to access on the container.
- scheme str
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<Property Map> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
GetCciPodsV2PodInitContainerLivenessProbeHttpGetHttpHeader
GetCciPodsV2PodInitContainerPort
- Container
Port double - The port number exposed by the container.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Protocol string
- The protocol of the port.
- Container
Port float64 - The port number exposed by the container.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Protocol string
- The protocol of the port.
- container
Port Double - The port number exposed by the container.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- protocol String
- The protocol of the port.
- container
Port number - The port number exposed by the container.
- name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- protocol string
- The protocol of the port.
- container_
port float - The port number exposed by the container.
- name str
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- protocol str
- The protocol of the port.
- container
Port Number - The port number exposed by the container.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- protocol String
- The protocol of the port.
GetCciPodsV2PodInitContainerReadinessProbe
- Execs
List<Get
Cci Pods V2Pod Init Container Readiness Probe Exec> - The exec action to perform. The exec structure is documented below.
- Failure
Threshold double - Minimum consecutive failures for the probe to be considered failed.
- Http
Gets List<GetCci Pods V2Pod Init Container Readiness Probe Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- Initial
Delay doubleSeconds - Number of seconds before the first probe is initiated.
- Period
Seconds double - How often to perform the probe, in seconds.
- Success
Threshold double - Minimum consecutive successes for the probe to be considered successful.
- Termination
Grace doublePeriod Seconds - The grace period in seconds when the probe fails.
- Execs
[]Get
Cci Pods V2Pod Init Container Readiness Probe Exec - The exec action to perform. The exec structure is documented below.
- Failure
Threshold float64 - Minimum consecutive failures for the probe to be considered failed.
- Http
Gets []GetCci Pods V2Pod Init Container Readiness Probe Http Get - The HTTP GET action to perform. The http_get structure is documented below.
- Initial
Delay float64Seconds - Number of seconds before the first probe is initiated.
- Period
Seconds float64 - How often to perform the probe, in seconds.
- Success
Threshold float64 - Minimum consecutive successes for the probe to be considered successful.
- Termination
Grace float64Period Seconds - The grace period in seconds when the probe fails.
- execs
List<Get
Cci Pods V2Pod Init Container Readiness Probe Exec> - The exec action to perform. The exec structure is documented below.
- failure
Threshold Double - Minimum consecutive failures for the probe to be considered failed.
- http
Gets List<GetCci Pods V2Pod Init Container Readiness Probe Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay DoubleSeconds - Number of seconds before the first probe is initiated.
- period
Seconds Double - How often to perform the probe, in seconds.
- success
Threshold Double - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace DoublePeriod Seconds - The grace period in seconds when the probe fails.
- execs
Get
Cci Pods V2Pod Init Container Readiness Probe Exec[] - The exec action to perform. The exec structure is documented below.
- failure
Threshold number - Minimum consecutive failures for the probe to be considered failed.
- http
Gets GetCci Pods V2Pod Init Container Readiness Probe Http Get[] - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay numberSeconds - Number of seconds before the first probe is initiated.
- period
Seconds number - How often to perform the probe, in seconds.
- success
Threshold number - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace numberPeriod Seconds - The grace period in seconds when the probe fails.
- execs
Sequence[Get
Cci Pods V2Pod Init Container Readiness Probe Exec] - The exec action to perform. The exec structure is documented below.
- failure_
threshold float - Minimum consecutive failures for the probe to be considered failed.
- http_
gets Sequence[GetCci Pods V2Pod Init Container Readiness Probe Http Get] - The HTTP GET action to perform. The http_get structure is documented below.
- initial_
delay_ floatseconds - Number of seconds before the first probe is initiated.
- period_
seconds float - How often to perform the probe, in seconds.
- success_
threshold float - Minimum consecutive successes for the probe to be considered successful.
- termination_
grace_ floatperiod_ seconds - The grace period in seconds when the probe fails.
- execs List<Property Map>
- The exec action to perform. The exec structure is documented below.
- failure
Threshold Number - Minimum consecutive failures for the probe to be considered failed.
- http
Gets List<Property Map> - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay NumberSeconds - Number of seconds before the first probe is initiated.
- period
Seconds Number - How often to perform the probe, in seconds.
- success
Threshold Number - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace NumberPeriod Seconds - The grace period in seconds when the probe fails.
GetCciPodsV2PodInitContainerReadinessProbeExec
- Commands List<string>
- The command line to execute inside the container.
- Commands []string
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
- commands string[]
- The command line to execute inside the container.
- commands Sequence[str]
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
GetCciPodsV2PodInitContainerReadinessProbeHttpGet
- Host string
- The host name to connect to.
- Http
Headers List<GetCci Pods V2Pod Init Container Readiness Probe Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- Host string
- The host name to connect to.
- Http
Headers []GetCci Pods V2Pod Init Container Readiness Probe Http Get Http Header - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<GetCci Pods V2Pod Init Container Readiness Probe Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
- host string
- The host name to connect to.
- http
Headers GetCci Pods V2Pod Init Container Readiness Probe Http Get Http Header[] - The list of custom HTTP headers. The http_headers structure is documented below.
- path string
- The relative path of the file to create.
- port string
- The port to access on the container.
- scheme string
- The scheme to use for connecting to the host.
- host str
- The host name to connect to.
- http_
headers Sequence[GetCci Pods V2Pod Init Container Readiness Probe Http Get Http Header] - The list of custom HTTP headers. The http_headers structure is documented below.
- path str
- The relative path of the file to create.
- port str
- The port to access on the container.
- scheme str
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<Property Map> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
GetCciPodsV2PodInitContainerReadinessProbeHttpGetHttpHeader
GetCciPodsV2PodInitContainerResource
GetCciPodsV2PodInitContainerSecurityContext
- Capabilities
List<Get
Cci Pods V2Pod Init Container Security Context Capability> - The list of capabilities to add or drop. The capabilities structure is documented below.
- Proc
Mount string - The type of proc mount to use for the container.
- Read
Only boolRoot File System - Whether the container has a read-only root filesystem.
- Run
As doubleGroup - The GID to run the entrypoint of the container process.
- Run
As boolNon Root - Whether containers must run as a non-root user.
- Run
As doubleUser - The UID to run the entrypoint of the container process.
- Capabilities
[]Get
Cci Pods V2Pod Init Container Security Context Capability - The list of capabilities to add or drop. The capabilities structure is documented below.
- Proc
Mount string - The type of proc mount to use for the container.
- Read
Only boolRoot File System - Whether the container has a read-only root filesystem.
- Run
As float64Group - The GID to run the entrypoint of the container process.
- Run
As boolNon Root - Whether containers must run as a non-root user.
- Run
As float64User - The UID to run the entrypoint of the container process.
- capabilities
List<Get
Cci Pods V2Pod Init Container Security Context Capability> - The list of capabilities to add or drop. The capabilities structure is documented below.
- proc
Mount String - The type of proc mount to use for the container.
- read
Only BooleanRoot File System - Whether the container has a read-only root filesystem.
- run
As DoubleGroup - The GID to run the entrypoint of the container process.
- run
As BooleanNon Root - Whether containers must run as a non-root user.
- run
As DoubleUser - The UID to run the entrypoint of the container process.
- capabilities
Get
Cci Pods V2Pod Init Container Security Context Capability[] - The list of capabilities to add or drop. The capabilities structure is documented below.
- proc
Mount string - The type of proc mount to use for the container.
- read
Only booleanRoot File System - Whether the container has a read-only root filesystem.
- run
As numberGroup - The GID to run the entrypoint of the container process.
- run
As booleanNon Root - Whether containers must run as a non-root user.
- run
As numberUser - The UID to run the entrypoint of the container process.
- capabilities
Sequence[Get
Cci Pods V2Pod Init Container Security Context Capability] - The list of capabilities to add or drop. The capabilities structure is documented below.
- proc_
mount str - The type of proc mount to use for the container.
- read_
only_ boolroot_ file_ system - Whether the container has a read-only root filesystem.
- run_
as_ floatgroup - The GID to run the entrypoint of the container process.
- run_
as_ boolnon_ root - Whether containers must run as a non-root user.
- run_
as_ floatuser - The UID to run the entrypoint of the container process.
- capabilities List<Property Map>
- The list of capabilities to add or drop. The capabilities structure is documented below.
- proc
Mount String - The type of proc mount to use for the container.
- read
Only BooleanRoot File System - Whether the container has a read-only root filesystem.
- run
As NumberGroup - The GID to run the entrypoint of the container process.
- run
As BooleanNon Root - Whether containers must run as a non-root user.
- run
As NumberUser - The UID to run the entrypoint of the container process.
GetCciPodsV2PodInitContainerSecurityContextCapability
GetCciPodsV2PodInitContainerStartupProbe
- Execs
List<Get
Cci Pods V2Pod Init Container Startup Probe Exec> - The exec action to perform. The exec structure is documented below.
- Failure
Threshold double - Minimum consecutive failures for the probe to be considered failed.
- Http
Gets List<GetCci Pods V2Pod Init Container Startup Probe Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- Initial
Delay doubleSeconds - Number of seconds before the first probe is initiated.
- Period
Seconds double - How often to perform the probe, in seconds.
- Success
Threshold double - Minimum consecutive successes for the probe to be considered successful.
- Termination
Grace doublePeriod Seconds - The grace period in seconds when the probe fails.
- Execs
[]Get
Cci Pods V2Pod Init Container Startup Probe Exec - The exec action to perform. The exec structure is documented below.
- Failure
Threshold float64 - Minimum consecutive failures for the probe to be considered failed.
- Http
Gets []GetCci Pods V2Pod Init Container Startup Probe Http Get - The HTTP GET action to perform. The http_get structure is documented below.
- Initial
Delay float64Seconds - Number of seconds before the first probe is initiated.
- Period
Seconds float64 - How often to perform the probe, in seconds.
- Success
Threshold float64 - Minimum consecutive successes for the probe to be considered successful.
- Termination
Grace float64Period Seconds - The grace period in seconds when the probe fails.
- execs
List<Get
Cci Pods V2Pod Init Container Startup Probe Exec> - The exec action to perform. The exec structure is documented below.
- failure
Threshold Double - Minimum consecutive failures for the probe to be considered failed.
- http
Gets List<GetCci Pods V2Pod Init Container Startup Probe Http Get> - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay DoubleSeconds - Number of seconds before the first probe is initiated.
- period
Seconds Double - How often to perform the probe, in seconds.
- success
Threshold Double - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace DoublePeriod Seconds - The grace period in seconds when the probe fails.
- execs
Get
Cci Pods V2Pod Init Container Startup Probe Exec[] - The exec action to perform. The exec structure is documented below.
- failure
Threshold number - Minimum consecutive failures for the probe to be considered failed.
- http
Gets GetCci Pods V2Pod Init Container Startup Probe Http Get[] - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay numberSeconds - Number of seconds before the first probe is initiated.
- period
Seconds number - How often to perform the probe, in seconds.
- success
Threshold number - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace numberPeriod Seconds - The grace period in seconds when the probe fails.
- execs
Sequence[Get
Cci Pods V2Pod Init Container Startup Probe Exec] - The exec action to perform. The exec structure is documented below.
- failure_
threshold float - Minimum consecutive failures for the probe to be considered failed.
- http_
gets Sequence[GetCci Pods V2Pod Init Container Startup Probe Http Get] - The HTTP GET action to perform. The http_get structure is documented below.
- initial_
delay_ floatseconds - Number of seconds before the first probe is initiated.
- period_
seconds float - How often to perform the probe, in seconds.
- success_
threshold float - Minimum consecutive successes for the probe to be considered successful.
- termination_
grace_ floatperiod_ seconds - The grace period in seconds when the probe fails.
- execs List<Property Map>
- The exec action to perform. The exec structure is documented below.
- failure
Threshold Number - Minimum consecutive failures for the probe to be considered failed.
- http
Gets List<Property Map> - The HTTP GET action to perform. The http_get structure is documented below.
- initial
Delay NumberSeconds - Number of seconds before the first probe is initiated.
- period
Seconds Number - How often to perform the probe, in seconds.
- success
Threshold Number - Minimum consecutive successes for the probe to be considered successful.
- termination
Grace NumberPeriod Seconds - The grace period in seconds when the probe fails.
GetCciPodsV2PodInitContainerStartupProbeExec
- Commands List<string>
- The command line to execute inside the container.
- Commands []string
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
- commands string[]
- The command line to execute inside the container.
- commands Sequence[str]
- The command line to execute inside the container.
- commands List<String>
- The command line to execute inside the container.
GetCciPodsV2PodInitContainerStartupProbeHttpGet
- Host string
- The host name to connect to.
- Http
Headers List<GetCci Pods V2Pod Init Container Startup Probe Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- Host string
- The host name to connect to.
- Http
Headers []GetCci Pods V2Pod Init Container Startup Probe Http Get Http Header - The list of custom HTTP headers. The http_headers structure is documented below.
- Path string
- The relative path of the file to create.
- Port string
- The port to access on the container.
- Scheme string
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<GetCci Pods V2Pod Init Container Startup Probe Http Get Http Header> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
- host string
- The host name to connect to.
- http
Headers GetCci Pods V2Pod Init Container Startup Probe Http Get Http Header[] - The list of custom HTTP headers. The http_headers structure is documented below.
- path string
- The relative path of the file to create.
- port string
- The port to access on the container.
- scheme string
- The scheme to use for connecting to the host.
- host str
- The host name to connect to.
- http_
headers Sequence[GetCci Pods V2Pod Init Container Startup Probe Http Get Http Header] - The list of custom HTTP headers. The http_headers structure is documented below.
- path str
- The relative path of the file to create.
- port str
- The port to access on the container.
- scheme str
- The scheme to use for connecting to the host.
- host String
- The host name to connect to.
- http
Headers List<Property Map> - The list of custom HTTP headers. The http_headers structure is documented below.
- path String
- The relative path of the file to create.
- port String
- The port to access on the container.
- scheme String
- The scheme to use for connecting to the host.
GetCciPodsV2PodInitContainerStartupProbeHttpGetHttpHeader
GetCciPodsV2PodInitContainerVolumeMount
- Extend
Path stringMode - The extended path mode of the mount.
- Mount
Path string - The path within the container at which the volume is mounted.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Read
Only bool - Whether the volume is mounted read-only.
- Sub
Path string - A sub-path within the volume that should be mounted.
- Sub
Path stringExpr - An expanded sub-path within the volume.
- Extend
Path stringMode - The extended path mode of the mount.
- Mount
Path string - The path within the container at which the volume is mounted.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Read
Only bool - Whether the volume is mounted read-only.
- Sub
Path string - A sub-path within the volume that should be mounted.
- Sub
Path stringExpr - An expanded sub-path within the volume.
- extend
Path StringMode - The extended path mode of the mount.
- mount
Path String - The path within the container at which the volume is mounted.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- read
Only Boolean - Whether the volume is mounted read-only.
- sub
Path String - A sub-path within the volume that should be mounted.
- sub
Path StringExpr - An expanded sub-path within the volume.
- extend
Path stringMode - The extended path mode of the mount.
- mount
Path string - The path within the container at which the volume is mounted.
- name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- read
Only boolean - Whether the volume is mounted read-only.
- sub
Path string - A sub-path within the volume that should be mounted.
- sub
Path stringExpr - An expanded sub-path within the volume.
- extend_
path_ strmode - The extended path mode of the mount.
- mount_
path str - The path within the container at which the volume is mounted.
- name str
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- read_
only bool - Whether the volume is mounted read-only.
- sub_
path str - A sub-path within the volume that should be mounted.
- sub_
path_ strexpr - An expanded sub-path within the volume.
- extend
Path StringMode - The extended path mode of the mount.
- mount
Path String - The path within the container at which the volume is mounted.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- read
Only Boolean - Whether the volume is mounted read-only.
- sub
Path String - A sub-path within the volume that should be mounted.
- sub
Path StringExpr - An expanded sub-path within the volume.
GetCciPodsV2PodReadinessGate
- Condition
Type string - The type of the pod condition.
- Condition
Type string - The type of the pod condition.
- condition
Type String - The type of the pod condition.
- condition
Type string - The type of the pod condition.
- condition_
type str - The type of the pod condition.
- condition
Type String - The type of the pod condition.
GetCciPodsV2PodSecurityContext
- Fs
Group double - The GID that applies to all containers in the Pod.
- Fs
Group stringChange Policy - The policy for changing ownership and permission of the volume.
- Run
As doubleGroup - The GID to run the entrypoint of the container process.
- Run
As boolNon Root - Whether containers must run as a non-root user.
- Run
As doubleUser - The UID to run the entrypoint of the container process.
- Supplemental
Groups List<string> - The list of groups applied to the first process in each container.
- Sysctls
List<Get
Cci Pods V2Pod Security Context Sysctl> - The list of sysctls to set in the Pod. The sysctls structure is documented below.
- Fs
Group float64 - The GID that applies to all containers in the Pod.
- Fs
Group stringChange Policy - The policy for changing ownership and permission of the volume.
- Run
As float64Group - The GID to run the entrypoint of the container process.
- Run
As boolNon Root - Whether containers must run as a non-root user.
- Run
As float64User - The UID to run the entrypoint of the container process.
- Supplemental
Groups []string - The list of groups applied to the first process in each container.
- Sysctls
[]Get
Cci Pods V2Pod Security Context Sysctl - The list of sysctls to set in the Pod. The sysctls structure is documented below.
- fs
Group Double - The GID that applies to all containers in the Pod.
- fs
Group StringChange Policy - The policy for changing ownership and permission of the volume.
- run
As DoubleGroup - The GID to run the entrypoint of the container process.
- run
As BooleanNon Root - Whether containers must run as a non-root user.
- run
As DoubleUser - The UID to run the entrypoint of the container process.
- supplemental
Groups List<String> - The list of groups applied to the first process in each container.
- sysctls
List<Get
Cci Pods V2Pod Security Context Sysctl> - The list of sysctls to set in the Pod. The sysctls structure is documented below.
- fs
Group number - The GID that applies to all containers in the Pod.
- fs
Group stringChange Policy - The policy for changing ownership and permission of the volume.
- run
As numberGroup - The GID to run the entrypoint of the container process.
- run
As booleanNon Root - Whether containers must run as a non-root user.
- run
As numberUser - The UID to run the entrypoint of the container process.
- supplemental
Groups string[] - The list of groups applied to the first process in each container.
- sysctls
Get
Cci Pods V2Pod Security Context Sysctl[] - The list of sysctls to set in the Pod. The sysctls structure is documented below.
- fs_
group float - The GID that applies to all containers in the Pod.
- fs_
group_ strchange_ policy - The policy for changing ownership and permission of the volume.
- run_
as_ floatgroup - The GID to run the entrypoint of the container process.
- run_
as_ boolnon_ root - Whether containers must run as a non-root user.
- run_
as_ floatuser - The UID to run the entrypoint of the container process.
- supplemental_
groups Sequence[str] - The list of groups applied to the first process in each container.
- sysctls
Sequence[Get
Cci Pods V2Pod Security Context Sysctl] - The list of sysctls to set in the Pod. The sysctls structure is documented below.
- fs
Group Number - The GID that applies to all containers in the Pod.
- fs
Group StringChange Policy - The policy for changing ownership and permission of the volume.
- run
As NumberGroup - The GID to run the entrypoint of the container process.
- run
As BooleanNon Root - Whether containers must run as a non-root user.
- run
As NumberUser - The UID to run the entrypoint of the container process.
- supplemental
Groups List<String> - The list of groups applied to the first process in each container.
- sysctls List<Property Map>
- The list of sysctls to set in the Pod. The sysctls structure is documented below.
GetCciPodsV2PodSecurityContextSysctl
GetCciPodsV2PodStatus
- Conditions
List<Get
Cci Pods V2Pod Status Condition> - The list of Pod conditions. The conditions structure is documented below.
- Phase string
- The current phase of the Pod.
- Conditions
[]Get
Cci Pods V2Pod Status Condition - The list of Pod conditions. The conditions structure is documented below.
- Phase string
- The current phase of the Pod.
- conditions
List<Get
Cci Pods V2Pod Status Condition> - The list of Pod conditions. The conditions structure is documented below.
- phase String
- The current phase of the Pod.
- conditions
Get
Cci Pods V2Pod Status Condition[] - The list of Pod conditions. The conditions structure is documented below.
- phase string
- The current phase of the Pod.
- conditions
Sequence[Get
Cci Pods V2Pod Status Condition] - The list of Pod conditions. The conditions structure is documented below.
- phase str
- The current phase of the Pod.
- conditions List<Property Map>
- The list of Pod conditions. The conditions structure is documented below.
- phase String
- The current phase of the Pod.
GetCciPodsV2PodStatusCondition
- Last
Probe stringTime - The last time the condition was probed.
- Last
Transition stringTime - The last time the condition transitioned.
- Message string
- A human-readable message describing the transition.
- Reason string
- The reason for the condition's last transition.
- Status string
- The status of the condition.
- Type string
- The type of the condition.
- Last
Probe stringTime - The last time the condition was probed.
- Last
Transition stringTime - The last time the condition transitioned.
- Message string
- A human-readable message describing the transition.
- Reason string
- The reason for the condition's last transition.
- Status string
- The status of the condition.
- Type string
- The type of the condition.
- last
Probe StringTime - The last time the condition was probed.
- last
Transition StringTime - The last time the condition transitioned.
- message String
- A human-readable message describing the transition.
- reason String
- The reason for the condition's last transition.
- status String
- The status of the condition.
- type String
- The type of the condition.
- last
Probe stringTime - The last time the condition was probed.
- last
Transition stringTime - The last time the condition transitioned.
- message string
- A human-readable message describing the transition.
- reason string
- The reason for the condition's last transition.
- status string
- The status of the condition.
- type string
- The type of the condition.
- last_
probe_ strtime - The last time the condition was probed.
- last_
transition_ strtime - The last time the condition transitioned.
- message str
- A human-readable message describing the transition.
- reason str
- The reason for the condition's last transition.
- status str
- The status of the condition.
- type str
- The type of the condition.
- last
Probe StringTime - The last time the condition was probed.
- last
Transition StringTime - The last time the condition transitioned.
- message String
- A human-readable message describing the transition.
- reason String
- The reason for the condition's last transition.
- status String
- The status of the condition.
- type String
- The type of the condition.
GetCciPodsV2PodVolume
- Config
Maps List<GetCci Pods V2Pod Volume Config Map> - A ConfigMap projected into the volume. The projected_config_map structure is documented below.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Nfs
List<Get
Cci Pods V2Pod Volume Nf> - An NFS volume. The nfs structure is documented below.
- Persistent
Volume List<GetClaims Cci Pods V2Pod Volume Persistent Volume Claim> - A reference to a PersistentVolumeClaim. The persistent_volume_claim structure is documented below.
- Projecteds
List<Get
Cci Pods V2Pod Volume Projected> - A projected volume combining multiple sources. The projected structure is documented below.
- Secrets
List<Get
Cci Pods V2Pod Volume Secret> - A Secret projected into the volume. The projected_secret structure is documented below.
- Config
Maps []GetCci Pods V2Pod Volume Config Map - A ConfigMap projected into the volume. The projected_config_map structure is documented below.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Nfs
[]Get
Cci Pods V2Pod Volume Nf - An NFS volume. The nfs structure is documented below.
- Persistent
Volume []GetClaims Cci Pods V2Pod Volume Persistent Volume Claim - A reference to a PersistentVolumeClaim. The persistent_volume_claim structure is documented below.
- Projecteds
[]Get
Cci Pods V2Pod Volume Projected - A projected volume combining multiple sources. The projected structure is documented below.
- Secrets
[]Get
Cci Pods V2Pod Volume Secret - A Secret projected into the volume. The projected_secret structure is documented below.
- config
Maps List<GetCci Pods V2Pod Volume Config Map> - A ConfigMap projected into the volume. The projected_config_map structure is documented below.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- nfs
List<Get
Cci Pods V2Pod Volume Nf> - An NFS volume. The nfs structure is documented below.
- persistent
Volume List<GetClaims Cci Pods V2Pod Volume Persistent Volume Claim> - A reference to a PersistentVolumeClaim. The persistent_volume_claim structure is documented below.
- projecteds
List<Get
Cci Pods V2Pod Volume Projected> - A projected volume combining multiple sources. The projected structure is documented below.
- secrets
List<Get
Cci Pods V2Pod Volume Secret> - A Secret projected into the volume. The projected_secret structure is documented below.
- config
Maps GetCci Pods V2Pod Volume Config Map[] - A ConfigMap projected into the volume. The projected_config_map structure is documented below.
- name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- nfs
Get
Cci Pods V2Pod Volume Nf[] - An NFS volume. The nfs structure is documented below.
- persistent
Volume GetClaims Cci Pods V2Pod Volume Persistent Volume Claim[] - A reference to a PersistentVolumeClaim. The persistent_volume_claim structure is documented below.
- projecteds
Get
Cci Pods V2Pod Volume Projected[] - A projected volume combining multiple sources. The projected structure is documented below.
- secrets
Get
Cci Pods V2Pod Volume Secret[] - A Secret projected into the volume. The projected_secret structure is documented below.
- config_
maps Sequence[GetCci Pods V2Pod Volume Config Map] - A ConfigMap projected into the volume. The projected_config_map structure is documented below.
- name str
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- nfs
Sequence[Get
Cci Pods V2Pod Volume Nf] - An NFS volume. The nfs structure is documented below.
- persistent_
volume_ Sequence[Getclaims Cci Pods V2Pod Volume Persistent Volume Claim] - A reference to a PersistentVolumeClaim. The persistent_volume_claim structure is documented below.
- projecteds
Sequence[Get
Cci Pods V2Pod Volume Projected] - A projected volume combining multiple sources. The projected structure is documented below.
- secrets
Sequence[Get
Cci Pods V2Pod Volume Secret] - A Secret projected into the volume. The projected_secret structure is documented below.
- config
Maps List<Property Map> - A ConfigMap projected into the volume. The projected_config_map structure is documented below.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- nfs List<Property Map>
- An NFS volume. The nfs structure is documented below.
- persistent
Volume List<Property Map>Claims - A reference to a PersistentVolumeClaim. The persistent_volume_claim structure is documented below.
- projecteds List<Property Map>
- A projected volume combining multiple sources. The projected structure is documented below.
- secrets List<Property Map>
- A Secret projected into the volume. The projected_secret structure is documented below.
GetCciPodsV2PodVolumeConfigMap
- Default
Mode double - The default permission mode of the projected files.
- Items
List<Get
Cci Pods V2Pod Volume Config Map Item> - The list of keys to project. The items structure is documented below.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Optional bool
- Whether the Secret must be defined.
- Default
Mode float64 - The default permission mode of the projected files.
- Items
[]Get
Cci Pods V2Pod Volume Config Map Item - The list of keys to project. The items structure is documented below.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Optional bool
- Whether the Secret must be defined.
- default
Mode Double - The default permission mode of the projected files.
- items
List<Get
Cci Pods V2Pod Volume Config Map Item> - The list of keys to project. The items structure is documented below.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- optional Boolean
- Whether the Secret must be defined.
- default
Mode number - The default permission mode of the projected files.
- items
Get
Cci Pods V2Pod Volume Config Map Item[] - The list of keys to project. The items structure is documented below.
- name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- optional boolean
- Whether the Secret must be defined.
- default_
mode float - The default permission mode of the projected files.
- items
Sequence[Get
Cci Pods V2Pod Volume Config Map Item] - The list of keys to project. The items structure is documented below.
- name str
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- optional bool
- Whether the Secret must be defined.
- default
Mode Number - The default permission mode of the projected files.
- items List<Property Map>
- The list of keys to project. The items structure is documented below.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- optional Boolean
- Whether the Secret must be defined.
GetCciPodsV2PodVolumeConfigMapItem
GetCciPodsV2PodVolumeNf
GetCciPodsV2PodVolumePersistentVolumeClaim
- claim_
name str - The name of the referenced PersistentVolumeClaim.
- read_
only bool - Whether the volume is mounted read-only.
GetCciPodsV2PodVolumeProjected
- Default
Mode double - The default permission mode of the projected files.
- Sources
List<Get
Cci Pods V2Pod Volume Projected Source> - The list of volume projection sources. The projected_sources structure is documented below.
- Default
Mode float64 - The default permission mode of the projected files.
- Sources
[]Get
Cci Pods V2Pod Volume Projected Source - The list of volume projection sources. The projected_sources structure is documented below.
- default
Mode Double - The default permission mode of the projected files.
- sources
List<Get
Cci Pods V2Pod Volume Projected Source> - The list of volume projection sources. The projected_sources structure is documented below.
- default
Mode number - The default permission mode of the projected files.
- sources
Get
Cci Pods V2Pod Volume Projected Source[] - The list of volume projection sources. The projected_sources structure is documented below.
- default_
mode float - The default permission mode of the projected files.
- sources
Sequence[Get
Cci Pods V2Pod Volume Projected Source] - The list of volume projection sources. The projected_sources structure is documented below.
- default
Mode Number - The default permission mode of the projected files.
- sources List<Property Map>
- The list of volume projection sources. The projected_sources structure is documented below.
GetCciPodsV2PodVolumeProjectedSource
- Config
Maps List<GetCci Pods V2Pod Volume Projected Source Config Map> - A ConfigMap projected into the volume. The projected_config_map structure is documented below.
- Downward
Apis List<GetCci Pods V2Pod Volume Projected Source Downward Api> - Downward API info projected into the volume. The downward_api structure is documented below.
- Secrets
List<Get
Cci Pods V2Pod Volume Projected Source Secret> - A Secret projected into the volume. The projected_secret structure is documented below.
- Config
Maps []GetCci Pods V2Pod Volume Projected Source Config Map - A ConfigMap projected into the volume. The projected_config_map structure is documented below.
- Downward
Apis []GetCci Pods V2Pod Volume Projected Source Downward Api - Downward API info projected into the volume. The downward_api structure is documented below.
- Secrets
[]Get
Cci Pods V2Pod Volume Projected Source Secret - A Secret projected into the volume. The projected_secret structure is documented below.
- config
Maps List<GetCci Pods V2Pod Volume Projected Source Config Map> - A ConfigMap projected into the volume. The projected_config_map structure is documented below.
- downward
Apis List<GetCci Pods V2Pod Volume Projected Source Downward Api> - Downward API info projected into the volume. The downward_api structure is documented below.
- secrets
List<Get
Cci Pods V2Pod Volume Projected Source Secret> - A Secret projected into the volume. The projected_secret structure is documented below.
- config
Maps GetCci Pods V2Pod Volume Projected Source Config Map[] - A ConfigMap projected into the volume. The projected_config_map structure is documented below.
- downward
Apis GetCci Pods V2Pod Volume Projected Source Downward Api[] - Downward API info projected into the volume. The downward_api structure is documented below.
- secrets
Get
Cci Pods V2Pod Volume Projected Source Secret[] - A Secret projected into the volume. The projected_secret structure is documented below.
- config_
maps Sequence[GetCci Pods V2Pod Volume Projected Source Config Map] - A ConfigMap projected into the volume. The projected_config_map structure is documented below.
- downward_
apis Sequence[GetCci Pods V2Pod Volume Projected Source Downward Api] - Downward API info projected into the volume. The downward_api structure is documented below.
- secrets
Sequence[Get
Cci Pods V2Pod Volume Projected Source Secret] - A Secret projected into the volume. The projected_secret structure is documented below.
- config
Maps List<Property Map> - A ConfigMap projected into the volume. The projected_config_map structure is documented below.
- downward
Apis List<Property Map> - Downward API info projected into the volume. The downward_api structure is documented below.
- secrets List<Property Map>
- A Secret projected into the volume. The projected_secret structure is documented below.
GetCciPodsV2PodVolumeProjectedSourceConfigMap
- Items
List<Get
Cci Pods V2Pod Volume Projected Source Config Map Item> - The list of keys to project. The items structure is documented below.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Optional bool
- Whether the Secret must be defined.
- Items
[]Get
Cci Pods V2Pod Volume Projected Source Config Map Item - The list of keys to project. The items structure is documented below.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Optional bool
- Whether the Secret must be defined.
- items
List<Get
Cci Pods V2Pod Volume Projected Source Config Map Item> - The list of keys to project. The items structure is documented below.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- optional Boolean
- Whether the Secret must be defined.
- items
Get
Cci Pods V2Pod Volume Projected Source Config Map Item[] - The list of keys to project. The items structure is documented below.
- name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- optional boolean
- Whether the Secret must be defined.
- items
Sequence[Get
Cci Pods V2Pod Volume Projected Source Config Map Item] - The list of keys to project. The items structure is documented below.
- name str
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- optional bool
- Whether the Secret must be defined.
- items List<Property Map>
- The list of keys to project. The items structure is documented below.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- optional Boolean
- Whether the Secret must be defined.
GetCciPodsV2PodVolumeProjectedSourceConfigMapItem
GetCciPodsV2PodVolumeProjectedSourceDownwardApi
- Items
List<Get
Cci Pods V2Pod Volume Projected Source Downward Api Item> - The list of keys to project. The items structure is documented below.
- Items
[]Get
Cci Pods V2Pod Volume Projected Source Downward Api Item - The list of keys to project. The items structure is documented below.
- items
List<Get
Cci Pods V2Pod Volume Projected Source Downward Api Item> - The list of keys to project. The items structure is documented below.
- items
Get
Cci Pods V2Pod Volume Projected Source Downward Api Item[] - The list of keys to project. The items structure is documented below.
- items
Sequence[Get
Cci Pods V2Pod Volume Projected Source Downward Api Item] - The list of keys to project. The items structure is documented below.
- items List<Property Map>
- The list of keys to project. The items structure is documented below.
GetCciPodsV2PodVolumeProjectedSourceDownwardApiItem
- Field
Reves List<GetCci Pods V2Pod Volume Projected Source Downward Api Item Field Ref> - A selection of a metadata field. The field_ref structure is documented below.
- Mode double
- The permission mode of the file.
- Path string
- The relative path of the file to create.
- Resource
Field List<GetReves Cci Pods V2Pod Volume Projected Source Downward Api Item Resource Field Ref> - A selection of a container resource field. The resource_field_ref structure is documented below.
- Field
Reves []GetCci Pods V2Pod Volume Projected Source Downward Api Item Field Ref - A selection of a metadata field. The field_ref structure is documented below.
- Mode float64
- The permission mode of the file.
- Path string
- The relative path of the file to create.
- Resource
Field []GetReves Cci Pods V2Pod Volume Projected Source Downward Api Item Resource Field Ref - A selection of a container resource field. The resource_field_ref structure is documented below.
- field
Reves List<GetCci Pods V2Pod Volume Projected Source Downward Api Item Field Ref> - A selection of a metadata field. The field_ref structure is documented below.
- mode Double
- The permission mode of the file.
- path String
- The relative path of the file to create.
- resource
Field List<GetReves Cci Pods V2Pod Volume Projected Source Downward Api Item Resource Field Ref> - A selection of a container resource field. The resource_field_ref structure is documented below.
- field
Reves GetCci Pods V2Pod Volume Projected Source Downward Api Item Field Ref[] - A selection of a metadata field. The field_ref structure is documented below.
- mode number
- The permission mode of the file.
- path string
- The relative path of the file to create.
- resource
Field GetReves Cci Pods V2Pod Volume Projected Source Downward Api Item Resource Field Ref[] - A selection of a container resource field. The resource_field_ref structure is documented below.
- field_
reves Sequence[GetCci Pods V2Pod Volume Projected Source Downward Api Item Field Ref] - A selection of a metadata field. The field_ref structure is documented below.
- mode float
- The permission mode of the file.
- path str
- The relative path of the file to create.
- resource_
field_ Sequence[Getreves Cci Pods V2Pod Volume Projected Source Downward Api Item Resource Field Ref] - A selection of a container resource field. The resource_field_ref structure is documented below.
- field
Reves List<Property Map> - A selection of a metadata field. The field_ref structure is documented below.
- mode Number
- The permission mode of the file.
- path String
- The relative path of the file to create.
- resource
Field List<Property Map>Reves - A selection of a container resource field. The resource_field_ref structure is documented below.
GetCciPodsV2PodVolumeProjectedSourceDownwardApiItemFieldRef
- Api
Version string - The API version of the selected metadata field.
- Field
Path string - The path of the field to select.
- Api
Version string - The API version of the selected metadata field.
- Field
Path string - The path of the field to select.
- api
Version String - The API version of the selected metadata field.
- field
Path String - The path of the field to select.
- api
Version string - The API version of the selected metadata field.
- field
Path string - The path of the field to select.
- api_
version str - The API version of the selected metadata field.
- field_
path str - The path of the field to select.
- api
Version String - The API version of the selected metadata field.
- field
Path String - The path of the field to select.
GetCciPodsV2PodVolumeProjectedSourceDownwardApiItemResourceFieldRef
- Container
Name string - The name of the container.
- Resource string
- The name of the resource to select.
- Container
Name string - The name of the container.
- Resource string
- The name of the resource to select.
- container
Name String - The name of the container.
- resource String
- The name of the resource to select.
- container
Name string - The name of the container.
- resource string
- The name of the resource to select.
- container_
name str - The name of the container.
- resource str
- The name of the resource to select.
- container
Name String - The name of the container.
- resource String
- The name of the resource to select.
GetCciPodsV2PodVolumeProjectedSourceSecret
- Items
List<Get
Cci Pods V2Pod Volume Projected Source Secret Item> - The list of keys to project. The items structure is documented below.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Optional bool
- Whether the Secret must be defined.
- Items
[]Get
Cci Pods V2Pod Volume Projected Source Secret Item - The list of keys to project. The items structure is documented below.
- Name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- Optional bool
- Whether the Secret must be defined.
- items
List<Get
Cci Pods V2Pod Volume Projected Source Secret Item> - The list of keys to project. The items structure is documented below.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- optional Boolean
- Whether the Secret must be defined.
- items
Get
Cci Pods V2Pod Volume Projected Source Secret Item[] - The list of keys to project. The items structure is documented below.
- name string
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- optional boolean
- Whether the Secret must be defined.
- items
Sequence[Get
Cci Pods V2Pod Volume Projected Source Secret Item] - The list of keys to project. The items structure is documented below.
- name str
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- optional bool
- Whether the Secret must be defined.
- items List<Property Map>
- The list of keys to project. The items structure is documented below.
- name String
- Specifies the name of the Pod used to query a single Pod. If omitted, all Pods under the namespace are returned.
- optional Boolean
- Whether the Secret must be defined.
GetCciPodsV2PodVolumeProjectedSourceSecretItem
GetCciPodsV2PodVolumeSecret
- Default
Mode double - The default permission mode of the projected files.
- Items
List<Get
Cci Pods V2Pod Volume Secret Item> - The list of keys to project. The items structure is documented below.
- Optional bool
- Whether the Secret must be defined.
- Secret
Name string - The name of the referenced Secret.
- Default
Mode float64 - The default permission mode of the projected files.
- Items
[]Get
Cci Pods V2Pod Volume Secret Item - The list of keys to project. The items structure is documented below.
- Optional bool
- Whether the Secret must be defined.
- Secret
Name string - The name of the referenced Secret.
- default
Mode Double - The default permission mode of the projected files.
- items
List<Get
Cci Pods V2Pod Volume Secret Item> - The list of keys to project. The items structure is documented below.
- optional Boolean
- Whether the Secret must be defined.
- secret
Name String - The name of the referenced Secret.
- default
Mode number - The default permission mode of the projected files.
- items
Get
Cci Pods V2Pod Volume Secret Item[] - The list of keys to project. The items structure is documented below.
- optional boolean
- Whether the Secret must be defined.
- secret
Name string - The name of the referenced Secret.
- default_
mode float - The default permission mode of the projected files.
- items
Sequence[Get
Cci Pods V2Pod Volume Secret Item] - The list of keys to project. The items structure is documented below.
- optional bool
- Whether the Secret must be defined.
- secret_
name str - The name of the referenced Secret.
- default
Mode Number - The default permission mode of the projected files.
- items List<Property Map>
- The list of keys to project. The items structure is documented below.
- optional Boolean
- Whether the Secret must be defined.
- secret
Name String - The name of the referenced Secret.
GetCciPodsV2PodVolumeSecretItem
Package Details
- Repository
- opentelekomcloud opentelekomcloud/terraform-provider-opentelekomcloud
- License
- Notes
- This Pulumi package is based on the
opentelekomcloudTerraform Provider.
Viewing docs for opentelekomcloud 1.36.64
published on Thursday, Apr 23, 2026 by opentelekomcloud
published on Thursday, Apr 23, 2026 by opentelekomcloud
