1
0
mirror of https://github.com/rancher/rke.git synced 2025-06-23 05:57:13 +00:00
rke/addons/ingress.go

9 lines
224 B
Go
Raw Normal View History

package addons
import "github.com/rancher/rke/templates"
func GetNginxIngressManifest(IngressConfig interface{}) (string, error) {
return templates.CompileTemplateFromMap(templates.NginxIngressTemplate, IngressConfig)
}