From ba1ab9efbc23115ee4024f74a5811b1c26b25db9 Mon Sep 17 00:00:00 2001 From: Matt Kingston Date: Thu, 22 Jul 2021 14:06:00 +0100 Subject: [PATCH] Remove now-non-functioning refs to private ModusBox repos etc. (#1) * Remove now-non-functioning refs to private ModusBox repos etc. * Version bump --- README.md | 4 ++-- integration_test/manifests/wso2is-populate/job.yaml | 2 +- package-lock.json | 4 ++-- package.json | 2 +- skaffold.yaml | 2 +- src/lib/api.js | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 8865740..c0bed0b 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ npm run test See regions with `doctl compute region list`. 3. Minikube. The author cannot speak to this solution. 4. Don't bother, instead push your changes to a branch and check out the result of the - ![integration test run](https://github.com/modusintegration/wso2is-populate/actions) + ![integration test run](https://github.com/mojaloop/wso2is-populate/actions) 2. If your cluster is well-supported by Skaffold (such as `k3d`, perhaps Minikube?), your image will be built and pushed direct to the cluster nodes when you run: @@ -129,7 +129,7 @@ skaffold run -d your-registry.io --force context: /your/local/path/to/local/clone/of/finance-portal-backend-service docker: dockerfile: Dockerfile - - image: ghcr.io/modusintegration/wso2is-populate + - image: ghcr.io/mojaloop/wso2is-populate docker: dockerfile: Dockerfile ``` diff --git a/integration_test/manifests/wso2is-populate/job.yaml b/integration_test/manifests/wso2is-populate/job.yaml index d917d93..e27507f 100644 --- a/integration_test/manifests/wso2is-populate/job.yaml +++ b/integration_test/manifests/wso2is-populate/job.yaml @@ -15,5 +15,5 @@ spec: spec: containers: - name: job - image: ghcr.io/modusintegration/wso2is-populate:latest + image: ghcr.io/mojaloop/wso2is-populate:latest restartPolicy: OnFailure diff --git a/package-lock.json b/package-lock.json index 12e4dfd..5aaa8c4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { "name": "wso2is-populate", - "version": "2.0.3", + "version": "2.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { - "version": "2.0.3", + "version": "2.0.4", "license": "UNLICENSED", "dependencies": { "ajv": "^6.12.6", diff --git a/package.json b/package.json index 4eacf03..26ac2a4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wso2is-populate", - "version": "2.0.3", + "version": "2.0.4", "description": "A standalone script that can be used as a wrapper around an WSO2 Identity Server in order to import users and roles into it.", "main": "src/index.js", "scripts": { diff --git a/skaffold.yaml b/skaffold.yaml index 75a44ed..673d5f7 100644 --- a/skaffold.yaml +++ b/skaffold.yaml @@ -4,7 +4,7 @@ metadata: name: wso-is-populate build: artifacts: - - image: ghcr.io/modusintegration/wso2is-populate + - image: ghcr.io/mojaloop/wso2is-populate docker: dockerfile: Dockerfile deploy: diff --git a/src/lib/api.js b/src/lib/api.js index c491fac..a32c67e 100644 --- a/src/lib/api.js +++ b/src/lib/api.js @@ -120,7 +120,7 @@ const getToken = async ({ * Create a WSO2 application, otherwise known as a service provider. * * The created application will be configured to use OAuth2 inbound authentication as per the steps - * here: https://github.com/modusintegration/finance-portal-settlements/tree/8d489300b0f31031059f538c5b486fc90b57ccf7#run-services. + * here: https://github.com/mojaloop/finance-portal-v2-ui/tree/8d489300b0f31031059f538c5b486fc90b57ccf7#run-services. * Note that this function should make that documentation redundant, therefore it will likely be * removed. * @@ -222,7 +222,7 @@ const getApplication = async ({ * with createOAuth2ServiceProvider above. * * The created users will be configured to use OAuth2 inbound authentication as per the steps here: - * https://github.com/modusintegration/finance-portal-settlements/tree/8d489300b0f31031059f538c5b486fc90b57ccf7#run-services. + * here: https://github.com/mojaloop/finance-portal-v2-ui/tree/8d489300b0f31031059f538c5b486fc90b57ccf7#run-services. * Note that this function should make that documentation redundant, therefore it will likely be * removed. *