serverless---openfaas部署golang-http函数

拉取模板

PS D:\goBackend\src>./faas-cli template store pull golang-http

serverless---openfaas部署golang-http函数_第1张图片
template文件夹会自动生成

创建自己的新函数

PS D:\goBackend\src>./faas-cli new --lang golang-http --prefix faas-test faas-fn

serverless---openfaas部署golang-http函数_第2张图片
serverless---openfaas部署golang-http函数_第3张图片

修改.yml文件

serverless---openfaas部署golang-http函数_第4张图片
gateway:是openfaas服务的地址
image:是打算将该函数打包到哪个镜像仓库

推送函数

PS D:\goBackend\src> ./faas-cli up -f faas-fn.yml

serverless---openfaas部署golang-http函数_第5张图片
URL:请求函数的路由地址

你可能感兴趣的:(serverless,serverless,云原生)