v1beta1

package
v1.22.0-kw5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 21, 2023 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AllowedCSIDriver

type AllowedCSIDriver struct {

	// Name is the registered name of the CSI driver
	// Required: true
	Name *string `json:"name"`
}

AllowedCSIDriver AllowedCSIDriver represents a single inline CSI Driver that is allowed to be used.

swagger:model AllowedCSIDriver

func (AllowedCSIDriver) MarshalEasyJSON

func (v AllowedCSIDriver) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (AllowedCSIDriver) MarshalJSON

func (v AllowedCSIDriver) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*AllowedCSIDriver) UnmarshalEasyJSON

func (v *AllowedCSIDriver) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*AllowedCSIDriver) UnmarshalJSON

func (v *AllowedCSIDriver) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type AllowedFlexVolume

type AllowedFlexVolume struct {

	// driver is the name of the Flexvolume driver.
	// Required: true
	Driver *string `json:"driver"`
}

AllowedFlexVolume AllowedFlexVolume represents a single Flexvolume that is allowed to be used.

swagger:model AllowedFlexVolume

func (AllowedFlexVolume) MarshalEasyJSON

func (v AllowedFlexVolume) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (AllowedFlexVolume) MarshalJSON

func (v AllowedFlexVolume) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*AllowedFlexVolume) UnmarshalEasyJSON

func (v *AllowedFlexVolume) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*AllowedFlexVolume) UnmarshalJSON

func (v *AllowedFlexVolume) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type AllowedHostPath

type AllowedHostPath struct {

	// pathPrefix is the path prefix that the host volume must match. It does not support `*`. Trailing slashes are trimmed when validating the path prefix with a host path.
	//
	// Examples: `/foo` would allow `/foo`, `/foo/` and `/foo/bar` `/foo` would not allow `/food` or `/etc/foo`
	PathPrefix string `json:"pathPrefix,omitempty"`

	// when set to true, will allow host volumes matching the pathPrefix only if all volume mounts are readOnly.
	ReadOnly bool `json:"readOnly,omitempty"`
}

AllowedHostPath AllowedHostPath defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined.

swagger:model AllowedHostPath

func (AllowedHostPath) MarshalEasyJSON

func (v AllowedHostPath) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (AllowedHostPath) MarshalJSON

func (v AllowedHostPath) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*AllowedHostPath) UnmarshalEasyJSON

func (v *AllowedHostPath) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*AllowedHostPath) UnmarshalJSON

func (v *AllowedHostPath) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type FSGroupStrategyOptions

type FSGroupStrategyOptions struct {

	// ranges are the allowed ranges of fs groups.  If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.
	Ranges []*IDRange `json:"ranges,omitempty"`

	// rule is the strategy that will dictate what FSGroup is used in the SecurityContext.
	Rule string `json:"rule,omitempty"`
}

FSGroupStrategyOptions FSGroupStrategyOptions defines the strategy type and options used to create the strategy.

swagger:model FSGroupStrategyOptions

func (FSGroupStrategyOptions) MarshalEasyJSON

func (v FSGroupStrategyOptions) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (FSGroupStrategyOptions) MarshalJSON

func (v FSGroupStrategyOptions) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*FSGroupStrategyOptions) UnmarshalEasyJSON

func (v *FSGroupStrategyOptions) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*FSGroupStrategyOptions) UnmarshalJSON

func (v *FSGroupStrategyOptions) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type HostPortRange

type HostPortRange struct {

	// max is the end of the range, inclusive.
	// Required: true
	Max *int32 `json:"max"`

	// min is the start of the range, inclusive.
	// Required: true
	Min *int32 `json:"min"`
}

HostPortRange HostPortRange defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined.

swagger:model HostPortRange

func (HostPortRange) MarshalEasyJSON

func (v HostPortRange) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (HostPortRange) MarshalJSON

func (v HostPortRange) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*HostPortRange) UnmarshalEasyJSON

func (v *HostPortRange) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*HostPortRange) UnmarshalJSON

func (v *HostPortRange) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type IDRange

type IDRange struct {

	// max is the end of the range, inclusive.
	// Required: true
	Max *int64 `json:"max"`

	// min is the start of the range, inclusive.
	// Required: true
	Min *int64 `json:"min"`
}

IDRange IDRange provides a min/max of an allowed range of IDs.

swagger:model IDRange

func (IDRange) MarshalEasyJSON

func (v IDRange) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (IDRange) MarshalJSON

func (v IDRange) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*IDRange) UnmarshalEasyJSON

func (v *IDRange) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*IDRange) UnmarshalJSON

func (v *IDRange) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodDisruptionBudget

type PodDisruptionBudget struct {

	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	APIVersion string `json:"apiVersion,omitempty"`

	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`

	// Specification of the desired behavior of the PodDisruptionBudget.
	Spec *PodDisruptionBudgetSpec `json:"spec,omitempty"`

	// Most recently observed status of the PodDisruptionBudget.
	Status *PodDisruptionBudgetStatus `json:"status,omitempty"`
}

PodDisruptionBudget PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods

swagger:model PodDisruptionBudget

func (PodDisruptionBudget) MarshalEasyJSON

func (v PodDisruptionBudget) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodDisruptionBudget) MarshalJSON

func (v PodDisruptionBudget) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodDisruptionBudget) UnmarshalEasyJSON

func (v *PodDisruptionBudget) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodDisruptionBudget) UnmarshalJSON

func (v *PodDisruptionBudget) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodDisruptionBudgetList

type PodDisruptionBudgetList struct {

	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	APIVersion string `json:"apiVersion,omitempty"`

	// items list individual PodDisruptionBudget objects
	// Required: true
	Items []*PodDisruptionBudget `json:"items"`

	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

PodDisruptionBudgetList PodDisruptionBudgetList is a collection of PodDisruptionBudgets.

swagger:model PodDisruptionBudgetList

func (PodDisruptionBudgetList) MarshalEasyJSON

func (v PodDisruptionBudgetList) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodDisruptionBudgetList) MarshalJSON

func (v PodDisruptionBudgetList) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodDisruptionBudgetList) UnmarshalEasyJSON

func (v *PodDisruptionBudgetList) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodDisruptionBudgetList) UnmarshalJSON

func (v *PodDisruptionBudgetList) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodDisruptionBudgetSpec

type PodDisruptionBudgetSpec struct {

	// An eviction is allowed if at most "maxUnavailable" pods selected by "selector" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with "minAvailable".
	MaxUnavailable *apimachinery_pkg_util_intstr.IntOrString `json:"maxUnavailable,omitempty"`

	// An eviction is allowed if at least "minAvailable" pods selected by "selector" will still be available after the eviction, i.e. even in the absence of the evicted pod.  So for example you can prevent all voluntary evictions by specifying "100%".
	MinAvailable *apimachinery_pkg_util_intstr.IntOrString `json:"minAvailable,omitempty"`

	// Label query over pods whose evictions are managed by the disruption budget. A null selector selects no pods. An empty selector ({}) also selects no pods, which differs from standard behavior of selecting all pods. In policy/v1, an empty selector will select all pods in the namespace.
	Selector *apimachinery_pkg_apis_meta_v1.LabelSelector `json:"selector,omitempty"`
}

PodDisruptionBudgetSpec PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.

swagger:model PodDisruptionBudgetSpec

func (PodDisruptionBudgetSpec) MarshalEasyJSON

func (v PodDisruptionBudgetSpec) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodDisruptionBudgetSpec) MarshalJSON

func (v PodDisruptionBudgetSpec) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodDisruptionBudgetSpec) UnmarshalEasyJSON

func (v *PodDisruptionBudgetSpec) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodDisruptionBudgetSpec) UnmarshalJSON

func (v *PodDisruptionBudgetSpec) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodDisruptionBudgetStatus

type PodDisruptionBudgetStatus struct {

	// Conditions contain conditions for PDB. The disruption controller sets the DisruptionAllowed condition. The following are known values for the reason field (additional reasons could be added in the future): - SyncFailed: The controller encountered an error and wasn't able to compute
	//               the number of allowed disruptions. Therefore no disruptions are
	//               allowed and the status of the condition will be False.
	// - InsufficientPods: The number of pods are either at or below the number
	//                     required by the PodDisruptionBudget. No disruptions are
	//                     allowed and the status of the condition will be False.
	// - SufficientPods: There are more pods than required by the PodDisruptionBudget.
	//                   The condition will be True, and the number of allowed
	//                   disruptions are provided by the disruptionsAllowed property.
	Conditions []*apimachinery_pkg_apis_meta_v1.Condition `json:"conditions,omitempty"`

	// current number of healthy pods
	// Required: true
	CurrentHealthy *int32 `json:"currentHealthy"`

	// minimum desired number of healthy pods
	// Required: true
	DesiredHealthy *int32 `json:"desiredHealthy"`

	// DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the name of the pod and the value is the time when the API server processed the eviction request. If the deletion didn't occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time. If everything goes smooth this map should be empty for the most of the time. Large number of entries in the map may indicate problems with pod deletions.
	DisruptedPods map[string]*apimachinery_pkg_apis_meta_v1.Time `json:"disruptedPods,omitempty"`

	// Number of pod disruptions that are currently allowed.
	// Required: true
	DisruptionsAllowed *int32 `json:"disruptionsAllowed"`

	// total number of pods counted by this disruption budget
	// Required: true
	ExpectedPods *int32 `json:"expectedPods"`

	// Most recent generation observed when updating this PDB status. DisruptionsAllowed and other status information is valid only if observedGeneration equals to PDB's object generation.
	ObservedGeneration int64 `json:"observedGeneration,omitempty"`
}

PodDisruptionBudgetStatus PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.

swagger:model PodDisruptionBudgetStatus

func (PodDisruptionBudgetStatus) MarshalEasyJSON

func (v PodDisruptionBudgetStatus) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodDisruptionBudgetStatus) MarshalJSON

func (v PodDisruptionBudgetStatus) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodDisruptionBudgetStatus) UnmarshalEasyJSON

func (v *PodDisruptionBudgetStatus) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodDisruptionBudgetStatus) UnmarshalJSON

func (v *PodDisruptionBudgetStatus) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodSecurityPolicy

type PodSecurityPolicy struct {

	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	APIVersion string `json:"apiVersion,omitempty"`

	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind string `json:"kind,omitempty"`

	// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"`

	// spec defines the policy enforced.
	Spec *PodSecurityPolicySpec `json:"spec,omitempty"`
}

PodSecurityPolicy PodSecurityPolicy governs the ability to make requests that affect the Security Context that will be applied to a pod and container. Deprecated in 1.21.

swagger:model PodSecurityPolicy

func (PodSecurityPolicy) MarshalEasyJSON

func (v PodSecurityPolicy) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodSecurityPolicy) MarshalJSON

func (v PodSecurityPolicy) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodSecurityPolicy) UnmarshalEasyJSON

func (v *PodSecurityPolicy) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodSecurityPolicy) UnmarshalJSON

func (v *PodSecurityPolicy) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodSecurityPolicyList

type PodSecurityPolicyList struct {

	// APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
	APIVersion string `json:"apiVersion,omitempty"`

	// items is a list of schema objects.
	// Required: true
	Items []*PodSecurityPolicy `json:"items"`

	// Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
	Kind string `json:"kind,omitempty"`

	// Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
	Metadata *apimachinery_pkg_apis_meta_v1.ListMeta `json:"metadata,omitempty"`
}

PodSecurityPolicyList PodSecurityPolicyList is a list of PodSecurityPolicy objects.

swagger:model PodSecurityPolicyList

func (PodSecurityPolicyList) MarshalEasyJSON

func (v PodSecurityPolicyList) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodSecurityPolicyList) MarshalJSON

func (v PodSecurityPolicyList) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodSecurityPolicyList) UnmarshalEasyJSON

func (v *PodSecurityPolicyList) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodSecurityPolicyList) UnmarshalJSON

func (v *PodSecurityPolicyList) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type PodSecurityPolicySpec

type PodSecurityPolicySpec struct {

	// allowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true.
	AllowPrivilegeEscalation bool `json:"allowPrivilegeEscalation,omitempty"`

	// AllowedCSIDrivers is an allowlist of inline CSI drivers that must be explicitly set to be embedded within a pod spec. An empty value indicates that any CSI driver can be used for inline ephemeral volumes. This is a beta field, and is only honored if the API server enables the CSIInlineVolume feature gate.
	AllowedCSIDrivers []*AllowedCSIDriver `json:"allowedCSIDrivers,omitempty"`

	// allowedCapabilities is a list of capabilities that can be requested to add to the container. Capabilities in this field may be added at the pod author's discretion. You must not list a capability in both allowedCapabilities and requiredDropCapabilities.
	AllowedCapabilities []string `json:"allowedCapabilities,omitempty"`

	// allowedFlexVolumes is an allowlist of Flexvolumes.  Empty or nil indicates that all Flexvolumes may be used.  This parameter is effective only when the usage of the Flexvolumes is allowed in the "volumes" field.
	AllowedFlexVolumes []*AllowedFlexVolume `json:"allowedFlexVolumes,omitempty"`

	// allowedHostPaths is an allowlist of host paths. Empty indicates that all host paths may be used.
	AllowedHostPaths []*AllowedHostPath `json:"allowedHostPaths,omitempty"`

	// AllowedProcMountTypes is an allowlist of allowed ProcMountTypes. Empty or nil indicates that only the DefaultProcMountType may be used. This requires the ProcMountType feature flag to be enabled.
	AllowedProcMountTypes []string `json:"allowedProcMountTypes,omitempty"`

	// allowedUnsafeSysctls is a list of explicitly allowed unsafe sysctls, defaults to none. Each entry is either a plain sysctl name or ends in "*" in which case it is considered as a prefix of allowed sysctls. Single * means all unsafe sysctls are allowed. Kubelet has to allowlist all allowed unsafe sysctls explicitly to avoid rejection.
	//
	// Examples: e.g. "foo/*" allows "foo/bar", "foo/baz", etc. e.g. "foo.*" allows "foo.bar", "foo.baz", etc.
	AllowedUnsafeSysctls []string `json:"allowedUnsafeSysctls,omitempty"`

	// defaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability.  You may not list a capability in both defaultAddCapabilities and requiredDropCapabilities. Capabilities added here are implicitly allowed, and need not be included in the allowedCapabilities list.
	DefaultAddCapabilities []string `json:"defaultAddCapabilities,omitempty"`

	// defaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process.
	DefaultAllowPrivilegeEscalation bool `json:"defaultAllowPrivilegeEscalation,omitempty"`

	// forbiddenSysctls is a list of explicitly forbidden sysctls, defaults to none. Each entry is either a plain sysctl name or ends in "*" in which case it is considered as a prefix of forbidden sysctls. Single * means all sysctls are forbidden.
	//
	// Examples: e.g. "foo/*" forbids "foo/bar", "foo/baz", etc. e.g. "foo.*" forbids "foo.bar", "foo.baz", etc.
	ForbiddenSysctls []string `json:"forbiddenSysctls,omitempty"`

	// fsGroup is the strategy that will dictate what fs group is used by the SecurityContext.
	// Required: true
	FSGroup *FSGroupStrategyOptions `json:"fsGroup"`

	// hostIPC determines if the policy allows the use of HostIPC in the pod spec.
	HostIPC bool `json:"hostIPC,omitempty"`

	// hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.
	HostNetwork bool `json:"hostNetwork,omitempty"`

	// hostPID determines if the policy allows the use of HostPID in the pod spec.
	HostPID bool `json:"hostPID,omitempty"`

	// hostPorts determines which host port ranges are allowed to be exposed.
	HostPorts []*HostPortRange `json:"hostPorts,omitempty"`

	// privileged determines if a pod can request to be run as privileged.
	Privileged bool `json:"privileged,omitempty"`

	// readOnlyRootFilesystem when set to true will force containers to run with a read only root file system.  If the container specifically requests to run with a non-read only root file system the PSP should deny the pod. If set to false the container may run with a read only root file system if it wishes but it will not be forced to.
	ReadOnlyRootFilesystem bool `json:"readOnlyRootFilesystem,omitempty"`

	// requiredDropCapabilities are the capabilities that will be dropped from the container.  These are required to be dropped and cannot be added.
	RequiredDropCapabilities []string `json:"requiredDropCapabilities,omitempty"`

	// RunAsGroup is the strategy that will dictate the allowable RunAsGroup values that may be set. If this field is omitted, the pod's RunAsGroup can take any value. This field requires the RunAsGroup feature gate to be enabled.
	RunAsGroup *RunAsGroupStrategyOptions `json:"runAsGroup,omitempty"`

	// runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set.
	// Required: true
	RunAsUser *RunAsUserStrategyOptions `json:"runAsUser"`

	// runtimeClass is the strategy that will dictate the allowable RuntimeClasses for a pod. If this field is omitted, the pod's runtimeClassName field is unrestricted. Enforcement of this field depends on the RuntimeClass feature gate being enabled.
	RuntimeClass *RuntimeClassStrategyOptions `json:"runtimeClass,omitempty"`

	// seLinux is the strategy that will dictate the allowable labels that may be set.
	// Required: true
	SELinux *SELinuxStrategyOptions `json:"seLinux"`

	// supplementalGroups is the strategy that will dictate what supplemental groups are used by the SecurityContext.
	// Required: true
	SupplementalGroups *SupplementalGroupsStrategyOptions `json:"supplementalGroups"`

	// volumes is an allowlist of volume plugins. Empty indicates that no volumes may be used. To allow all volumes you may use '*'.
	Volumes []string `json:"volumes,omitempty"`
}

PodSecurityPolicySpec PodSecurityPolicySpec defines the policy enforced.

swagger:model PodSecurityPolicySpec

func (PodSecurityPolicySpec) MarshalEasyJSON

func (v PodSecurityPolicySpec) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (PodSecurityPolicySpec) MarshalJSON

func (v PodSecurityPolicySpec) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*PodSecurityPolicySpec) UnmarshalEasyJSON

func (v *PodSecurityPolicySpec) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*PodSecurityPolicySpec) UnmarshalJSON

func (v *PodSecurityPolicySpec) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type RunAsGroupStrategyOptions

type RunAsGroupStrategyOptions struct {

	// ranges are the allowed ranges of gids that may be used. If you would like to force a single gid then supply a single range with the same start and end. Required for MustRunAs.
	Ranges []*IDRange `json:"ranges,omitempty"`

	// rule is the strategy that will dictate the allowable RunAsGroup values that may be set.
	// Required: true
	Rule *string `json:"rule"`
}

RunAsGroupStrategyOptions RunAsGroupStrategyOptions defines the strategy type and any options used to create the strategy.

swagger:model RunAsGroupStrategyOptions

func (RunAsGroupStrategyOptions) MarshalEasyJSON

func (v RunAsGroupStrategyOptions) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (RunAsGroupStrategyOptions) MarshalJSON

func (v RunAsGroupStrategyOptions) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*RunAsGroupStrategyOptions) UnmarshalEasyJSON

func (v *RunAsGroupStrategyOptions) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*RunAsGroupStrategyOptions) UnmarshalJSON

func (v *RunAsGroupStrategyOptions) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type RunAsUserStrategyOptions

type RunAsUserStrategyOptions struct {

	// ranges are the allowed ranges of uids that may be used. If you would like to force a single uid then supply a single range with the same start and end. Required for MustRunAs.
	Ranges []*IDRange `json:"ranges,omitempty"`

	// rule is the strategy that will dictate the allowable RunAsUser values that may be set.
	// Required: true
	Rule *string `json:"rule"`
}

RunAsUserStrategyOptions RunAsUserStrategyOptions defines the strategy type and any options used to create the strategy.

swagger:model RunAsUserStrategyOptions

func (RunAsUserStrategyOptions) MarshalEasyJSON

func (v RunAsUserStrategyOptions) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (RunAsUserStrategyOptions) MarshalJSON

func (v RunAsUserStrategyOptions) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*RunAsUserStrategyOptions) UnmarshalEasyJSON

func (v *RunAsUserStrategyOptions) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*RunAsUserStrategyOptions) UnmarshalJSON

func (v *RunAsUserStrategyOptions) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type RuntimeClassStrategyOptions

type RuntimeClassStrategyOptions struct {

	// allowedRuntimeClassNames is an allowlist of RuntimeClass names that may be specified on a pod. A value of "*" means that any RuntimeClass name is allowed, and must be the only item in the list. An empty list requires the RuntimeClassName field to be unset.
	// Required: true
	AllowedRuntimeClassNames []string `json:"allowedRuntimeClassNames"`

	// defaultRuntimeClassName is the default RuntimeClassName to set on the pod. The default MUST be allowed by the allowedRuntimeClassNames list. A value of nil does not mutate the Pod.
	DefaultRuntimeClassName string `json:"defaultRuntimeClassName,omitempty"`
}

RuntimeClassStrategyOptions RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod.

swagger:model RuntimeClassStrategyOptions

func (RuntimeClassStrategyOptions) MarshalEasyJSON

func (v RuntimeClassStrategyOptions) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (RuntimeClassStrategyOptions) MarshalJSON

func (v RuntimeClassStrategyOptions) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*RuntimeClassStrategyOptions) UnmarshalEasyJSON

func (v *RuntimeClassStrategyOptions) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*RuntimeClassStrategyOptions) UnmarshalJSON

func (v *RuntimeClassStrategyOptions) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SELinuxStrategyOptions

type SELinuxStrategyOptions struct {

	// rule is the strategy that will dictate the allowable labels that may be set.
	// Required: true
	Rule *string `json:"rule"`

	// seLinuxOptions required to run as; required for MustRunAs More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/
	SELinuxOptions *api_core_v1.SELinuxOptions `json:"seLinuxOptions,omitempty"`
}

SELinuxStrategyOptions SELinuxStrategyOptions defines the strategy type and any options used to create the strategy.

swagger:model SELinuxStrategyOptions

func (SELinuxStrategyOptions) MarshalEasyJSON

func (v SELinuxStrategyOptions) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SELinuxStrategyOptions) MarshalJSON

func (v SELinuxStrategyOptions) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SELinuxStrategyOptions) UnmarshalEasyJSON

func (v *SELinuxStrategyOptions) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SELinuxStrategyOptions) UnmarshalJSON

func (v *SELinuxStrategyOptions) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type SupplementalGroupsStrategyOptions

type SupplementalGroupsStrategyOptions struct {

	// ranges are the allowed ranges of supplemental groups.  If you would like to force a single supplemental group then supply a single range with the same start and end. Required for MustRunAs.
	Ranges []*IDRange `json:"ranges,omitempty"`

	// rule is the strategy that will dictate what supplemental groups is used in the SecurityContext.
	Rule string `json:"rule,omitempty"`
}

SupplementalGroupsStrategyOptions SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy.

swagger:model SupplementalGroupsStrategyOptions

func (SupplementalGroupsStrategyOptions) MarshalEasyJSON

func (v SupplementalGroupsStrategyOptions) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (SupplementalGroupsStrategyOptions) MarshalJSON

func (v SupplementalGroupsStrategyOptions) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*SupplementalGroupsStrategyOptions) UnmarshalEasyJSON

func (v *SupplementalGroupsStrategyOptions) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*SupplementalGroupsStrategyOptions) UnmarshalJSON

func (v *SupplementalGroupsStrategyOptions) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL