Documentation ¶
Index ¶
- type AllowedCSIDriver
- type AllowedFlexVolume
- type AllowedHostPath
- type Eviction
- type FSGroupStrategyOptions
- type HostPortRange
- type IDRange
- type PodDisruptionBudget
- type PodDisruptionBudgetList
- type PodDisruptionBudgetSpec
- type PodDisruptionBudgetStatus
- type PodSecurityPolicy
- type PodSecurityPolicyList
- type PodSecurityPolicySpec
- type RunAsGroupStrategyOptions
- type RunAsUserStrategyOptions
- type SELinuxStrategyOptions
- type SupplementalGroupsStrategyOptions
- func (v SupplementalGroupsStrategyOptions) MarshalEasyJSON(w *jwriter.Writer)
- func (v SupplementalGroupsStrategyOptions) MarshalJSON() ([]byte, error)
- func (v *SupplementalGroupsStrategyOptions) UnmarshalEasyJSON(l *jlexer.Lexer)
- func (v *SupplementalGroupsStrategyOptions) UnmarshalJSON(data []byte) error
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 Eviction ¶
type Eviction 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/api-conventions.md#resources APIVersion string `json:"apiVersion,omitempty"` // DeleteOptions may be provided DeleteOptions *apimachinery_pkg_apis_meta_v1.DeleteOptions `json:"deleteOptions,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/api-conventions.md#types-kinds Kind string `json:"kind,omitempty"` // ObjectMeta describes the pod that is being evicted. Metadata *apimachinery_pkg_apis_meta_v1.ObjectMeta `json:"metadata,omitempty"` }
Eviction Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod. A request to cause such an eviction is created by POSTing to .../pods/<pod name>/evictions.
swagger:model Eviction
func (Eviction) MarshalEasyJSON ¶
MarshalEasyJSON supports easyjson.Marshaler interface
func (Eviction) MarshalJSON ¶
MarshalJSON supports json.Marshaler interface
func (*Eviction) UnmarshalEasyJSON ¶
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*Eviction) UnmarshalJSON ¶
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 ¶
MarshalEasyJSON supports easyjson.Marshaler interface
func (IDRange) MarshalJSON ¶
MarshalJSON supports json.Marshaler interface
func (*IDRange) UnmarshalEasyJSON ¶
UnmarshalEasyJSON supports easyjson.Unmarshaler interface
func (*IDRange) UnmarshalJSON ¶
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/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/api-conventions.md#types-kinds Kind string `json:"kind,omitempty"` // 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/api-conventions.md#resources APIVersion string `json:"apiVersion,omitempty"` // items // 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/api-conventions.md#types-kinds Kind string `json:"kind,omitempty"` // 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 { 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. Selector *apimachinery_pkg_apis_meta_v1.LabelSelector `json:"selector,omitempty"` }MaxUnavailable *
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 { // 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. PodDisruptionsAllowed and other status informatio 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/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/api-conventions.md#types-kinds Kind string `json:"kind,omitempty"` // Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/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.
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/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/api-conventions.md#types-kinds Kind string `json:"kind,omitempty"` // Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/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 a whitelist of inline CSI drivers that must be explicitly set to be embedded within a pod spec. An empty value means no CSI drivers can run inline within a pod spec. 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 a whitelist of allowed 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 a white list of allowed host paths. Empty indicates that all host paths may be used. AllowedHostPaths []*AllowedHostPath `json:"allowedHostPaths,omitempty"` // AllowedProcMountTypes is a whitelist 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 whitelist 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"` // 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 a white list of allowed 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 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
Source Files ¶
- allowed_c_s_i_driver.go
- allowed_c_s_i_driver_easyjson.go
- allowed_csi_driver.go
- allowed_csi_driver_easyjson.go
- allowed_flex_volume.go
- allowed_flex_volume_easyjson.go
- allowed_host_path.go
- allowed_host_path_easyjson.go
- eviction.go
- eviction_easyjson.go
- f_s_group_strategy_options.go
- f_s_group_strategy_options_easyjson.go
- fs_group_strategy_options.go
- fs_group_strategy_options_easyjson.go
- host_port_range.go
- host_port_range_easyjson.go
- id_range.go
- id_range_easyjson.go
- pod_disruption_budget.go
- pod_disruption_budget_easyjson.go
- pod_disruption_budget_list.go
- pod_disruption_budget_list_easyjson.go
- pod_disruption_budget_spec.go
- pod_disruption_budget_spec_easyjson.go
- pod_disruption_budget_status.go
- pod_disruption_budget_status_easyjson.go
- pod_security_policy.go
- pod_security_policy_easyjson.go
- pod_security_policy_list.go
- pod_security_policy_list_easyjson.go
- pod_security_policy_spec.go
- pod_security_policy_spec_easyjson.go
- run_as_group_strategy_options.go
- run_as_group_strategy_options_easyjson.go
- run_as_user_strategy_options.go
- run_as_user_strategy_options_easyjson.go
- s_e_linux_strategy_options.go
- s_e_linux_strategy_options_easyjson.go
- se_linux_strategy_options.go
- se_linux_strategy_options_easyjson.go
- supplemental_groups_strategy_options.go
- supplemental_groups_strategy_options_easyjson.go