Interface ICredential

ICredential specifies a credential which uses an RBAC username and password to authenticate with the cluster.

interface ICredential {
    password: string;
    username: string;
}

Implemented by

Properties

Properties

password: string

The password to authenticate with.

username: string

The username to authenticate with.