ClusterResourceStatus

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

Extra capability for ClusterResource interfaces to manage status subresources

Type parameters

StatusT

Status subresource type

T

Resource type

Attributes

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
trait Service
class Live
Show all

Members list

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

Value parameters

name

Name of the resource

Attributes

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.

Value parameters

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

Attributes

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