fn quick start

本文涉及的产品
容器镜像服务 ACR,镜像仓库100个 不限时长
容器服务 Serverless 版 ACK Serverless,952元额度 多规格
容器服务 Serverless 版 ACK Serverless,317元额度 多规格
简介:

fn quick start

Fn is an event-driven, open source, functions-as-a-service compute platform that you can run anywhere. Some of it's key features:

  • Write once

    • Any language
    • AWS Lambda format supported
  • Run anywhere

    • Public, private and hybrid cloud
    • Import functions directly from Lambda and run them wherever you want
  • Easy to use for developers
  • Easy to manage for operators
  • Written in Go
  • Simple yet powerful extensibility

1.安装fn

brew install fn

2. 升级docker

docker version

Client:
 Version:      17.09.0-ce
 API version:  1.32
 Go version:   go1.8.3
 Git commit:   afdb6d4
 Built:        Tue Sep 26 22:40:09 2017
 OS/Arch:      darwin/amd64

Server:
 Version:      17.09.0-ce
 API version:  1.32 (minimum version 1.12)
 Go version:   go1.8.3
 Git commit:   afdb6d4
 Built:        Tue Sep 26 22:45:38 2017
 OS/Arch:      linux/amd64
 Experimental: false

3. 登录docker hub

docker login

Username (feuyeux@gmail.com): feuyeux
Password:
Login Succeeded

4. 启动fn服务

 fn start
        ______
       / ____/___
      / /_  / __ \
     / __/ / / / /
    /_/   /_/ /_/
        v0.3.141

5. 撰写函数

mkdir hello
cd hello
vim func.go
package main

import (
  "fmt"
)

func main() {
  fmt.Println("Hello from Fn!")
}

6. 创建应用

fn init

        ______
       / ____/___
      / /_  / __ \
     / __/ / / / /
    /_/   /_/ /_/

Found go function, assuming go runtime.
func.yaml created.

7. 打包应用

fn run                                                                    

Building image feuyeux/hello:0.0.1
Sending build context to Docker daemon  4.096kB
Step 1/8 : FROM funcy/go:dev as build-stage
 ---> 4cccab7fc828
Step 2/8 : WORKDIR /function
 ---> Using cache
 ---> ba44eaaa14da
Step 3/8 : ADD . /go/src/func/
 ---> c6480ae51b4f
Step 4/8 : RUN cd /go/src/func/ && go build -o func
 ---> Running in ac0d2269aebb
 ---> 7ed8e8c8c7ba
Removing intermediate container ac0d2269aebb
Step 5/8 : FROM funcy/go
 ---> 573e8a7edc05
Step 6/8 : WORKDIR /function
 ---> Using cache
 ---> 00809f3fee14
Step 7/8 : COPY --from=build-stage /go/src/func/func /function/
 ---> Using cache
 ---> ee31e804adca
Step 8/8 : ENTRYPOINT ./func
 ---> Using cache
 ---> 5f32eff9e328
Successfully built 5f32eff9e328
Successfully tagged feuyeux/hello:0.0.1
Hello from Fn!

8. 部署应用

fn deploy --app myapp

Deploying hello to app: myapp at path: /hello
Bumped to version 0.0.2
Building image feuyeux/hello:0.0.2
Sending build context to Docker daemon  4.096kB
Step 1/8 : FROM funcy/go:dev as build-stage
 ---> 4cccab7fc828
Step 2/8 : WORKDIR /function
 ---> Using cache
 ---> ba44eaaa14da
Step 3/8 : ADD . /go/src/func/
 ---> 88ec5ca237e5
Step 4/8 : RUN cd /go/src/func/ && go build -o func
 ---> Running in e2247c834266
 ---> c787e9416655
Removing intermediate container e2247c834266
Step 5/8 : FROM funcy/go
 ---> 573e8a7edc05
Step 6/8 : WORKDIR /function
 ---> Using cache
 ---> 00809f3fee14
Step 7/8 : COPY --from=build-stage /go/src/func/func /function/
 ---> Using cache
 ---> ee31e804adca
Step 8/8 : ENTRYPOINT ./func
 ---> Using cache
 ---> 5f32eff9e328
Successfully built 5f32eff9e328
Successfully tagged feuyeux/hello:0.0.2
Pushing feuyeux/hello:0.0.2 to docker registry...The push refers to a repository [docker.io/feuyeux/hello]
b34434bfd239: Pushed
3d098239d19c: Pushed
e9474866f7d4: Pushed
c0e205d473e9: Pushed
0.0.2: digest: sha256:b88635814d7935e7a505133b167c3937663fa73344579790dea60877c13f5491 size: 1154
Updating route /hello using image feuyeux/hello:0.0.2...

9. 测试应用

curl http://localhost:8080/r/myapp/hello
Hello from Fn!
fn call myapp /hello
Hello from Fn!
目录
相关文章
|
4月前
|
弹性计算 监控 Serverless
函数计算操作报错合集之调用不成功,报错:Function instance health check failed on port 9000 in 120.7 seconds.该怎么办
在使用函数计算服务(如阿里云函数计算)时,用户可能会遇到多种错误场景。以下是一些常见的操作报错及其可能的原因和解决方法,包括但不限于:1. 函数部署失败、2. 函数执行超时、3. 资源不足错误、4. 权限与访问错误、5. 依赖问题、6. 网络配置错误、7. 触发器配置错误、8. 日志与监控问题。
|
2月前
|
Java C++
【Azure Function】开启Azure Function输出详细Debug日志 ( --verbose)
【Azure Function】开启Azure Function输出详细Debug日志 ( --verbose)
|
5月前
|
弹性计算 Dubbo Serverless
Serverless 应用引擎操作报错合集之阿里函数计算中配置完fc,出现‘Function instance exited unexpectedly(code 1, message:operation not permitted) with start command 'npm run start '. 报错如何解决
Serverless 应用引擎(SAE)是阿里云提供的Serverless PaaS平台,支持Spring Cloud、Dubbo、HSF等主流微服务框架,简化应用的部署、运维和弹性伸缩。在使用SAE过程中,可能会遇到各种操作报错。以下是一些常见的报错情况及其可能的原因和解决方法。
173 5
|
10月前
|
编译器 Serverless Go
Fail to start function, Code:1
Fail to start function, Code:1
60 2
End Sub 和 Exit Sub 的区别
End Sub 和 Exit Sub 的区别
138 0
End Sub 和 Exit Sub 的区别
|
人工智能 达摩院 API
阿里云灵积模型服务Quick Start
DashScope灵积模型服务以模型为中心,致力于面向AI应用开发者提供品类丰富、数量众多的模型选择,并为其提供开箱即用、能力卓越、成本经济的模型服务API。DashScope灵积模型服务依托达摩院等机构的优质模型,在阿里云基础设施之上构建。灵积服务4.11号刚刚开通公测,目前提供Paraformer语音识别API能力,后续通义千问也将通过该服务对外提供API能力。本文演示如何快速通过Python SDK接入服务。
70929 0
阿里云灵积模型服务Quick Start
|
JavaScript
click group list in left launchpad
click group list in left launchpad
129 0
click group list in left launchpad
|
缓存 NoSQL Redis
BITCOUNT key [start end]
统计字符串被设置为1的bit数. 一般情况下,给定的整个字符串都会被进行计数,通过指定额外的 start 或 end 参数,可以让计数只在特定的位上进行。 start 和 end 参数的设置和 GETRANGE 命令类似,都可以使用负数值:比如 -1 表示最后一个位,而 -2 表示倒数第二个位,以此类推。
1344 0