mirror of
https://github.com/rancher/rke.git
synced 2025-09-03 16:04:26 +00:00
Vendor bump
This commit is contained in:
2
vendor/github.com/rancher/types/apis/management.cattle.io/v3/rke_types.go
generated
vendored
2
vendor/github.com/rancher/types/apis/management.cattle.io/v3/rke_types.go
generated
vendored
@@ -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 {
|
||||
|
@@ -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
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user