Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--.gitlab-ci.yml1
-rw-r--r--lib/task_helpers.rb2
-rw-r--r--nanoc.yaml13
4 files changed, 16 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 9158839d..692b8b1d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -9,6 +9,7 @@ content/ce
content/ee
content/omnibus
content/runner
+content/charts
content/debug
content/doc
content/docs
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f05d2000..1de06525 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -16,6 +16,7 @@ variables:
BRANCH_EE: 'master'
BRANCH_OMNIBUS: 'master'
BRANCH_RUNNER: 'master'
+ BRANCH_CHARTS: 'master'
#
# Check Ruby version and install gems
diff --git a/lib/task_helpers.rb b/lib/task_helpers.rb
index 941c3c96..8382feb4 100644
--- a/lib/task_helpers.rb
+++ b/lib/task_helpers.rb
@@ -1,6 +1,6 @@
require 'yaml'
-PRODUCTS = %W[ce ee omnibus runner debug].freeze
+PRODUCTS = %W[ce ee omnibus runner charts debug].freeze
VERSION_FORMAT = /^(?<major>\d{1,2})\.(?<minor>\d{1,2})$/
def config
diff --git a/nanoc.yaml b/nanoc.yaml
index e9802682..c3406e8a 100644
--- a/nanoc.yaml
+++ b/nanoc.yaml
@@ -173,6 +173,19 @@ products:
dest_dir: 'content/runner'
doc_dir: 'docs'
expose: true
+ charts:
+ full_name: 'GitLab Helm chart'
+ short_name: 'Chart'
+ slug: 'charts'
+ index_file: 'index.*'
+ img: '/assets/images/docs-gitlab.svg'
+ description: 'Deploy GitLab to Kubernetes using the GitLab Helm Charts.'
+ repo: 'https://gitlab.com/charts/gitlab.git'
+ dirs:
+ temp_dir: 'tmp/charts/'
+ dest_dir: 'content/charts'
+ doc_dir: 'doc'
+ expose: false
debug:
full_name: 'Debugging for GitLab Support'
short_name: 'Debug'