1
0
mirror of https://github.com/rancher/types.git synced 2025-09-17 07:19:17 +00:00

Change ExtraArgs type to map[string]string at IngressConfig rke types

This commit is contained in:
rawmind0
2018-04-16 23:49:52 +02:00
committed by Darren Shepherd
parent 85220a542b
commit 2748301102

View File

@@ -251,7 +251,7 @@ type IngressConfig struct {
// NodeSelector key pair
NodeSelector map[string]string `yaml:"node_selector" json:"nodeSelector,omitempty"`
// Ingress controller extra arguments
ExtraArgs []string `yaml:"extra_args" json:"extraArgs,omitempty"`
ExtraArgs map[string]string `yaml:"extra_args" json:"extraArgs,omitempty"`
}
type RKEPlan struct {