Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { Kubernetes Kubernetes `hcl:"kubernetes,block"` Proxmox Proxmox `hcl:"proxmox,block"` }
type Kubernetes ¶
type Kubernetes struct { Dashboard KubernetesDashboard `hcl:"dashboard,block"` Node Node `hcl:"node,block"` }
type KubernetesDashboard ¶
type Node ¶
type Node struct { Name string `hcl:"name,label"` Addr string `hcl:"addr"` Username string `hcl:"username"` // Password is required if private key is not set. Password string `hcl:"password,optional"` // PrivateKeyFile is required if password is not set. PrivateKeyFile string `hcl:"private_key_file,optional"` // HostKey is required if password is not set. HostKey string `hcl:"host_key,optional"` }
Click to show internal directories.
Click to hide internal directories.