posh-providers/kubernets/kubeforward/portforward.go
Kevin Franklin Kim 3c3b26fc13
feat: add gokazi
2025-04-07 16:08:19 +02:00

15 lines
409 B
Go

package kubeforward
type PortForward struct {
// Target cluster
Cluster string `json:"cluster" yaml:"cluster"`
// Target namespace
Namespace string `json:"namespace" yaml:"namespace"`
// Optional description
Description string `json:"description" yaml:"description"`
// Target name
Target string `json:"target" yaml:"target"`
// Target and host port mapping
Port string `json:"port" yaml:"port"`
}