helm repo add trino https://trinodb.github.io/charts/
helm pull trino/trino --version 0.8.0
tar -xf trino-0.8.0.tgz
2
)构建镜像
Docker*le
FROM myharbor.com/bigdata/centos:7.9.2009
RUN rm -f /etc/localtime && ln -sv
/usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo
"Asia/Shanghai" > /etc/timezone
RUN export LANG=zh_CN.UTF-8
# 创建用户和用户组,跟 yaml 编排里的 spec.template.spec.containers.
securityContext.runAsUser: 1000
评论