Add kubeconfig key to be used in connection secrets of kubernetes clusters
Signed-off-by: Muvaffak Onus <onus.muvaffak@gmail.com>
This commit is contained in:
parent
8686ab0b71
commit
4ed7edad48
|
@ -46,8 +46,10 @@ const (
|
||||||
ResourceCredentialsSecretClientCertKey = "clientCert"
|
ResourceCredentialsSecretClientCertKey = "clientCert"
|
||||||
// ResourceCredentialsSecretClientKeyKey is the key inside a connection secret for the client key
|
// ResourceCredentialsSecretClientKeyKey is the key inside a connection secret for the client key
|
||||||
ResourceCredentialsSecretClientKeyKey = "clientKey"
|
ResourceCredentialsSecretClientKeyKey = "clientKey"
|
||||||
// ResourceCredentialsTokenKey is the key inside a connection secret for the bearer token value
|
// ResourceCredentialsSecretTokenKey is the key inside a connection secret for the bearer token value
|
||||||
ResourceCredentialsTokenKey = "token"
|
ResourceCredentialsSecretTokenKey = "token"
|
||||||
|
// ResourceCredentialsSecretKubeconfigKey is the key inside a connection secret for the raw kubeconfig yaml
|
||||||
|
ResourceCredentialsSecretKubeconfigKey = "kubeconfig"
|
||||||
)
|
)
|
||||||
|
|
||||||
// NOTE(negz): The below secret references differ from ObjectReference and
|
// NOTE(negz): The below secret references differ from ObjectReference and
|
||||||
|
|
Loading…
Reference in New Issue