From b5b5acf02058ce38d61b47bcd8749f3c33266393 Mon Sep 17 00:00:00 2001 From: David Lewis Date: Thu, 22 Mar 2018 00:04:41 -0700 Subject: [PATCH] Add Sans field of additional hosts/ips for pki --- apis/management.cattle.io/v3/rke_types.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apis/management.cattle.io/v3/rke_types.go b/apis/management.cattle.io/v3/rke_types.go index 3370cda2..bbe448a1 100644 --- a/apis/management.cattle.io/v3/rke_types.go +++ b/apis/management.cattle.io/v3/rke_types.go @@ -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 {