1
0
mirror of https://github.com/rancher/rke.git synced 2025-06-24 06:27:22 +00:00
rke/addons/kubedns.go

9 lines
214 B
Go
Raw Normal View History

package addons
import "github.com/rancher/rke/templates"
2018-07-22 09:36:21 +00:00
func GetKubeDNSManifest(KubeDNSConfig interface{}) (string, error) {
2018-07-22 09:36:21 +00:00
return templates.CompileTemplateFromMap(templates.KubeDNSTemplate, KubeDNSConfig)
}