Commit 0689aec3 authored by Amy Qualls's avatar Amy Qualls

Merge branch '211592-aqualls-apps-production' into 'master'

Explain how to override environment names

See merge request gitlab-org/gitlab!45952
parents 7b6e75e7 2d333a8c
...@@ -625,10 +625,13 @@ To install applications using GitLab CI/CD: ...@@ -625,10 +625,13 @@ To install applications using GitLab CI/CD:
- template: Managed-Cluster-Applications.gitlab-ci.yml - template: Managed-Cluster-Applications.gitlab-ci.yml
``` ```
The job provided by this template connects to the cluster using tools provided The job provided by this template connects to the `*` (default) cluster using tools provided
in a custom Docker image. It requires that you have a runner registered with the Docker, in a custom Docker image. It requires that you have a runner registered with the Docker,
Kubernetes, or Docker Machine executor. Kubernetes, or Docker Machine executor.
To install to a specific cluster, read
[Use the template with a custom environment](#use-the-template-with-a-custom-environment).
1. Add a `.gitlab/managed-apps/config.yaml` file to define which 1. Add a `.gitlab/managed-apps/config.yaml` file to define which
applications you would like to install. Define the `installed` key as applications you would like to install. Define the `installed` key as
`true` to install the application and `false` to uninstall the `true` to install the application and `false` to uninstall the
...@@ -664,6 +667,30 @@ apply: ...@@ -664,6 +667,30 @@ apply:
image: "registry.gitlab.com/gitlab-org/cluster-integration/cluster-applications:v0.34.1" image: "registry.gitlab.com/gitlab-org/cluster-integration/cluster-applications:v0.34.1"
``` ```
### Use the template with a custom environment
If you only want apps to be installed on a specific cluster, or if your cluster's
scope does not match `production`, you can override the environment name in your `.gitlab-ci.yml`
file:
```yaml
include:
- template: Managed-Cluster-Applications.gitlab-ci.yml
apply:
except:
variables:
- '$CI_JOB_NAME == "apply"'
.managed-apps:
extends: apply
example-install:
extends: .managed-apps
environment:
name: example/production
```
### Important notes ### Important notes
Note the following: Note the following:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment