posh-providers/foomo/beam/cluster.go
Kevin Franklin Kim 4588a19b45
feat: add schema
2025-04-04 16:44:08 +02:00

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"`
}