kinbana basepath

This commit is contained in:
marsal wang
2021-12-27 14:38:06 +08:00
parent 9f3be4335b
commit 8e03a7df60
4 changed files with 41 additions and 1 deletions

View File

@ -92,7 +92,7 @@ helm upgrade -i jenkins jenkins/ --values local-values/jenkins/values.yaml -n j
https://hub.fastgit.org/nacos-group/nacos-k8s.git https://hub.fastgit.org/nacos-group/nacos-k8s.git
``` ```
helm upgrade -i nacos-crm1 nacos/ --values local-values/nacos/crm1-values.yaml -n crm1 helm upgrade -i nacos nacos/ --values local-values/nacos/crm1-values.yaml -n crm1
``` ```

View File

@ -0,0 +1,32 @@
FROM kubespheredev/builder-base
ENV NODE_VERSION 12.22.8
RUN yum -y install gcc-c++ && yum -y groupinstall 'Development Tools'
RUN wget -q -O - https://nodejs.org/dist/v12.22.8/node-v12.22.8-linux-x64.tar.gz \
| tar --strip-components=1 -xzf - -C /usr/local \
&& rm -rf node-v12.22.8-linux-x64.tar.gz \
&& node -v && npm -v
RUN npm install -g yarn \
&& yarn config set registry https://mirrors.huaweicloud.com/repository/npm/ \
&& yarn config set disturl https://mirrors.huaweicloud.com/nodejs/ \
&& yarn config set electron_mirror https://mirrors.huaweicloud.com/electron/ \
&& yarn config set registry https://registry.npm.taobao.org \
&& yarn config set disturl https://npm.taobao.org/dist \
&& yarn config set electron_mirror https://npm.taobao.org/mirrors/electron/ \
&& yarn config set cache-folder /root/.yarn
# RUN wget https://www.python.org/ftp/python/3.6.8/Python-3.6.8.tar.xz \
# && xz -d Python-3.6.8.tar.xz && tar -xf Python-3.6.8.tar \
# && cd Python-3.6.8 && ./configure prefix=/usr/local/python3 \
# && make && make install \
# && yum install -y zlib zlib-devel \
# && rm -rf /usr/bin/python && ln -s /usr/local/python3/bin/python3.6 /usr/bin/python \
# && python -V
CMD ["yarn","version"]
#docker build -f Dockerfile -t marsal1212/builder-nodejs:latest .

View File

@ -1781,3 +1781,7 @@ kibana:
hosts: hosts:
- '{{ include "elasticsearch.coordinating.fullname" . }}' - '{{ include "elasticsearch.coordinating.fullname" . }}'
port: 9200 port: 9200
configuration:
server:
basePath: "kibana"
rewriteBasePath: false

View File

@ -1781,3 +1781,7 @@ kibana:
hosts: hosts:
- '{{ include "elasticsearch.coordinating.fullname" . }}' - '{{ include "elasticsearch.coordinating.fullname" . }}'
port: 9200 port: 9200
configuration:
server:
basePath: "kibana"
rewriteBasePath: false