深入浅出 Serverless 第二章

Section A

在上面一章,我介绍了 Serverless 以及相关的项目 Project Fn 如何使用,不巧的是,过了一段时间后 brew upgrade fn 之后就不能兼容之前的调用方式了。

我目前版本是下面这个,更新之前最好删除旧的 Docker Images 后再运行 fn start

Client version is latest version: 0.5.76
Server version:  0.3.702

我先介绍一些常用的命令,具体可以参考 fn help

# context 很有用,之后会用到,默认是 default
fn list context 
fn create context
fn update context
# 无论本地或者远程都是需要 create app 的,其实相当于一个 resource name,在url中也是这么体现的
fn create app  
# 部署本地或者远程
fn deploy --app  --local # 本地部署
fn deploy --app  # 远程部署

Section B

Let the hacking begin.

Step 1: Install the fn command line tool

This is a good place to start

Step 2: Init a example project, build and run

mkdir serverless && cd serverless
fn init --runtime node --trigger http node-hello
cd node-hello
fn create app example # 创建一个 名叫 example 的 app
fn deploy --app example --local # 在本地 deploy node-hello 到 example 这个 app 里面
fn invoke example node-hello # fn iv example node-hello iv is a short version invoke
curl -XPOST http://localhost:8080/t/example/node-hello # 这个和的那个方式实际上是一样的

实际上到这里,就已经差不多了,能够在本地运行起来一个 Serverless 的 function。

Section C

Step 1 Setup a remote server

参考如何在一台电脑上安装 Docker 的环境。
DigitalOcean
使用 curl -LSs https://raw.githubusercontent.com/fnproject/cli/master/install | sh 安装 fn cli 之后 fn start -d 就完事了。

稍等,还需要你 docker login

Step 2 Put the fn server behind a reverse proxy

Literally, any reverse proxy will work. 我这里是用的 Nginx

upstream fn_server {
         server 127.0.0.1:8080;
}
server {
       listen 80;
       server_name  fn.evilbanana.cn;
       keepalive_timeout 64;
       autoindex on;
       location / {
            root   html;
            index  index.html index.htm;
            proxy_redirect off;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header X-Forwarded-Proto $scheme;
            proxy_set_header Host $http_host;
            proxy_set_header X-NginX-Proxy true;
            proxy_set_header Connection "";
            proxy_http_version 1.1;
            proxy_pass http://fn_server;
        }
}

Step 3 Ship it

docker login
fn create context  --provider default --api-url http://fn.evilbanana.cn --registry pinkbanana
fn use context  
fn deploy --app example
# 过了一会儿之后
image.png

Step 4 Run the UI

这里直接怼进命令行就行了,不要有多余的操作,谢谢。

docker run --rm -d --link fnserver:api -p 4000:4000 -e "FN_API_URL=http://api:8080" fnproject/ui

这个写在 Nginx 的配置里面去

upstream fn_ui_server {
         server 127.0.0.1:4000;
}
server {
       listen 80;
       server_name  fn-ui.evilbanana.cn;
       keepalive_timeout 64;
       autoindex on;
       location / {
            root   html;
            index  index.html index.htm;
            proxy_redirect off;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header X-Forwarded-Proto $scheme;
            proxy_set_header Host $http_host;
            proxy_set_header X-NginX-Proxy true;
            proxy_set_header Connection "";
            proxy_http_version 1.1;
            proxy_pass http://fn_ui_server;
        }
}

Section D

Serverless 是个好东西,可以让你快速的写一个 Production ready 的小函数,然后你可以通过各种方式去组装这些小函数,然后变成一个独立的应用。

但是实际上,还是需要一些基础的设施来保证安全性等一些问题的。以后在详细谈论咯。

你可能感兴趣的:(深入浅出 Serverless 第二章)