mirror of
https://github.com/rancher/rke.git
synced 2025-06-22 21:47:12 +00:00
9 lines
224 B
Go
9 lines
224 B
Go
package addons
|
|
|
|
import "github.com/rancher/rke/templates"
|
|
|
|
func GetNginxIngressManifest(IngressConfig interface{}) (string, error) {
|
|
|
|
return templates.CompileTemplateFromMap(templates.NginxIngressTemplate, IngressConfig)
|
|
}
|