host templates in localconfig
This commit is contained in:
parent
8498a10279
commit
ccdbf2e2a5
@ -2,7 +2,7 @@ package localconfig
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
yaml "gopkg.in/yaml.v2"
|
yaml "gopkg.in/yaml.v2"
|
||||||
@ -11,6 +11,7 @@ import (
|
|||||||
type Config struct {
|
type Config struct {
|
||||||
Clusters []*Cluster
|
Clusters []*Cluster
|
||||||
Hosts []*Host
|
Hosts []*Host
|
||||||
|
HostTemplates []*Host
|
||||||
SSLConfig string
|
SSLConfig string
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -29,7 +30,7 @@ func FromBytes(data []byte) (*Config, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func FromFile(path string) (*Config, error) {
|
func FromFile(path string) (*Config, error) {
|
||||||
ba, err := ioutil.ReadFile(path)
|
ba, err := os.ReadFile(path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user