Packages

  • package root
    Definition Classes
    root
  • package skuber
    Definition Classes
    root
  • package apps

    The skuber.apps package contains classes and methods for supporting the Kubernetes Apps Group API.

    The skuber.apps package contains classes and methods for supporting the Kubernetes Apps Group API. This currently (Kubernetes V1.7) includes StatefulSet and Deployment resource type.

    Definition Classes
    skuber
  • package v1beta1
    Definition Classes
    apps
  • Deployment
  • StatefulSet

object Deployment extends Serializable

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Deployment
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class RollingUpdate(maxUnavailable: IntOrString = Left(1), maxSurge: IntOrString = Left(1)) extends Product with Serializable
  2. case class Spec(replicas: Option[Int] = Some(1), selector: Option[LabelSelector] = None, template: Option[Pod.Template.Spec] = None, strategy: Option[Strategy] = None, minReadySeconds: Int = 0) extends Product with Serializable
  3. case class Status(replicas: Int = 0, updatedReplicas: Int = 0, availableReplicas: Int = 0, unavailableReplicas: Int = 0, observedGeneration: Int = 0) extends Product with Serializable
  4. sealed trait Strategy extends AnyRef

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply(name: String): Deployment
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  7. implicit lazy val depFormat: Format[Deployment]
  8. implicit val depSpecFmt: Format[Spec]
  9. implicit val depStatusFmt: Format[Status]
  10. implicit val depStrategyFmt: Format[Strategy]
  11. implicit val deployDef: ResourceDefinition[Deployment] { def spec: skuber.NonCoreResourceSpecification }
  12. implicit val deployListDef: ResourceDefinition[DeploymentList] { def spec: skuber.NonCoreResourceSpecification }
  13. implicit val deployListFormat: Format[DeploymentList]
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. implicit val rollingUpdFmt: Format[RollingUpdate]
  24. implicit val scDef: SubresourceSpec[Deployment]
  25. val specification: NonCoreResourceSpecification
  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    AnyRef → Any
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  31. object Strategy
  32. object StrategyType extends Enumeration

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped