fix(tls_dir): include desired dir

This commit is contained in:
Mikaël Cluseau
2019-01-22 23:07:48 +13:00
parent 92b4b1010c
commit bf26fce534
2 changed files with 14 additions and 6 deletions

View File

@ -201,7 +201,7 @@ func (ctx *renderContext) templateFuncs() map[string]interface{} {
return
},
"tls_dir": func(cluster, caName, name, profile, label, reqJson string) (s string, err error) {
"tls_dir": func(dir, cluster, caName, name, profile, label, reqJson string) (s string, err error) {
ca, err := secretData.CA(cluster, caName)
if err != nil {
return
@ -212,8 +212,6 @@ func (ctx *renderContext) templateFuncs() map[string]interface{} {
return
}
dir := "/etc/tls/" + name
return asYaml([]config.FileDef{
{
Path: path.Join(dir, "ca.crt"),