Module

Kubernetes.Api.PolicyV1Beta1

Package
purescript-kubernetes
Repository
hoodunit/purescript-kubernetes

#Eviction Source

newtype 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.

Fields:

  • deleteOptions: DeleteOptions may be provided
  • metadata: ObjectMeta describes the pod that is being evicted.

Constructors

Instances

#PodDisruptionBudget Source

newtype PodDisruptionBudget

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

Fields:

  • metadata
  • spec: Specification of the desired behavior of the PodDisruptionBudget.
  • status: Most recently observed status of the PodDisruptionBudget.

Constructors

Instances

#PodDisruptionBudgetList Source

#PodDisruptionBudgetSpec Source

newtype PodDisruptionBudgetSpec

PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.

Fields:

  • maxUnavailable: 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".
  • minAvailable: 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%".
  • selector: Label query over pods whose evictions are managed by the disruption budget.

Constructors

Instances

#PodDisruptionBudgetStatus Source

newtype PodDisruptionBudgetStatus

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

Fields:

  • currentHealthy: current number of healthy pods
  • desiredHealthy: minimum desired number of healthy pods
  • disruptedPods: 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.
  • disruptionsAllowed: Number of pod disruptions that are currently allowed.
  • expectedPods: total number of pods counted by this disruption budget
  • observedGeneration: 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.

Constructors

Instances

#getAPIResources Source

getAPIResources :: forall e. Config -> Aff (http :: HTTP | e) (Either Status APIResourceList)

get available resources

Modules
Kubernetes.Api.APIExtensions
Kubernetes.Api.APIExtensionsV1Beta1
Kubernetes.Api.APIExtensionsV1Beta1.CustomResourceDefinition
Kubernetes.Api.AdmissionRegistration
Kubernetes.Api.AdmissionRegistrationV1Alpha1
Kubernetes.Api.AdmissionRegistrationV1Alpha1.InitializerConfiguration
Kubernetes.Api.AdmissionRegistrationV1Beta1
Kubernetes.Api.AdmissionRegistrationV1Beta1.MutatingWebhookConfiguration
Kubernetes.Api.AdmissionRegistrationV1Beta1.ValidatingWebhookConfiguration
Kubernetes.Api.ApiRegistration
Kubernetes.Api.ApiRegistrationV1Beta1
Kubernetes.Api.ApiRegistrationV1Beta1.APIService
Kubernetes.Api.Apis
Kubernetes.Api.Apps
Kubernetes.Api.AppsV1
Kubernetes.Api.AppsV1.ControllerRevision
Kubernetes.Api.AppsV1.DaemonSet
Kubernetes.Api.AppsV1.Deployment
Kubernetes.Api.AppsV1.ReplicaSet
Kubernetes.Api.AppsV1.StatefulSet
Kubernetes.Api.AppsV1Beta1
Kubernetes.Api.AppsV1Beta1.ControllerRevision
Kubernetes.Api.AppsV1Beta1.Deployment
Kubernetes.Api.AppsV1Beta1.DeploymentRollback
Kubernetes.Api.AppsV1Beta1.Scale
Kubernetes.Api.AppsV1Beta1.StatefulSet
Kubernetes.Api.AppsV1Beta2
Kubernetes.Api.AppsV1Beta2.ControllerRevision
Kubernetes.Api.AppsV1Beta2.DaemonSet
Kubernetes.Api.AppsV1Beta2.Deployment
Kubernetes.Api.AppsV1Beta2.ReplicaSet
Kubernetes.Api.AppsV1Beta2.Scale
Kubernetes.Api.AppsV1Beta2.StatefulSet
Kubernetes.Api.Authentication
Kubernetes.Api.AuthenticationV1
Kubernetes.Api.AuthenticationV1.TokenReview
Kubernetes.Api.AuthenticationV1Beta1
Kubernetes.Api.AuthenticationV1Beta1.TokenReview
Kubernetes.Api.Authorization
Kubernetes.Api.AuthorizationV1
Kubernetes.Api.AuthorizationV1.LocalSubjectAccessReview
Kubernetes.Api.AuthorizationV1.SelfSubjectAccessReview
Kubernetes.Api.AuthorizationV1.SelfSubjectRulesReview
Kubernetes.Api.AuthorizationV1.SubjectAccessReview
Kubernetes.Api.AuthorizationV1Beta1
Kubernetes.Api.AuthorizationV1Beta1.LocalSubjectAccessReview
Kubernetes.Api.AuthorizationV1Beta1.SelfSubjectAccessReview
Kubernetes.Api.AuthorizationV1Beta1.SelfSubjectRulesReview
Kubernetes.Api.AuthorizationV1Beta1.SubjectAccessReview
Kubernetes.Api.Autoscaling
Kubernetes.Api.AutoscalingV1
Kubernetes.Api.AutoscalingV1.HorizontalPodAutoscaler
Kubernetes.Api.AutoscalingV1.Scale
Kubernetes.Api.AutoscalingV2Beta1
Kubernetes.Api.AutoscalingV2Beta1.HorizontalPodAutoscaler
Kubernetes.Api.Batch
Kubernetes.Api.BatchV1
Kubernetes.Api.BatchV1.Job
Kubernetes.Api.BatchV1Beta1
Kubernetes.Api.BatchV1Beta1.CronJob
Kubernetes.Api.BatchV2Alpha1
Kubernetes.Api.BatchV2Alpha1.CronJob
Kubernetes.Api.Certificates
Kubernetes.Api.CertificatesV1Beta1
Kubernetes.Api.CertificatesV1Beta1.CertificateSigningRequest
Kubernetes.Api.Core
Kubernetes.Api.CoreV1
Kubernetes.Api.CoreV1.Binding
Kubernetes.Api.CoreV1.ComponentStatus
Kubernetes.Api.CoreV1.ConfigMap
Kubernetes.Api.CoreV1.Endpoints
Kubernetes.Api.CoreV1.Event
Kubernetes.Api.CoreV1.LimitRange
Kubernetes.Api.CoreV1.Namespace
Kubernetes.Api.CoreV1.Node
Kubernetes.Api.CoreV1.PersistentVolume
Kubernetes.Api.CoreV1.PersistentVolumeClaim
Kubernetes.Api.CoreV1.Pod
Kubernetes.Api.CoreV1.PodTemplate
Kubernetes.Api.CoreV1.ReplicationController
Kubernetes.Api.CoreV1.ResourceQuota
Kubernetes.Api.CoreV1.Secret
Kubernetes.Api.CoreV1.Service
Kubernetes.Api.CoreV1.ServiceAccount
Kubernetes.Api.Events
Kubernetes.Api.Events.Event
Kubernetes.Api.Extensions
Kubernetes.Api.ExtensionsV1Beta1
Kubernetes.Api.ExtensionsV1Beta1.DaemonSet
Kubernetes.Api.ExtensionsV1Beta1.Deployment
Kubernetes.Api.ExtensionsV1Beta1.DeploymentRollback
Kubernetes.Api.ExtensionsV1Beta1.Ingress
Kubernetes.Api.ExtensionsV1Beta1.NetworkPolicy
Kubernetes.Api.ExtensionsV1Beta1.PodSecurityPolicy
Kubernetes.Api.ExtensionsV1Beta1.ReplicaSet
Kubernetes.Api.ExtensionsV1Beta1.Scale
Kubernetes.Api.Lens
Kubernetes.Api.Logs
Kubernetes.Api.MetaV1
Kubernetes.Api.Networking
Kubernetes.Api.NetworkingV1
Kubernetes.Api.NetworkingV1.NetworkPolicy
Kubernetes.Api.Policy
Kubernetes.Api.PolicyV1Beta1
Kubernetes.Api.PolicyV1Beta1.Eviction
Kubernetes.Api.PolicyV1Beta1.PodDisruptionBudget
Kubernetes.Api.Rbac
Kubernetes.Api.RbacV1
Kubernetes.Api.RbacV1.ClusterRole
Kubernetes.Api.RbacV1.ClusterRoleBinding
Kubernetes.Api.RbacV1.Role
Kubernetes.Api.RbacV1.RoleBinding
Kubernetes.Api.RbacV1Alpha1
Kubernetes.Api.RbacV1Alpha1.ClusterRole
Kubernetes.Api.RbacV1Alpha1.ClusterRoleBinding
Kubernetes.Api.RbacV1Alpha1.Role
Kubernetes.Api.RbacV1Alpha1.RoleBinding
Kubernetes.Api.RbacV1Beta1
Kubernetes.Api.RbacV1Beta1.ClusterRole
Kubernetes.Api.RbacV1Beta1.ClusterRoleBinding
Kubernetes.Api.RbacV1Beta1.Role
Kubernetes.Api.RbacV1Beta1.RoleBinding
Kubernetes.Api.Resource
Kubernetes.Api.Runtime
Kubernetes.Api.Scheduling
Kubernetes.Api.SchedulingV1Alpha1
Kubernetes.Api.SchedulingV1Alpha1.PriorityClass
Kubernetes.Api.Settings
Kubernetes.Api.SettingsV1Alpha1
Kubernetes.Api.SettingsV1Alpha1.PodPreset
Kubernetes.Api.Storage
Kubernetes.Api.StorageV1
Kubernetes.Api.StorageV1.StorageClass
Kubernetes.Api.StorageV1Alpha1
Kubernetes.Api.StorageV1Alpha1.VolumeAttachment
Kubernetes.Api.StorageV1Beta1
Kubernetes.Api.StorageV1Beta1.StorageClass
Kubernetes.Api.Util
Kubernetes.Api.Version
Kubernetes.Client
Kubernetes.Config
Kubernetes.Default
Kubernetes.Generation.AST
Kubernetes.Generation.Emitter
Kubernetes.Generation.GenerateApi
Kubernetes.Generation.GenerateDefinitions
Kubernetes.Generation.GenerateSchemaType
Kubernetes.Generation.Generation
Kubernetes.Generation.JsonSchema
Kubernetes.Generation.Main
Kubernetes.Generation.Names
Kubernetes.Generation.PathParsing
Kubernetes.Generation.Swagger
Kubernetes.Json
Kubernetes.QueryString
Kubernetes.Request
Kubernetes.RequestOptions
Kubernetes.SchemaExtensions