Skip to content

Commit

Permalink
Merge pull request #2 from gaohoward/arkmq-org-mig
Browse files Browse the repository at this point in the history
[#1] Migration update
  • Loading branch information
gaohoward authored Dec 11, 2024
2 parents f65dc48 + 90e1ac8 commit 06a236d
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 <hgao@redhat.com>"
LABEL version="0.1.2"
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <image> -n]
./deploy.sh [-i <image>]
```

The optional `-i <image>` (or `--image <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
Expand Down
2 changes: 1 addition & 1 deletion deploy.sh
Original file line number Diff line number Diff line change
@@ -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")
Expand Down
2 changes: 1 addition & 1 deletion deploy/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 06a236d

Please sign in to comment.