Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
13652822
Commit
13652822
authored
Feb 22, 2019
by
Daniel Gruesso
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update steps for clarity
parent
7e37b4e4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
6 deletions
+14
-6
doc/user/project/clusters/serverless/index.md
doc/user/project/clusters/serverless/index.md
+14
-6
No files found.
doc/user/project/clusters/serverless/index.md
View file @
13652822
...
@@ -25,8 +25,12 @@ To run Knative on Gitlab, you will need:
...
@@ -25,8 +25,12 @@ To run Knative on Gitlab, you will need:
1.
**Kubernetes Cluster:**
An RBAC-enabled Kubernetes cluster is required to deploy Knative.
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
)
.
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
)
.
Minimum recommended cluster size to run Knative is 3-nodes, 6 vCPUs, and 22.50 GB memory.
1.
**Helm Tiller:**
Helm is a package manager for Kubernetes and is required to install
1.
**Helm Tiller:**
Helm is a package manager for Kubernetes and is required to install
Knative.
Knative.
1.
**GitLab Runner:**
A runner is required to run the CI jobs that will deploy serverless
applications or functions onto your cluster. You can install the GitLab Runner
onto the existing kubernetes cluster. See
[
Installing Applications
](
../index.md#installing-applications
)
for more information.
1.
**Domain Name:**
Knative will provide its own load balancer using Istio. It will provide an
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
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
wildcard domain where your applications will be served. Configure your DNS server to use the
...
@@ -45,9 +49,9 @@ To run Knative on Gitlab, you will need:
...
@@ -45,9 +49,9 @@ To run Knative on Gitlab, you will need:
NOTE:
**Note:**
NOTE:
**Note:**
The minimum recommended cluster size to run Knative is 3-nodes, 6 vCPUs, and 22.50 GB memory.
**RBAC must be enabled.**
The minimum recommended cluster size to run Knative is 3-nodes, 6 vCPUs, and 22.50 GB memory.
**RBAC must be enabled.**
1.
[
Add a Kubernetes cluster
](
../index.md
)
and
install Helm
.
1.
[
Add a Kubernetes cluster
](
../index.md
)
and
[
install Helm
](
../index.md#installing-applications
)
.
1.
Once Helm has been successfully installed,
on the Knative app section, e
nter the domain to be used with
1.
Once Helm has been successfully installed,
scroll down to the Knative app section. E
nter the domain to be used with
your application and click "Install".
your application
/functions (ie.
`example.com`
)
and click "Install".
![install-knative](img/install-knative.png)
![install-knative](img/install-knative.png)
...
@@ -66,11 +70,15 @@ The minimum recommended cluster size to run Knative is 3-nodes, 6 vCPUs, and 22.
...
@@ -66,11 +70,15 @@ The minimum recommended cluster size to run Knative is 3-nodes, 6 vCPUs, and 22.
1.
The ingress is now available at this address and will route incoming requests to the proper service based on the DNS
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,
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
`
if your Knative base domain is
`
example.com`
then you need to create an A record with domain
`*.example.com
`
pointing the ip address of the ingress.
pointing the ip address of the ingress.
![dns entry](img/dns-entry.png)
![dns entry](img/dns-entry.png)
NOTE:
**Note:**
You can deploy either
[
functions
](
#deploying-functions
)
or
[
serverless applications
](
#deploying-serverless-applications
)
on a given project but not both. The current implementation makes use of a
`serverless.yml`
file to signal a FaaS project.
## Deploying Functions
## Deploying Functions
> Introduced in GitLab 11.6.
> Introduced in GitLab 11.6.
...
@@ -84,7 +92,7 @@ Currently the following [runtimes](https://gitlab.com/triggermesh/runtimes) are
...
@@ -84,7 +92,7 @@ Currently the following [runtimes](https://gitlab.com/triggermesh/runtimes) are
-
node.js
-
node.js
-
kaniko
-
kaniko
You can find a
ll the files referenced in this doc in the
[
functions example project
](
https://gitlab.com/knative-examples/functions
)
.
You can find a
nd import all the files referenced in this doc in the
**[functions example project](https://gitlab.com/knative-examples/functions)**
.
Follow these steps to deploy a function using the Node.js runtime to your Knative instance:
Follow these steps to deploy a function using the Node.js runtime to your Knative instance:
...
@@ -197,7 +205,7 @@ The sample function can now be triggered from any HTTP client using a simple `PO
...
@@ -197,7 +205,7 @@ The sample function can now be triggered from any HTTP client using a simple `PO
> Introduced in GitLab 11.5.
> Introduced in GitLab 11.5.
NOTE:
**Note:**
NOTE:
**Note:**
You can reference the sample
[
Knative Ruby App
](
https://gitlab.com/knative-examples/knative-ruby-app
)
to get started.
You can reference
and import
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
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):
(you may skip this step if using the sample
[
Knative Ruby App
](
https://gitlab.com/knative-examples/knative-ruby-app
)
mentioned above):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment