mirror of https://github.com/portainer/portainer
9 lines
350 B
Go
9 lines
350 B
Go
package options
|
|
|
|
// KubernetesClusterAccess represents core details which can be used to generate KubeConfig file/data
|
|
type KubernetesClusterAccess struct {
|
|
ClusterServerURL string `example:"https://mycompany.k8s.com"`
|
|
CertificateAuthorityFile string `example:"/data/tls/localhost.crt"`
|
|
AuthToken string `example:"ey..."`
|
|
}
|