mirror of
https://github.com/foomo/posh-providers.git
synced 2025-10-16 12:35:41 +00:00
12 lines
288 B
Go
12 lines
288 B
Go
package beam
|
|
|
|
import (
|
|
"github.com/foomo/posh-providers/onepassword"
|
|
)
|
|
|
|
type Cluster struct {
|
|
Port int `json:"port" yaml:"port"`
|
|
Hostname string `json:"hostname" yaml:"hostname"`
|
|
Kubeconfig onepassword.Secret `json:"kubeconfig" yaml:"kubeconfig"`
|
|
}
|