c语言sscanf函数的用法是什么
308
2022-10-23
knative安装与实践
1、介绍
knative 是谷歌开源的 serverless 架构方案,旨在提供一套简单易用的 serverless 方案,把 serverless 标准化。knative 建立在 kubernetes 和 istio 平台之上,使用 kubernetes 提供的容器管理能力(deployment、replicaset、和 pods等),以及 istio 提供的网络管理功能(ingress、LB、dynamic route等)。
为了实现 serverless 应用的管理,knative 把整个系统分成了三个部分:
(一)Build:构建系统,把用户定义的函数和应用 build 成容器镜像
(二)Serving:服务系统,用来配置应用的路由、升级策略、自动扩缩容等功能
(三)Eventing:事件系统,用来自动完成事件的绑定和触发
2、安装
(1) 环境
操作系统:CentOS Linux release 7.9.2009 (Core)
K8s版本:minikube version: v1.24.0
Knative版本:v1.2.0
(2) Knative Serving
# 安装自定义资源 kubectl apply -f 安装核心组件kubectl apply -f 安装Istio网络层组件kubectl apply -f apply -f 查看配置kubectl --namespace istio-system get service istio-ingressgateway# 验证安装结果kubectl get pods -n knative-servingNAME READY STATUS RESTARTS AGEactivator-5875d8cdd4-pnhgp 1/1 Running 3 (8h ago) 2d7hautoscaler-67648d87fd-vtfw2 1/1 Running 2 2d7hcontroller-698ff694df-f4rjv 1/1 Running 2 (8h ago) 2d7hdomain-mapping-86c95f49c9-bgjws 1/1 Running 2 2d7hdomainmapping-webhook-54c898d568-r78v4 1/1 Running 3 (8h ago) 2d7hnet-certmanager-controller-85db6558fc-btlw6 1/1 Running 2 (8h ago) 2d3hnet-certmanager-webhook-85dccf4596-rf6wn 1/1 Running 2 (8h ago) 2d3hnet-istio-controller-6b959c5db4-bpwp8 1/1 Running 2 (8h ago) 2d3hnet-istio-webhook-84854fd59-cfsp4 1/1 Running 2 (8h ago) 2d3hwebhook-649f9fbfb5-fp928 1/1 Running 4 (8h ago) 2d7h# 安装TLS证书管理器kubectl apply -f Eventing
# 安装自定义资源(CRD)kubectl apply -f 安装核心组件kubectl apply -f 查看安装结果kubectl get pods -n knative-eventingNAME READY STATUS RESTARTS AGEeventing-controller-74958c68dc-spc5j 1/1 Running 3 (8h ago) 2d2heventing-webhook-7d975685f5-jhqn9 1/1 Running 4 (8h ago) 2d2h
3、实践
部署helloworld
配置helloworld-go.yaml
参考:kubectl apply -f helloworld-go.yaml [root@localhost knative]# kubectl -n istio-system get svc istio-ingressgatewayNAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGEistio-ingressgateway LoadBalancer 10.98.3.238
4、补充
(1) 参考文档:
官方安装教程:vim /etc/systemd/system/docker.service.d/新增内容[Service] Environment="HTTP_PROXY=192.168.xxx.xxx:8118" Environment="HTTPS_PROXY=192.168.xxx.xxx:8118"# systemctl daemon-reload# systemctl restart docker# docker info 查看是否已包含HTTP Proxy
2、阿里云镜像服务
1、编排Dockerfile文件,提交github,通过阿里云镜像拉取github来构建自己镜像版本
2、下载阿里云镜像到本地,通过修改yaml来修改gcr.io的地址
具体操作参考:https://zhuanlan.zhihu.com/p/429685829
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~