ResourceStatus

trait ResourceStatus[StatusT, T]

Extra capability for Resource interfaces to manage status subresources

Extra capability for Resource interfaces to manage status subresources

Type Params
StatusT

Status subresource type

T

Resource type

class Object
trait Matchable
class Any
class ResourceStatusClient[StatusT, T]
class TestResourceStatusClient[StatusT, T]

Value members

Abstract methods

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

Get the status of a given subresource by name

Get the status of a given subresource by name

Value Params
name

Name of the resource

namespace

Namespace. For namespaced resources it must be Some, for cluster resources it must be None.

Returns

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

def replaceStatus(of: T, updatedStatus: StatusT, namespace: Option[K8sNamespace], 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 Resource.get to retrieve a value of the resource by name, and then call this method to update its status.

Value Params
dryRun

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

namespace

Namespace. For namespaced resources it must be Some, for cluster resources it must be None.

of

The resource object to manipulate

updatedStatus

Updated status value

Returns

Returns the updated resource (not just the status)