-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge request #57 from stardb:dev_jieker on 2023-06-07 16:14:07
adjust chats
- Loading branch information
Showing
7 changed files
with
18 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,15 +19,4 @@ apiVersion: v2 | |
appVersion: 5.3.2 | ||
name: stardb-proxy | ||
version: 0.16.0 | ||
#maintainers: | ||
# - name: [email protected] | ||
#dependencies: | ||
# - condition: governance.enabled | ||
# name: governance | ||
# repository: file://./charts/governance | ||
# version: 1.x.x | ||
# - name: common | ||
# repository: https://charts.bitnami.com/bitnami | ||
# tags: | ||
# - bitnami-common | ||
# version: 1.x.x | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ ARG RUNTIME_IMAGE=hub.jdcloud.com/stardb/openjdk-amd64:17 | |
|
||
FROM ${BUILD_IMAGE} AS prepare | ||
ARG APP_NAME="stardb-proxy-bin-5.3.2" | ||
ARG AGENT_NAME="stardb-agent-bin-5.3.2" | ||
ARG WORK_DIR="/usr/src/mymaven" | ||
ENV LOCAL_PATH="/opt/stardb-proxy" | ||
|
||
|
@@ -31,6 +32,9 @@ WORKDIR /usr/src/mymaven/distribution/proxy/target | |
RUN tar -zxvf ${APP_NAME}.tar.gz -C /opt | ||
RUN mv /opt/${APP_NAME} ${LOCAL_PATH} && mkdir -p ${LOCAL_PATH}/ext-lib | ||
|
||
RUN tar -zxvf ${AGENT_NAME}.tar.gz -C /opt | ||
RUN mkdir -p ${LOCAL_PATH}/agent && mv /opt/${AGENT_NAME} ${LOCAL_PATH}/agent | ||
|
||
FROM ${RUNTIME_IMAGE} | ||
LABEL maintainer="[email protected]" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ ARG RUNTIME_IMAGE=hub.jdcloud.com/stardb/openjdk-amd64:17 | |
|
||
FROM ${BUILD_IMAGE} AS prepare | ||
ARG APP_NAME="stardb-proxy-bin-5.3.2" | ||
ARG AGENT_NAME="stardb-agent-bin-5.3.2" | ||
ARG WORK_DIR="/usr/src/mymaven" | ||
ENV LOCAL_PATH="/opt/stardb-proxy" | ||
|
||
|
@@ -31,6 +32,9 @@ WORKDIR /usr/src/mymaven/distribution/proxy/target | |
RUN tar -zxvf ${APP_NAME}.tar.gz -C /opt | ||
RUN mv /opt/${APP_NAME} ${LOCAL_PATH} && mkdir -p ${LOCAL_PATH}/ext-lib | ||
|
||
RUN tar -zxvf ${AGENT_NAME}.tar.gz -C /opt | ||
RUN mkdir -p ${LOCAL_PATH}/agent && mv /opt/${AGENT_NAME} ${LOCAL_PATH}/agent | ||
|
||
FROM ${RUNTIME_IMAGE} | ||
LABEL maintainer="[email protected]" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ ARG RUNTIME_IMAGE=hub.jdcloud.com/stardb/openjdk-arm64:17 | |
|
||
FROM ${BUILD_IMAGE} AS prepare | ||
ARG APP_NAME="stardb-proxy-bin-5.3.2" | ||
ARG AGENT_NAME="stardb-agent-bin-5.3.2" | ||
ARG WORK_DIR="/usr/src/mymaven" | ||
ENV LOCAL_PATH="/opt/stardb-proxy" | ||
|
||
|
@@ -31,6 +32,9 @@ WORKDIR /usr/src/mymaven/distribution/proxy/target | |
RUN tar -zxvf ${APP_NAME}.tar.gz -C /opt | ||
RUN mv /opt/${APP_NAME} ${LOCAL_PATH} && mkdir -p ${LOCAL_PATH}/ext-lib | ||
|
||
RUN tar -zxvf ${AGENT_NAME}.tar.gz -C /opt | ||
RUN mkdir -p ${LOCAL_PATH}/agent && mv /opt/${AGENT_NAME} ${LOCAL_PATH}/agent | ||
|
||
FROM ${RUNTIME_IMAGE} | ||
LABEL maintainer="[email protected]" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters