【kserve】kserve安装记录
安装
官方教程: https://kserve.github.io/website/admin/kubernetes_deployment/
首先安装istio、cert manager
安装 istio
wget [https://github.com/istio/istio/releases/download/1.11.4/istioctl-1.11.4-linux-amd64.tar.gz](https://github.com/istio/istio/releases/download/1.11.4/istioctl-1.11.4-linux-amd64.tar.gz)
tar -xvzf istioctl-1.11.4-linux-amd64.tar.gz
mv istioctl /usr/local/bin/
istioctl install
安装 knative
`kubectl apply -f https://github.com/knative/operator/releases/download/knative-v1.0.0/operator.yaml`
安装 knative-serving/knative-eventing参考 https://knative.dev/docs/admin/install/knative-with-operators/
安装 cert-manager
kubectl apply -f https://github.com/jetstack/cert-manager/releases/download/v1.5.3/cert-manager.yaml
安装 kserve
kubectl apply -f https://github.com/kserve/kserve/releases/download/v0.7.0/kserve.yaml
grc.io问题
kubectl edit 修改源镜像
国内yaml安装方式
项目地址:https://github.com/wenyangchou/KServeInstaller