我在google cloud kubernetes中部署了ignite 2.10.0。它工作正常。现在我需要启用控制中心。1提供了部署控制代理后端和前端的说明。部署它们后,我创建了帐户,并需要将群集连接到它。2给定下载选项,但不提供使用kubernetes配置库的信息。
请帮帮忙。
1. https://www.gridgain.com/docs/control-center/latest/installation/kubernetes
2. https://www.gridgain.com/docs/control-center/latest/connect-ignite-cluster
发布于 2021-04-15 22:05:04
默认的ignite docker镜像不包含控制中心文件。我使用ignite docker image创建了新的docker镜像。
以下是Dockerfile
FROM apacheignite/ignite:2.10.0
WORKDIR /opt/ignite
RUN wget https://www.gridgain.com/media/control-center-agent/control-center-agent-2.9.0.1.zip
RUN unzip control-center-agent-2.9.0.1.zip
RUN cp -r libs/control-center-agent/ apache-ignite/libs/control-center-agent/
RUN cp bin/* apache-ignite/bin/
RUN rm -r bin/
RUN rm -r libs/
RUN rm control-center-agent-2.9.0.1.zip或从%1获取docker图像
1. https://hub.docker.com/r/nuwansameera/ignite-with-control-center/
使用此docker映像创建部署或状态集
https://stackoverflow.com/questions/67054486
复制相似问题