ClusterResourceStatus

com.coralogix.zio.k8s.client.ClusterResourceStatus
trait ClusterResourceStatus[StatusT, T]

Extra capability for ClusterResource interfaces to manage status subresources

Attributes

StatusT

Status subresource type

T

Resource type

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
trait Service
class Live
trait Service
class Live
trait Service
class Live
trait Service
class Live
trait Service
class Live
trait Service
class Live
trait Service
class Live
trait Service
class Live
trait Service
class Live
trait Service
class Live
trait Service
class Live

Members list

Concise view

Value members

Concrete methods

def getStatus(name: String): IO[K8sFailure, T]

Get the status of a given subresource by name

Get the status of a given subresource by name

Attributes

name

Name of the resource

Returns:

Returns the full resource object but with possibly the non-status fields absent.

def replaceStatus(of: T, updatedStatus: StatusT, dryRun: Boolean): IO[K8sFailure, T]

Replaces the status of a resource that was previously get from server.

Replaces the status of a resource that was previously get from server.

Use either getStatus or ClusterResource.get to retrieve a value of the resource by name, and then call this method to update its status.

Attributes

dryRun

If true, the request is sent to the server but it will not create the resource.

of

The resource object to manipulate

updatedStatus

Updated status value

Returns:

Returns the updated resource (not just the status)

Abstract fields

A more generic interface for the same resource

A more generic interface for the same resource

Attributes