include the tiller_ssl.md doc in the /using_helm menu

This commit is contained in:
Ronan Flynn-Curran 2018-02-15 17:01:19 +00:00
parent 3cf6b72253
commit 1b8dfa5f99
2 changed files with 10 additions and 1 deletions

View File

@ -65,11 +65,17 @@ defaultContentLanguage = "en"
identifier = "role-based-access-control"
weight = 17
parent = "using_helm"
[[menu.main]]
name = "TLS/SSL for Helm and Tiller"
url = "using-ssl-between-helm-and-tiller"
identifier = "using-ssl-between-helm-and-tiller"
weight = 18
parent = "using_helm"
[[menu.main]]
name = "Securing Helm"
url = "securing-your-helm-installation"
identifier = "securing-your-helm-installation"
weight = 18
weight = 19
parent = "using_helm"
[[menu.main]]

View File

@ -139,6 +139,7 @@ gulp.task('clone', function() {
gulp.src('source/docs/using_helm.md'),
gulp.src('source/docs/plugins.md'),
gulp.src('source/docs/rbac.md'),
gulp.src('source/docs/tiller_ssl.md'),
gulp.src('source/docs/securing_installation.md')
)
.pipe(concat('index.md'))
@ -258,6 +259,8 @@ gulp.task('clone', function() {
.pipe(replace('charts_tips_and_tricks', 'chart-development-tips-and-tricks'))
// update security anchor link
.pipe(replace('securing_installation', 'securing-your-helm-installation'))
// update tiller ssl link
.pipe(replace('#tiller_ssl', '#using-ssl-between-helm-and-tiller'))
.pipe(gulp.dest('source/docs/'))
});