16 lines
285 B
Go
16 lines
285 B
Go
package kubernetes
|
|
|
|
import (
|
|
proto "git.badhouseplants.net/softplayer/softplayer-go-proto/pkg/environments"
|
|
)
|
|
|
|
type K3s struct{}
|
|
|
|
func (k *K3s) GetKubernetesName() string {
|
|
return "k3s"
|
|
}
|
|
|
|
func (k *K3s) RawKubernetesName() string {
|
|
return proto.Kubernetes_KUBERNETES_K3S.String()
|
|
}
|