1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-03 16:04:26 +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

@@ -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
}