0

I've a local clusters (minikube) that work pefectly well on my laptop (mint 19.3, Intellij 2019.3 with cloud code plugin, java (11) backend, mongo db, front end, .. ok ). But I can't find any usefull informations (on google cloud plateform site or intellij) to configure a new google cloud cluster. I can only see my minikube conf on the cluster explorer...even when I stopped minikube !

It seems that configuration could be found in kubctl !? But how can I force plugin to connect GCP. I've a GCP account and created a cluster and an image repo.

GCP documentation looks really unclear.

4

2 回答 2

0

如果您想从本地机器管理集群,则需要安装 Cloud SDK并配置集群访问权限,这将允许您使用 kubectl 命令在 GKE 上创建和管理集群。云代码插件应该会自动安装这个 SDK,你可以看看这个指南来学习如何使用它。

于 2020-03-11T21:41:33.213 回答
0

我解决了这个问题。您需要安装 SDK 云(其他解决方案?),使用 gcloud 指令将 kubctl 与新的 kubernetes 上下文链接起来,并用于凭证上下文。必须生成 kubctl 的新配置,并且您必须切换到该配置(kubectl config set your-new-cluster)。

只是一件事,要将 google 存储用于 docker 图像,您应该输入在哪里找到或将其放入运行/编辑配置行图像选项的 conf -> gcr.io/your-project-id 。我无法使用在推送之前创建的存储桶,创建了一个新存储桶。是否有与现有存储桶连接的解决方案?

于 2020-03-11T10:52:11.223 回答