Commit 21a1f097 authored by Grzegorz Bizon's avatar Grzegorz Bizon Committed by Lin Jen-Shin

Copy-edit new serverless CI/CD configuration docs

parent b491e3f9
...@@ -114,8 +114,8 @@ Follow these steps to deploy a function using the Node.js runtime to your Knativ ...@@ -114,8 +114,8 @@ Follow these steps to deploy a function using the Node.js runtime to your Knativ
- Public, continue to the next step. - Public, continue to the next step.
- Private, you will need to [create a GitLab deploy token](../../deploy_tokens/index.md#creating-a-deploy-token) with `gitlab-deploy-token` as the name and the `read_registry` scope. - Private, you will need to [create a GitLab deploy token](../../deploy_tokens/index.md#creating-a-deploy-token) with `gitlab-deploy-token` as the name and the `read_registry` scope.
1. `.gitlab-ci.yml`: this configuration allows to define the environment to be 1. `.gitlab-ci.yml`: this defines a pipeline used to deploy your functions.
used to deploy your functions. It must be included at the root of your repository: It must be included at the root of your repository:
```yaml ```yaml
include: include:
...@@ -126,8 +126,14 @@ Follow these steps to deploy a function using the Node.js runtime to your Knativ ...@@ -126,8 +126,14 @@ Follow these steps to deploy a function using the Node.js runtime to your Knativ
environment: production environment: production
``` ```
This `.gitlab-ci.yml` creates a `Deploy` stage with the `functions` job This `.gitlab-ci.yml` creates a `functions` job that invokes some
that invokes some predefined commands to deploy your functions to Knative. predefined commands to deploy your functions to Knative.
`Serverless.gitlab-ci.yml` is a template that allows customization.
You can either import it with `include` parameter and use `extends` to
customize your jobs, or you can inline entire template by choosing it
from "Apply a template" dropdown when editing `.gitlab-ci.yml` file through
the User Interface.
2. `serverless.yml`: this file contains the metadata for your functions, 2. `serverless.yml`: this file contains the metadata for your functions,
such as name, runtime, and environment. such as name, runtime, and environment.
...@@ -246,9 +252,10 @@ deploy: ...@@ -246,9 +252,10 @@ deploy:
``` ```
`Serverless.gitlab-ci.yml` is a template that allows customization. `Serverless.gitlab-ci.yml` is a template that allows customization.
You can either import it with `include:` directive and use `extends` to You can either import it with `include` parameter and use `extends` to
customize your jobs, or you can inline entire template by choosing it customize your jobs, or you can inline entire template by choosing it
from "Templates" dropdown. (TODO: link to docs about templates). from "Apply a template" dropdown when editing `.gitlab-ci.yml` file through
the User Interface.
### Deploy the application with Knative ### Deploy the application with Knative
......
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