英文:
Tekton dashboard
问题
以下是翻译好的部分:
在尝试使用以下命令查看 Tekton 仪表板时,出现了以下错误:
kubectl port-forward -n tekton-pipelines service/tekton-dashboard 9097:9097
来自服务器的错误 (NotFound):未找到服务 "tekton-dashboard"
英文:
Got the following error, while trying to view tekton dashboard using the command kubectl port-forward -n tekton-pipelines service/tekton-dashboard 9097:9097
Error from server (NotFound): services "tekton-dashboard" not found
答案1
得分: 1
问题是,tekton-dashboard 未安装。
问题已通过运行以下命令解决
kubectl apply --filename https://storage.googleapis.com/tekton-releases/dashboard/latest/release-full.yaml
英文:
The problem was, tekton-dashboard was not installed.
The issue was resolved by running the following command
kubectl apply --filename https://storage.googleapis.com/tekton-releases/dashboard/latest/release-full.yaml
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论