Skip to content

Commit 06a236d

Browse files
authored
Merge pull request #2 from gaohoward/arkmq-org-mig
[#1] Migration update
2 parents f65dc48 + 90e1ac8 commit 06a236d

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
RELEASE_TAG="$(cat package.json | jq -r '.version')"
2525
RELEASE_TAG_COMMIT="$(git rev-list -n 1 ${RELEASE_TAG} || true)"
2626
if [ "$RELEASE_TAG_COMMIT" != "$HEAD_COMMIT" ]; then
27-
git config user.name 'artemiscloud-bot'
28-
git config user.email 'bot@artemiscloud.io'
27+
git config user.name 'arkmq-bot'
28+
git config user.email 'bot@arkmq-org.io'
2929
git tag -a ${RELEASE_TAG} -m ${RELEASE_TAG} --force
3030
git push origin $RELEASE_TAG --force
3131
fi

.github/workflows/update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232

3333
- name: Set up the repo
3434
run: |
35-
git config user.name 'artemiscloud-bot'
36-
git config user.email 'bot@artemiscloud.io'
35+
git config user.name 'arkmq-bot'
36+
git config user.email 'bot@arkmq-org.io'
3737
git push
3838
3939
- name: Update version

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ ENV NODE_ENV=production
4545
CMD ["node", "dist/app.js"]
4646

4747
## Labels
48-
LABEL name="artemiscloud/activemq-artemis-jolokia-api-server"
48+
LABEL name="arkmq-org/activemq-artemis-jolokia-api-server"
4949
LABEL description="ActiveMQ Artemis Jolokia Api Server"
5050
LABEL maintainer="Howard Gao <[email protected]>"
5151
LABEL version="0.1.2"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,22 @@ yarn run build-api-doc
2727

2828
1. Build the image:
2929
```sh
30-
docker build -t quay.io/artemiscloud/activemq-artemis-jolokia-api-server:latest .
30+
docker build -t quay.io/arkmq-org/activemq-artemis-jolokia-api-server:latest .
3131
```
3232
2. Push the image to image registry:
3333
```sh
34-
docker push quay.io/artemiscloud/activemq-artemis-jolokia-api-server:latest
34+
docker push quay.io/arkmq-org/activemq-artemis-jolokia-api-server:latest
3535
```
3636

3737
### deploy the service
3838

3939
```sh
40-
./deploy.sh [-i <image> -n]
40+
./deploy.sh [-i <image>]
4141
```
4242

4343
The optional `-i <image>` (or `--image <image>`) argument allows you to pass in
4444
the plugin image. If not specified the default
45-
`quay.io/artemiscloud/activemq-artemis-jolokia-api-server:latest` is
45+
`quay.io/arkmq-org/activemq-artemis-jolokia-api-server:latest` is
4646
deployed. for example:
4747

4848
```sh

deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env sh
22

3-
DEFAULT_IMAGE="quay.io/artemiscloud/activemq-artemis-jolokia-api-server:latest"
3+
DEFAULT_IMAGE="quay.io/arkmq-org/activemq-artemis-jolokia-api-server:latest"
44
API_SERVER_IMAGE=${DEFAULT_IMAGE}
55

66
SCRIPT_NAME=$(basename "$0")

deploy/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
spec:
1818
containers:
1919
- name: activemq-artemis-jolokia-api-server
20-
image: quay.io/artemiscloud/activemq-artemis-jolokia-api-server:latest
20+
image: quay.io/arkmq-org/activemq-artemis-jolokia-api-server:latest
2121
ports:
2222
- containerPort: 9443
2323
protocol: TCP

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
"name": "activemq-artemis-jolokia-api-server",
33
"version": "0.1.2",
44
"private": true,
5-
"homepage": "https://github.com/artemiscloud/activemq-artemis-jolokia-api-server#readme",
5+
"homepage": "https://github.com/arkmq-org/activemq-artemis-jolokia-api-server#readme",
66
"bugs": {
7-
"url": "https://github.com/artemiscloud/activemq-artemis-jolokia-api-server/issues"
7+
"url": "https://github.com/arkmq-org/activemq-artemis-jolokia-api-server/issues"
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "git+ssh://[email protected]:artemiscloud/activemq-activemq-artemis-jolokia-api-server.git"
11+
"url": "git+ssh://[email protected]:arkmq-org/activemq-activemq-artemis-jolokia-api-server.git"
1212
},
1313
"scripts": {
1414
"build": "yarn clean && tsc -p tsconfig.json && yarn copy-config",

0 commit comments

Comments
 (0)