Resource Type: kubernetes_daemon_set_status

Defined in:
lib/puppet/type/kubernetes_daemon_set_status.rb
Providers:
swagger

Overview

DaemonSetStatus represents the current status of a daemon set.

Properties

  • collision_count

    Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.

  • current_number_scheduled

    The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: kubernetes.io/docs/concepts/workloads/controllers/daemonset/

  • desired_number_scheduled

    The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: kubernetes.io/docs/concepts/workloads/controllers/daemonset/

  • ensure (defaults to: present)

    The basic property that the resource should be in.

    Supported values:
    • present
    • absent
  • number_available

    The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)

  • number_misscheduled

    The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: kubernetes.io/docs/concepts/workloads/controllers/daemonset/

  • number_ready

    The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.

  • number_unavailable

    The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)

  • observed_generation

    The most recent generation observed by the daemon set controller.

  • updated_number_scheduled

    The total number of nodes that are running updated daemon pod

Parameters

  • name (namevar)

    Name of the daemon_set_status.

  • provider

    The specific backend to use for this ‘kubernetes_daemon_set_status` resource. You will seldom need to specify this — Puppet will usually discover the appropriate provider for your platform.