fn project k8s 集成】的更多相关文章

具体部署还是比较简单的,以下为官方参考,只是有一个service type 为 loadBlancer 实际使用需要修改为NodePort  Prerequisite 1: working Kubernetes cluster (v1.7+), and a locally configured kubectl. Quickstart Steps Deploy Fn to the Kubernetes cluster: $ cd docs/operating/ $ kubectl create -…
问题描述: 当Team Foundation Server(TFS 2010/2012/2013)与Project Server高可用性的环境集成时,必然会使用Project Server (PWA)的DNS地址注册PWA站点(RegisterPWA),而不是使用Project Server的计算机名注册,这样就会出现如下图所示的问题: 下图是执行注册PWA命令时出错的截屏 注册命令:tfsadmin project server /RegisterPWA /tfs:http://tfs2013…
今天试用fnproject  之后自己有些思考,后面继续解决   1. 目前测试是强依赖 dockerhub 的,实际可能不是很方便 2. 如何与k8s .mesos.docker swarm  集成 3. security 如何做 4. 现有基础设施改造 5. 监控.服务追踪.日志的处理 6. 持续集成如何做(版本,构建,发布) 7. 如何与微服务进行集成 8. 对于长时间任务的处理待研究 9. 生产环境如何去使用(ha.function 访问)    接上面,几个问题的解决 1. 实际上支持…
1. 说明 fnproject 默认的docker registry 是 dockerhub 对于企业应用还是不太方便的 还好系统系统了配置参数方便我们进行配置,与开源harbor 进行集成 2. 使用    a. harbor 安装 此处略过,安装比较简单,参考github 文档即可    b. 配置说明 1. 构建 func.yml 参考配置 NAME: fn init - create a local func.yaml file USAGE: fn init [command optio…
今天试用fnproject  之后自己有些思考,后面继续解决   1. 目前测试是强依赖 dockerhub 的,实际可能不是很方便 2. 如何与k8s .mesos.docker swarm  集成 3. security 如何做 4. 现有基础设施改造 5. 监控.服务追踪.日志的处理 6. 持续集成如何做(版本,构建,发布) 7. 如何与微服务进行集成 8. 对于长时间任务的处理待研究 9. 生产环境如何去使用(ha.function 访问)         …
备注 k8s 1.6 以下版本与k8s 1.6 以上版本会有一些简单的区别 1. 克隆k8s  部署文档   https://github.com/openfaas/faas-netes   2. 创建服务 // 主要是这几个yaml 文件 .注意里面k8s 版本的说明 faas.yml monitoring.yml nats.yml kubectl apply -f ./faas.yml -f ./monitoring.yml -f ./nats.yml 3. 完成效果         4.…
目前支持的扩展方式   Listeners - listen to API events such as a route getting updated and react accordingly. Middleware - a chain of middleware is executed before an API handler is called. Add API Endpoints - extend the default Fn API.   具体的官方介绍   Listeners L…
此为官方的参考说明   Running Fn in Production The QuickStart guide is intended to quickly get started and kick the tires. To run in production and be ready to scale, you need to use more production ready components. Put the Fn API behind a load balancer and l…
Applications At the root of everything are applications. In fn, an application is essentially a grouping of functions with path mappings (routes) to each function. For instance, consider the following URLs for the app called myapp: http://myapp.com/h…
  Creating Lambda Functions Creating Lambda functions is not much different than using regular functions, just use the lambda-node-4 runtime. fn init --runtime lambda-node-4 --name lambda-node Be sure the filename for your main handler is func.js. TO…