1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-05 08:50:13 +00:00

Vendor bump

This commit is contained in:
David Lewis
2018-03-23 11:47:25 -07:00
parent 0efc4fc845
commit 0dab83f11b
3 changed files with 8 additions and 1 deletions

View File

@@ -24,4 +24,4 @@ github.com/coreos/go-semver e214231b295a8ea9479f11b70b35d5acf3556d9
github.com/ugorji/go/codec ccfe18359b55b97855cee1d3f74e5efbda4869dc
github.com/rancher/norman 151aa66e3e99de7e0d195e2d5ca96b1f95544555
github.com/rancher/types a9178824cd518e1ac2bd8efd03751437ddc1c1fe
github.com/rancher/types c8a2bab012799603994eba13f59098c368350b27

View File

@@ -224,6 +224,8 @@ type AuthnConfig struct {
Strategy string `yaml:"strategy" json:"strategy,omitempty"`
// Authentication options
Options map[string]string `yaml:"options" json:"options,omitempty"`
// List of additional hostnames and IPs to include in the api server PKI cert
SANs []string `yaml:"sans" json:"sans,omitempty"`
}
type AuthzConfig struct {

View File

@@ -1085,6 +1085,11 @@ func (in *AuthnConfig) DeepCopyInto(out *AuthnConfig) {
(*out)[key] = val
}
}
if in.SANs != nil {
in, out := &in.SANs, &out.SANs
*out = make([]string, len(*in))
copy(*out, *in)
}
return
}