Show / Hide Table of Contents

Class PodPresetSpecArgs

PodPresetSpec is a description of a pod preset.

Inheritance
System.Object
InputArgs
ResourceArgs
PodPresetSpecArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Kubernetes.Types.Inputs.Settings.V1Alpha1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class PodPresetSpecArgs : ResourceArgs

Properties

View Source

Env

Env defines the collection of EnvVar to inject into containers.

Declaration
public InputList<EnvVarArgs> Env { get; set; }
Property Value
Type Description
InputList<EnvVarArgs>
View Source

EnvFrom

EnvFrom defines the collection of EnvFromSource to inject into containers.

Declaration
public InputList<EnvFromSourceArgs> EnvFrom { get; set; }
Property Value
Type Description
InputList<EnvFromSourceArgs>
View Source

Selector

Selector is a label query over a set of resources, in this case pods. Required.

Declaration
public Input<LabelSelectorArgs> Selector { get; set; }
Property Value
Type Description
Input<LabelSelectorArgs>
View Source

VolumeMounts

VolumeMounts defines the collection of VolumeMount to inject into containers.

Declaration
public InputList<VolumeMountArgs> VolumeMounts { get; set; }
Property Value
Type Description
InputList<VolumeMountArgs>
View Source

Volumes

Volumes defines the collection of Volume to inject into the pod.

Declaration
public InputList<VolumeArgs> Volumes { get; set; }
Property Value
Type Description
InputList<VolumeArgs>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.