Package

skuber

apps

Permalink

package apps

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.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. apps
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Deployment(kind: String = "Deployment", apiVersion: String = "apps/v1beta1", metadata: ObjectMeta = ObjectMeta(), spec: Option[Spec] = None, status: Option[Status] = None) extends ObjectResource with Product with Serializable

    Permalink
  2. type DeploymentList = ListResource[Deployment]

    Permalink
  3. case class StatefulSet(kind: String = "StatefulSet", apiVersion: String = "apps/v1beta2", metadata: ObjectMeta, spec: Option[Spec] = None, status: Option[Status] = None) extends ObjectResource with Product with Serializable

    Permalink

    Created by hollinwilkins on 4/5/17.

    Created by hollinwilkins on 4/5/17. The api version of this StatefulSet type is v1beta2, which is for use with k8s 1.8+. For earlier versions of k8s, use skuber.apps.v1beta1.StatefulSet

  4. type StatefulSetList = ListResource[StatefulSet]

    Permalink

Value Members

  1. object Deployment extends Serializable

    Permalink
  2. object StatefulSet extends Serializable

    Permalink
  3. val appsAPIVersion: String

    Permalink
  4. package v1beta1

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped