mirror of
https://github.com/rancher/rke.git
synced 2025-09-05 00:40:10 +00:00
Vendor bump
This commit is contained in:
@@ -24,4 +24,4 @@ github.com/coreos/go-semver e214231b295a8ea9479f11b70b35d5acf3556d9
|
|||||||
github.com/ugorji/go/codec ccfe18359b55b97855cee1d3f74e5efbda4869dc
|
github.com/ugorji/go/codec ccfe18359b55b97855cee1d3f74e5efbda4869dc
|
||||||
|
|
||||||
github.com/rancher/norman 151aa66e3e99de7e0d195e2d5ca96b1f95544555
|
github.com/rancher/norman 151aa66e3e99de7e0d195e2d5ca96b1f95544555
|
||||||
github.com/rancher/types a9178824cd518e1ac2bd8efd03751437ddc1c1fe
|
github.com/rancher/types c8a2bab012799603994eba13f59098c368350b27
|
||||||
|
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"`
|
Strategy string `yaml:"strategy" json:"strategy,omitempty"`
|
||||||
// Authentication options
|
// Authentication options
|
||||||
Options map[string]string `yaml:"options" json:"options,omitempty"`
|
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 {
|
type AuthzConfig struct {
|
||||||
|
@@ -1085,6 +1085,11 @@ func (in *AuthnConfig) DeepCopyInto(out *AuthnConfig) {
|
|||||||
(*out)[key] = val
|
(*out)[key] = val
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if in.SANs != nil {
|
||||||
|
in, out := &in.SANs, &out.SANs
|
||||||
|
*out = make([]string, len(*in))
|
||||||
|
copy(*out, *in)
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user