2018-11-09 15:35:22 -05:00
# Serverless
2019-01-31 17:33:56 -05:00
> Introduced in GitLab 11.5.
2019-01-31 14:57:53 -05:00
CAUTION: **Caution:**
Serverless is currently in [alpha ](https://about.gitlab.com/handbook/product/#alpha ).
2018-12-14 08:45:31 -05:00
2018-11-09 15:35:22 -05:00
Run serverless workloads on Kubernetes using [Knative ](https://cloud.google.com/knative/ ).
## Overview
2018-11-13 10:10:56 -05:00
Knative extends Kubernetes to provide a set of middleware components that are useful to build modern, source-centric, container-based applications. Knative brings some significant benefits out of the box through its main components:
2018-11-09 15:35:22 -05:00
2018-12-14 08:45:31 -05:00
- [Build ](https://github.com/knative/build ): Source-to-container build orchestration.
- [Eventing ](https://github.com/knative/eventing ): Management and delivery of events.
- [Serving ](https://github.com/knative/serving ): Request-driven compute that can scale to zero.
2018-11-09 15:35:22 -05:00
For more information on Knative, visit the [Knative docs repo ](https://github.com/knative/docs ).
2018-12-14 08:45:31 -05:00
With GitLab serverless, you can deploy both functions-as-a-service (FaaS) and serverless applications.
2018-11-09 15:35:22 -05:00
## Requirements
To run Knative on Gitlab, you will need:
2018-12-14 08:45:31 -05:00
1. **Kubernetes Cluster:** An RBAC-enabled Kubernetes cluster is required to deploy Knative.
The simplest way to get started is to add a cluster using [GitLab's GKE integration ](../index.md#adding-and-creating-a-new-gke-cluster-via-gitlab ).
1. **Helm Tiller:** Helm is a package manager for Kubernetes and is required to install
Knative.
1. **Domain Name:** Knative will provide its own load balancer using Istio. It will provide an
external IP address for all the applications served by Knative. You will be prompted to enter a
wildcard domain where your applications will be served. Configure your DNS server to use the
2018-11-09 15:35:22 -05:00
external IP address for that domain.
2018-12-20 11:40:20 -05:00
1. ** `.gitlab-ci.yml` :** GitLab uses [Kaniko ](https://github.com/GoogleContainerTools/kaniko )
2018-12-14 08:45:31 -05:00
to build the application and the [TriggerMesh CLI ](https://github.com/triggermesh/tm ) to simplify the
2018-11-12 15:58:32 -05:00
deployment of knative services and functions.
2019-01-04 13:49:34 -05:00
1. ** `serverless.yml` ** (for [functions only ](#deploying-functions )): When using serverless to deploy functions, the `serverless.yml` file
2018-12-14 08:45:31 -05:00
will contain the information for all the functions being hosted in the repository as well as a reference to the
runtime being used.
2018-12-19 16:33:47 -05:00
1. ** `Dockerfile` ** (for [applications only ](#deploying-serverless-applications ): Knative requires a `Dockerfile` in order to build your application. It should be included
2018-12-14 08:45:31 -05:00
at the root of your project's repo and expose port `8080` .
2018-11-09 15:35:22 -05:00
## Installing Knative via GitLab's Kubernetes integration
NOTE: **Note:**
2018-12-14 08:45:31 -05:00
The minimum recommended cluster size to run Knative is 3-nodes, 6 vCPUs, and 22.50 GB memory. **RBAC must be enabled.**
2018-11-09 15:35:22 -05:00
2018-12-14 08:45:31 -05:00
1. [Add a Kubernetes cluster ](../index.md ) and install Helm.
1. Once Helm has been successfully installed, on the Knative app section, enter the domain to be used with
2018-11-09 15:35:22 -05:00
your application and click "Install".
![install-knative ](img/install-knative.png )
2018-12-14 08:45:31 -05:00
1. After the Knative installation has finished, you can wait for the IP address to be displayed in the
**Knative IP Address** field or retrieve the Istio Ingress IP address by running the following command:
2018-11-09 15:35:22 -05:00
2018-12-14 08:45:31 -05:00
```bash
kubectl get svc --namespace=istio-system knative-ingressgateway -o jsonpath='{.status.loadBalancer.ingress[0].ip} '
```
2018-11-09 15:35:22 -05:00
2018-12-14 08:45:31 -05:00
Output:
2018-11-09 15:35:22 -05:00
2018-12-14 08:45:31 -05:00
```bash
35.161.143.124 my-machine-name:~ my-user$
```
2018-11-09 15:35:22 -05:00
2018-12-14 08:45:31 -05:00
1. The ingress is now available at this address and will route incoming requests to the proper service based on the DNS
name in the request. To support this, a wildcard DNS A record should be created for the desired domain name. For example,
if your Knative base domain is `knative.info` then you need to create an A record with domain `*.knative.info`
pointing the ip address of the ingress.
2018-11-09 15:35:22 -05:00
2018-11-12 15:58:32 -05:00
![dns entry ](img/dns-entry.png )
2018-11-09 15:35:22 -05:00
2018-12-14 08:45:31 -05:00
## Deploying Functions
> Introduced in GitLab 11.6.
2018-12-21 14:59:27 -05:00
Using functions is useful for dealing with independent
2018-12-14 08:45:31 -05:00
events without needing to maintain a complex unified infrastructure. This allows
you to focus on a single task that can be executed/scaled automatically and independently.
2018-12-21 14:59:27 -05:00
Currently the following [runtimes ](https://gitlab.com/triggermesh/runtimes ) are offered:
2018-12-19 16:33:47 -05:00
- node.js
- kaniko
2019-01-25 14:25:16 -05:00
You can find all the files referenced in this doc in the [functions example project ](https://gitlab.com/knative-examples/functions ).
2019-01-29 10:05:13 -05:00
Follow these steps to deploy a function using the Node.js runtime to your Knative instance:
2019-01-25 14:25:16 -05:00
1. Create a directory that will house the function. In this example we will create a directory called `echo` at the root of the project.
2019-01-31 14:57:53 -05:00
1. Create the file that will contain the function code. In this example, our file is called `echo.js` and is located inside the `echo` directory. If your project is:
- 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.
2018-12-14 08:45:31 -05:00
2018-12-20 11:40:20 -05:00
1. `.gitlab-ci.yml` : This template allows to define the stage, environment, and
2018-12-14 08:45:31 -05:00
image to be used for your functions. It must be included at the root of your repository:
```yaml
stages:
- deploy
functions:
stage: deploy
environment: test
2019-01-25 14:25:16 -05:00
image: gcr.io/triggermesh/tm:v0.0.9
2018-12-14 08:45:31 -05:00
script:
2019-01-29 10:05:13 -05:00
- tm -n "$KUBE_NAMESPACE" set registry-auth gitlab-registry --registry "$CI_REGISTRY" --username "$CI_REGISTRY_USER" --password "$CI_JOB_TOKEN" --push
- tm -n "$KUBE_NAMESPACE" set registry-auth gitlab-registry --registry "$CI_REGISTRY" --username "$CI_DEPLOY_USER" --password "$CI_DEPLOY_PASSWORD" --pull
- tm -n "$KUBE_NAMESPACE" deploy --wait
2019-01-25 14:25:16 -05:00
2018-12-14 08:45:31 -05:00
```
2018-12-19 16:33:47 -05:00
The `gitlab-ci.yml` template creates a `Deploy` stage with a `functions` job that invokes the `tm` CLI with the required parameters.
2019-01-04 13:49:34 -05:00
2. `serverless.yml` : This file contains the metadata for your functions,
2019-01-11 08:47:18 -05:00
such as name, runtime, and environment. It must be included at the root of your repository. The following is a sample `echo` function which shows the required structure for the file. You can find the relevant files for this project in the [functions example project ](https://gitlab.com/knative-examples/functions ).
2018-12-19 16:33:47 -05:00
2018-12-14 08:45:31 -05:00
```yaml
2018-12-19 16:33:47 -05:00
service: my-functions
2018-12-14 08:45:31 -05:00
description: "Deploying functions from GitLab using Knative"
provider:
name: triggermesh
registry-secret: gitlab-registry
environment:
FOO: BAR
functions:
2018-12-20 12:16:33 -05:00
echo:
2018-12-21 11:06:11 -05:00
handler: echo
runtime: https://gitlab.com/triggermesh/runtimes/raw/master/nodejs.yaml
description: "echo function using node.js runtime"
2018-12-14 08:45:31 -05:00
buildargs:
2019-01-22 22:39:02 -05:00
- DIRECTORY=echo
environment:
FUNCTION: echo
2018-12-14 08:45:31 -05:00
```
2018-12-21 11:06:11 -05:00
2019-01-31 17:33:56 -05:00
The `serverless.yml` file references both an `echo` directory (under `buildargs` ) and an `echo` file (under `handler` ),
which is a reference to `echo.js` in the [repository ](https://gitlab.com/knative-examples/functions ). Additionally, it
2019-01-25 14:25:16 -05:00
contains three sections with distinct parameters:
2018-12-19 16:33:47 -05:00
2018-12-19 16:55:26 -05:00
### `service`
2018-12-19 16:33:47 -05:00
2018-12-19 16:55:26 -05:00
| Parameter | Description |
|-----------|-------------|
2018-12-20 12:16:33 -05:00
| `service` | Name for the Knative service which will serve the function. |
| `description` | A short description of the `service` . |
2018-12-19 16:33:47 -05:00
2018-12-19 16:55:26 -05:00
### `provider`
2018-12-19 16:33:47 -05:00
2018-12-19 16:55:26 -05:00
| Parameter | Description |
|-----------|-------------|
2019-01-04 13:49:34 -05:00
| `name` | Indicates which provider is used to execute the `serverless.yml` file. In this case, the TriggerMesh `tm` CLI. |
2018-12-21 14:59:27 -05:00
| `registry-secret` | Indicates which registry will be used to store docker images. The sample function is using the GitLab Registry (`gitlab-registry`). A different registry host may be specified using `registry` key in the `provider` object. If changing the default, update the permission and the secret value on the `gitlab-ci.yml` file |
2018-12-20 12:16:33 -05:00
| `environment` | Includes the environment variables to be passed as part of function execution for **all** functions in the file, where `FOO` is the variable name and `BAR` are he variable contents. You may replace this with you own variables. |
2018-12-19 16:33:47 -05:00
2018-12-19 16:55:26 -05:00
### `functions`
2019-01-04 13:49:34 -05:00
In the `serverless.yml` example above, the function name is `echo` and the subsequent lines contain the function attributes.
2018-12-20 12:16:33 -05:00
2018-12-19 16:55:26 -05:00
| Parameter | Description |
|-----------|-------------|
2018-12-20 12:16:33 -05:00
| `handler` | The function's file name. In the example above, both the function name and the handler are the same. |
| `runtime` | The runtime to be used to execute the function. |
| `description` | A short description of the function. |
| `buildargs` | Pointer to the function file in the repo. In the sample the function is located in the `echo` directory. |
| `environment` | Sets an environment variable for the specific function only. |
2018-12-19 16:33:47 -05:00
2019-01-31 17:33:56 -05:00
After the `gitlab-ci.yml` template has been added and the `serverless.yml` file has been
2019-01-25 14:25:16 -05:00
created, pushing a commit to your project will result in a
2018-12-14 08:45:31 -05:00
CI pipeline being executed which will deploy each function as a Knative service.
Once the deploy stage has finished, additional details for the function will
appear under **Operations > Serverless** .
![serverless page ](img/serverless-page.png )
2018-12-17 02:31:38 -05:00
This page contains all functions available for the project, the description for
accessing the function, and, if available, the function's runtime information.
2018-12-14 08:45:31 -05:00
The details are derived from the Knative installation inside each of the project's
Kubernetes cluster.
The function details can be retrieved directly from Knative on the cluster:
```bash
kubectl -n "$KUBE_NAMESPACE" get services.serving.knative.dev
```
2018-12-20 12:16:33 -05:00
The sample function can now be triggered from any HTTP client using a simple `POST` call.
2018-12-19 16:33:47 -05:00
![function exection ](img/function-execution.png )
2018-12-14 08:45:31 -05:00
## Deploying Serverless applications
> Introduced in GitLab 11.5.
NOTE: **Note:**
You can reference the sample [Knative Ruby App ](https://gitlab.com/knative-examples/knative-ruby-app ) to get started.
Add the following `.gitlab-ci.yml` to the root of your repository
(you may skip this step if using the sample [Knative Ruby App ](https://gitlab.com/knative-examples/knative-ruby-app ) mentioned above):
```yaml
stages:
- build
- deploy
build:
stage: build
image:
name: gcr.io/kaniko-project/executor:debug
entrypoint: [""]
only:
- master
script:
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
- /kaniko/executor --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile --destination $CI_REGISTRY_IMAGE
deploy:
stage: deploy
image: gcr.io/triggermesh/tm@sha256:e3ee74db94d215bd297738d93577481f3e4db38013326c90d57f873df7ab41d5
only:
- master
environment: production
script:
- echo "$CI_REGISTRY_IMAGE"
- tm -n "$KUBE_NAMESPACE" --config "$KUBECONFIG" deploy service "$CI_PROJECT_NAME" --from-image "$CI_REGISTRY_IMAGE" --wait
```
2019-01-25 14:25:16 -05:00
### Deploy the application with Knative
2018-11-09 15:35:22 -05:00
2018-12-20 12:28:49 -05:00
With all the pieces in place, the next time a CI pipeline runs, the Knative application will be deployed. Navigate to
**CI/CD > Pipelines** and click the most recent pipeline.
2018-11-09 16:48:46 -05:00
2019-01-25 14:25:16 -05:00
### Obtain the URL for the Knative deployment
2018-11-09 16:48:46 -05:00
2019-01-31 17:33:56 -05:00
Go to the **Operations > Serverless** page to find the URL for your deployment in the **Domain** column.
2019-01-25 15:42:14 -05:00
![app domain ](img/app-domain.png )
Alternatively, use the CI/CD deployment job output to obtain the deployment URL. Once all the stages of the pipeline finish, click the **deploy** stage.
2018-11-09 16:48:46 -05:00
![deploy stage ](img/deploy-stage.png )
The output will look like this:
```bash
Running with gitlab-runner 11.5.0~beta.844.g96d88322 (96d88322)
on docker-auto-scale 72989761
Using Docker executor with image gcr.io/triggermesh/tm@sha256:e3ee74db94d215bd297738d93577481f3e4db38013326c90d57f873df7ab41d5 ...
Pulling docker image gcr.io/triggermesh/tm@sha256:e3ee74db94d215bd297738d93577481f3e4db38013326c90d57f873df7ab41d5 ...
Using docker image sha256:6b3f6590a9b30bd7aafb9573f047d930c70066e43955b4beb18a1eee175f6de1 for gcr.io/triggermesh/tm@sha256:e3ee74db94d215bd297738d93577481f3e4db38013326c90d57f873df7ab41d5 ...
Running on runner-72989761-project-4342902-concurrent-0 via runner-72989761-stg-srm-1541795796-27929c96...
Cloning repository...
Cloning into '/builds/danielgruesso/knative'...
Checking out 8671ad20 as master...
Skipping Git submodules setup
$ echo "$CI_REGISTRY_IMAGE"
registry.staging.gitlab.com/danielgruesso/knative
$ tm -n "$KUBE_NAMESPACE" --config "$KUBECONFIG" deploy service "$CI_PROJECT_NAME" --from-image "$CI_REGISTRY_IMAGE" --wait
Deployment started. Run "tm -n knative-4342902 describe service knative" to see the details
Waiting for ready state.......
Service domain: knative.knative-4342902.knative.info
Job succeeded
```
2018-12-14 08:45:31 -05:00
The second to last line, labeled **Service domain** contains the URL for the deployment. Copy and paste the domain into your
2018-11-09 16:48:46 -05:00
browser to see the app live.
2018-12-14 08:45:31 -05:00
![knative app ](img/knative-app.png )