summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Read <eread@gitlab.com>2018-12-03 22:10:35 +0000
committerEvan Read <eread@gitlab.com>2018-12-03 22:10:35 +0000
commite0143e60c703d6c042479db4039c3f7ec440a383 (patch)
treef12e528ab892786737b44db50b29438284a39b1f
parentb0dc4425dd1a4abac07413ed8290b7dc651914d1 (diff)
parent56017a50218629d49f0c7cb0623b2bd0eb929c92 (diff)
downloadgitlab-ce-e0143e60c703d6c042479db4039c3f7ec440a383.tar.gz
Merge branch 'docs-auto-devops-migration-improve' into 'master'
Docs : Auto Devops migrate: add two release info See merge request gitlab-org/gitlab-ce!23500
-rw-r--r--doc/topics/autodevops/index.md13
1 files changed, 11 insertions, 2 deletions
diff --git a/doc/topics/autodevops/index.md b/doc/topics/autodevops/index.md
index 6bb2e236dc1..a8b088395aa 100644
--- a/doc/topics/autodevops/index.md
+++ b/doc/topics/autodevops/index.md
@@ -479,14 +479,23 @@ no longer be valid as soon as the deployment job finishes. This means that
Kubernetes can run the application, but in case it should be restarted or
executed somewhere else, it cannot be accessed again.
+#### Migrations
+
> [Introduced][ce-21955] in GitLab 11.4
Database initialization and migrations for PostgreSQL can be configured to run
within the application pod by setting the project variables `DB_INITIALIZE` and
`DB_MIGRATE` respectively.
-If present, `DB_INITIALIZE` will be run as a shell command within an application pod as a helm
-post-install hook. Note that this means that if any deploy succeeds,
+If present, `DB_INITIALIZE` will be run as a shell command within an
+application pod as a helm post-install hook. As some applications will
+not run without a successful database initialization step, GitLab will
+deploy the first release without the application deployment and only the
+database initialization step. After the database initialization completes,
+GitLab will deploy a second release with the application deployment as
+normal.
+
+Note that a post-install hook means that if any deploy succeeds,
`DB_INITIALIZE` will not be processed thereafter.
If present, `DB_MIGRATE` will be run as a shell command within an application pod as