【问题标题】:Entando 6 Installation IssueEntando 6 安装问题
【发布时间】:2020-05-01 17:37:07
【问题描述】:

我一直在尝试按照http://docs.entando.com 上的说明在我的 Mac 上安装 Entando 6,但是在部署到 Kubernetes 时,quickstart-kc-deployer 出现错误。有人成功安装了吗?

deployment failure

另外,我是 Kubernetes 的新手并尝试访问任何日志,但是到目前为止,我还无法访问日志,也无法进一步了解失败的根本原因是什么。这方面的帮助也非常受欢迎。

谢谢。

【问题讨论】:

  • 首先尝试describe 这样失败的PodDeployment 并查看它的Events 部分。你可以运行kubectl describe pod <pod-name>/kubectl describe deployment <deployment-name>

标签: kubernetes entando


【解决方案1】:

如果您在本地开发环境中,最好的办法是尝试dev.entando.org 的新说明。如果您在云 Kubernetes 提供商上安装,请尝试此处的更新说明。

为了完整起见,我在这里复制了它们:

安装多通道 (https://multipass.run/#install

启动虚拟机

multipass launch --name ubuntu-lts --cpus 4 --mem 8G --disk 20G

打开一个shellmultipass shell ubuntu-lts

安装k3scurl -sfL https://get.k3s.io | sh -

下载 Entando 自定义资源定义

curl -L -C - https://raw.githubusercontent.com/entando/entando-releases/v6.2.0/dist/qs/custom-resources.tar.gz | tar -xz

创建自定义资源 sudo kubectl create -f dist/crd

创建命名空间 sudo kubectl create namespace entando

下载 Helm 图表

curl -L -C - -O https://raw.githubusercontent.com/entando/entando-releases/v6.2.0/dist/qs/entando.yaml

配置对集群的访问

IP=$(hostname -I | awk '{print $1}')
sed -i "s/192.168.64.25/$IP/" entando.yaml

如果您想在云提供商(EKS、AKS、GKE)上进行部署,那么在配置和操作部分中有新的说明

https://dev.entando.org/next/tutorials

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2022-08-14
    • 2020-01-08
    • 2020-04-11
    • 2023-04-09
    相关资源
    最近更新 更多