diff options
author | Adam Niedzielski <adamsunday@gmail.com> | 2016-12-16 13:24:03 +0100 |
---|---|---|
committer | Adam Niedzielski <adamsunday@gmail.com> | 2016-12-16 13:24:03 +0100 |
commit | c945a0a7141ddf80e58e821178195cc48b8143f0 (patch) | |
tree | 9dcc3cdf890800b6c4a3ad006c04b0c1c2e6530a /doc/project_services | |
parent | 45bd2263698892b9de6eb7956e3085a61054f49f (diff) | |
download | gitlab-ce-c945a0a7141ddf80e58e821178195cc48b8143f0.tar.gz |
Pass variables from deployment project services to CI runnerexpose-deployment-variables
This commit introduces the concept of deployment variables - variables
that are collected from deployment services and passed to CI runner
during a deployment build.
Deployment services specify the variables by overriding
"predefined_variables" method.
This commit also configures variables for KubernetesService
Diffstat (limited to 'doc/project_services')
-rw-r--r-- | doc/project_services/kubernetes.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/project_services/kubernetes.md b/doc/project_services/kubernetes.md index cb577b608b4..fda364b864e 100644 --- a/doc/project_services/kubernetes.md +++ b/doc/project_services/kubernetes.md @@ -36,3 +36,14 @@ to create one. You can also view or create service tokens in the Fill in the service token and namespace according to the values you just got. If the API is using a self-signed TLS certificate, you'll also need to include the `ca.crt` contents as the `Custom CA bundle`. + +## Deployment variables + +The Kubernetes service exposes following +[deployment variables](../ci/variables/README.md#deployment-variables) in the +GitLab CI build environment: + +- `KUBE_URL` - equal to the API URL +- `KUBE_TOKEN` +- `KUBE_NAMESPACE` +- `KUBE_CA_PEM` - only if a custom CA bundle was specified |