diff --git a/docs.helm.sh/config.toml b/docs.helm.sh/config.toml index c1a0774c..4f4b7a70 100644 --- a/docs.helm.sh/config.toml +++ b/docs.helm.sh/config.toml @@ -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]] diff --git a/docs.helm.sh/gulpfile.js b/docs.helm.sh/gulpfile.js index e969670e..6d8d943c 100644 --- a/docs.helm.sh/gulpfile.js +++ b/docs.helm.sh/gulpfile.js @@ -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/')) });