diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1e483ee..c09f925 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,8 +24,8 @@ jobs: RELEASE_TAG="$(cat package.json | jq -r '.version')" RELEASE_TAG_COMMIT="$(git rev-list -n 1 ${RELEASE_TAG} || true)" if [ "$RELEASE_TAG_COMMIT" != "$HEAD_COMMIT" ]; then - git config user.name 'artemiscloud-bot' - git config user.email 'bot@artemiscloud.io' + git config user.name 'arkmq-bot' + git config user.email 'bot@arkmq-org.io' git tag -a ${RELEASE_TAG} -m ${RELEASE_TAG} --force git push origin $RELEASE_TAG --force fi diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index a28e0e6..cd2613a 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -32,8 +32,8 @@ jobs: - name: Set up the repo run: | - git config user.name 'artemiscloud-bot' - git config user.email 'bot@artemiscloud.io' + git config user.name 'arkmq-bot' + git config user.email 'bot@arkmq-org.io' git push - name: Update version diff --git a/Dockerfile b/Dockerfile index 0aa97a3..4b665ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,7 +45,7 @@ ENV NODE_ENV=production CMD ["node", "dist/app.js"] ## Labels -LABEL name="artemiscloud/activemq-artemis-jolokia-api-server" +LABEL name="arkmq-org/activemq-artemis-jolokia-api-server" LABEL description="ActiveMQ Artemis Jolokia Api Server" LABEL maintainer="Howard Gao " LABEL version="0.1.2" diff --git a/README.md b/README.md index 57414ce..95701e6 100644 --- a/README.md +++ b/README.md @@ -27,22 +27,22 @@ yarn run build-api-doc 1. Build the image: ```sh - docker build -t quay.io/artemiscloud/activemq-artemis-jolokia-api-server:latest . + docker build -t quay.io/arkmq-org/activemq-artemis-jolokia-api-server:latest . ``` 2. Push the image to image registry: ```sh - docker push quay.io/artemiscloud/activemq-artemis-jolokia-api-server:latest + docker push quay.io/arkmq-org/activemq-artemis-jolokia-api-server:latest ``` ### deploy the service ```sh -./deploy.sh [-i -n] +./deploy.sh [-i ] ``` The optional `-i ` (or `--image `) argument allows you to pass in the plugin image. If not specified the default -`quay.io/artemiscloud/activemq-artemis-jolokia-api-server:latest` is +`quay.io/arkmq-org/activemq-artemis-jolokia-api-server:latest` is deployed. for example: ```sh diff --git a/deploy.sh b/deploy.sh index 27b5017..ae606e9 100755 --- a/deploy.sh +++ b/deploy.sh @@ -1,6 +1,6 @@ #!/usr/bin/env sh -DEFAULT_IMAGE="quay.io/artemiscloud/activemq-artemis-jolokia-api-server:latest" +DEFAULT_IMAGE="quay.io/arkmq-org/activemq-artemis-jolokia-api-server:latest" API_SERVER_IMAGE=${DEFAULT_IMAGE} SCRIPT_NAME=$(basename "$0") diff --git a/deploy/deployment.yaml b/deploy/deployment.yaml index f81727a..5243259 100644 --- a/deploy/deployment.yaml +++ b/deploy/deployment.yaml @@ -17,7 +17,7 @@ spec: spec: containers: - name: activemq-artemis-jolokia-api-server - image: quay.io/artemiscloud/activemq-artemis-jolokia-api-server:latest + image: quay.io/arkmq-org/activemq-artemis-jolokia-api-server:latest ports: - containerPort: 9443 protocol: TCP diff --git a/package.json b/package.json index 70bc60e..88ab58b 100644 --- a/package.json +++ b/package.json @@ -2,13 +2,13 @@ "name": "activemq-artemis-jolokia-api-server", "version": "0.1.2", "private": true, - "homepage": "https://github.com/artemiscloud/activemq-artemis-jolokia-api-server#readme", + "homepage": "https://github.com/arkmq-org/activemq-artemis-jolokia-api-server#readme", "bugs": { - "url": "https://github.com/artemiscloud/activemq-artemis-jolokia-api-server/issues" + "url": "https://github.com/arkmq-org/activemq-artemis-jolokia-api-server/issues" }, "repository": { "type": "git", - "url": "git+ssh://git@github.com:artemiscloud/activemq-activemq-artemis-jolokia-api-server.git" + "url": "git+ssh://git@github.com:arkmq-org/activemq-activemq-artemis-jolokia-api-server.git" }, "scripts": { "build": "yarn clean && tsc -p tsconfig.json && yarn copy-config",