fn quick start

简介:

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!
目录
相关文章
|
SQL Shell 网络安全
CISP-PTE综合靶机-WinServer2003学习
CISP-PTE综合靶机-WinServer2003学习
5464 0
|
6天前
|
人工智能 JSON 监控
Claude Code 源码泄露:一份价值亿元的 AI 工程公开课
我以为顶级 AI 产品的护城河是模型。读完这 51.2 万行泄露的源码,我发现自己错了。
4393 17
|
17天前
|
人工智能 JSON 机器人
让龙虾成为你的“公众号分身” | 阿里云服务器玩Openclaw
本文带你零成本玩转OpenClaw:学生认证白嫖6个月阿里云服务器,手把手配置飞书机器人、接入免费/高性价比AI模型(NVIDIA/通义),并打造微信公众号“全自动分身”——实时抓热榜、AI选题拆解、一键发布草稿,5分钟完成热点→文章全流程!
23292 139
让龙虾成为你的“公众号分身” | 阿里云服务器玩Openclaw
|
5天前
|
人工智能 数据可视化 安全
王炸组合!阿里云 OpenClaw X 飞书 CLI,开启 Agent 基建狂潮!(附带免费使用6个月服务器)
本文详解如何用阿里云Lighthouse一键部署OpenClaw,结合飞书CLI等工具,让AI真正“动手”——自动群发、生成科研日报、整理知识库。核心理念:未来软件应为AI而生,CLI即AI的“手脚”,实现高效、安全、可控的智能自动化。
11622 8
王炸组合!阿里云 OpenClaw X 飞书 CLI,开启 Agent 基建狂潮!(附带免费使用6个月服务器)
|
7天前
|
人工智能 自然语言处理 数据挖掘
零基础30分钟搞定 Claude Code,这一步90%的人直接跳过了
本文直击Claude Code使用痛点,提供零基础30分钟上手指南:强调必须配置“工作上下文”(about-me.md+anti-ai-style.md)、采用Cowork/Code模式、建立标准文件结构、用提问式提示词驱动AI理解→规划→执行。附可复制模板与真实项目启动法,助你将Claude从聊天工具升级为高效执行系统。
|
6天前
|
人工智能 定位技术
Claude Code源码泄露:8大隐藏功能曝光
2026年3月,Anthropic因配置失误致Claude Code超51万行源码泄露,意外促成“被动开源”。代码中藏有8大未发布功能,揭示其向“超级智能体”演进的完整蓝图,引发AI编程领域震动。(239字)
2469 9