knative安装与实践

网友投稿 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 15021:31093/TCP,80:32398/TCP,443:30961/TCP 24d[root@localhost knative]# kubectl get ksvc/helloworld-goNAME URL LATESTCREATED LATESTREADY READY REASONhelloworld-go helloworld-go-v1 True [root@localhost knative]# curl -H "Host: helloworld-go.default.example.com" Knative!注意:可能遇到queue镜像下载出错,记得挂代理2、修改默认域名在Knative Serving Route路由中使用example.com作为默认域名,Route完全定义的域名格式默认为:{route}.{namespace}.{default-domain}导出配置# kubectl get cm config-domain --namespace knative-serving -o yaml >config-domain.yaml编辑config-domain.yaml并配置域名信息apiVersion: v1data: 1314.cn: ""kind: ConfigMap重新应用配置# kubectl apply -f config-domain.yaml# 查看并请求[root@localhost knative]# kubectl get ksvc/helloworld-goNAME URL LATESTCREATED LATESTREADY READY REASONhelloworld-go helloworld-go-v1 helloworld-go-v1 True [root@localhost knative]# curl -H "Host: helloworld-go.default.1314.cn" Knative!

​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小时内删除侵权内容。

上一篇:#yyds干货盘点# Kubernetes 集群权限管理那些事儿(17)
下一篇:如何结合TensorFlow目标检测API和OpenCV分析足球视频
相关文章

 发表评论

暂时没有评论,来抢沙发吧~