From fd63e54eeba61a2ec22568cc2485a5b5cd0df459 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 08:09:57 +0200 Subject: [PATCH 01/41] feat: add spellchecking --- .github/actions/spelling/advice.md | 7 +++++++ .github/actions/spelling/allow/allow.txt | 0 .github/actions/spelling/excludes.txt | 17 +++++++++++++++++ .github/actions/spelling/expect/expect.txt | 0 .../actions/spelling/patterns/patterns.txt | 2 ++ .github/actions/spelling/reject.txt | 0 .github/spelling.yml | 19 +++++++++++++++++++ 7 files changed, 45 insertions(+) create mode 100644 .github/actions/spelling/advice.md create mode 100644 .github/actions/spelling/allow/allow.txt create mode 100644 .github/actions/spelling/excludes.txt create mode 100644 .github/actions/spelling/expect/expect.txt create mode 100644 .github/actions/spelling/patterns/patterns.txt create mode 100644 .github/actions/spelling/reject.txt create mode 100644 .github/spelling.yml diff --git a/.github/actions/spelling/advice.md b/.github/actions/spelling/advice.md new file mode 100644 index 0000000..6f6934b --- /dev/null +++ b/.github/actions/spelling/advice.md @@ -0,0 +1,7 @@ + +
+ +:pencil2: Contributor please read this + + +Thank you for contributing :fire: \ No newline at end of file diff --git a/.github/actions/spelling/allow/allow.txt b/.github/actions/spelling/allow/allow.txt new file mode 100644 index 0000000..e69de29 diff --git a/.github/actions/spelling/excludes.txt b/.github/actions/spelling/excludes.txt new file mode 100644 index 0000000..96d9137 --- /dev/null +++ b/.github/actions/spelling/excludes.txt @@ -0,0 +1,17 @@ +(?:^|/)(?i)COPYRIGHT +(?:^|/)(?i)LICEN[CS]E +(?:^|/)package(?:-lock|)\.json$ +(?:^|/)vendor/ +(?:^|/)mvwn\ +ignore$ +\.avi$ +\.ico$ +\.jpe?g$ +\.lock$ +\.map$ +\.min\. +\.mod$ +\.mp[34]$ +\.png$ +\.wav$ +^\.github/ \ No newline at end of file diff --git a/.github/actions/spelling/expect/expect.txt b/.github/actions/spelling/expect/expect.txt new file mode 100644 index 0000000..e69de29 diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt new file mode 100644 index 0000000..2c43567 --- /dev/null +++ b/.github/actions/spelling/patterns/patterns.txt @@ -0,0 +1,2 @@ +# ignore long runs of a single character: +\b([A-Za-z])\g{-1}{3,}\b \ No newline at end of file diff --git a/.github/actions/spelling/reject.txt b/.github/actions/spelling/reject.txt new file mode 100644 index 0000000..e69de29 diff --git a/.github/spelling.yml b/.github/spelling.yml new file mode 100644 index 0000000..cbc72ae --- /dev/null +++ b/.github/spelling.yml @@ -0,0 +1,19 @@ +name: Spell checking +on: + pull_request_target: + push: + +jobs: + build: + name: Spell checking + runs-on: ubuntu-latest + steps: + - name: checkout-merge + if: "contains(github.event_name, 'pull_request')" + uses: actions/checkout@v2.0.0 + with: + ref: refs/pull/${{github.event.pull_request.number}}/merge + - name: checkout + if: "!contains(github.event_name, 'pull_request')" + uses: actions/checkout@v2.0.0 + - uses: check-spelling/check-spelling@v0.0.18 From 7e5a42d3b40dea0a3adf41584b6176effca182ca Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 08:13:06 +0200 Subject: [PATCH 02/41] chore: move spelling into workflows folder --- .github/{ => workflows}/spelling.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/{ => workflows}/spelling.yml (100%) diff --git a/.github/spelling.yml b/.github/workflows/spelling.yml similarity index 100% rename from .github/spelling.yml rename to .github/workflows/spelling.yml From f8fbdcedfdbc43b242fc310de436bc9f8922e1ee Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 08:15:01 +0200 Subject: [PATCH 03/41] chore: add eof to spelling configs --- .github/actions/spelling/advice.md | 2 +- .github/actions/spelling/excludes.txt | 2 +- .github/actions/spelling/patterns/patterns.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/spelling/advice.md b/.github/actions/spelling/advice.md index 6f6934b..3b1912a 100644 --- a/.github/actions/spelling/advice.md +++ b/.github/actions/spelling/advice.md @@ -4,4 +4,4 @@ :pencil2: Contributor please read this -Thank you for contributing :fire: \ No newline at end of file +Thank you for contributing :fire: diff --git a/.github/actions/spelling/excludes.txt b/.github/actions/spelling/excludes.txt index 96d9137..d05eeb5 100644 --- a/.github/actions/spelling/excludes.txt +++ b/.github/actions/spelling/excludes.txt @@ -14,4 +14,4 @@ ignore$ \.mp[34]$ \.png$ \.wav$ -^\.github/ \ No newline at end of file +^\.github/ diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index 2c43567..c16adb0 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -1,2 +1,2 @@ # ignore long runs of a single character: -\b([A-Za-z])\g{-1}{3,}\b \ No newline at end of file +\b([A-Za-z])\g{-1}{3,}\b From a953ef3c9d42d917d62239d9980e3f6a4b69078b Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 08:18:14 +0200 Subject: [PATCH 04/41] chore: update exclusion list --- .github/actions/spelling/excludes.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/actions/spelling/excludes.txt b/.github/actions/spelling/excludes.txt index d05eeb5..973b2b3 100644 --- a/.github/actions/spelling/excludes.txt +++ b/.github/actions/spelling/excludes.txt @@ -1,8 +1,3 @@ -(?:^|/)(?i)COPYRIGHT -(?:^|/)(?i)LICEN[CS]E -(?:^|/)package(?:-lock|)\.json$ -(?:^|/)vendor/ -(?:^|/)mvwn\ ignore$ \.avi$ \.ico$ From ca28c9d1bee7d8cbe335537ef4df5b3904f6b636 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 08:27:29 +0200 Subject: [PATCH 05/41] chore: update exlusion list --- .github/actions/spelling/excludes.txt | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/actions/spelling/excludes.txt b/.github/actions/spelling/excludes.txt index 973b2b3..f42d54c 100644 --- a/.github/actions/spelling/excludes.txt +++ b/.github/actions/spelling/excludes.txt @@ -1,6 +1,14 @@ -ignore$ \.avi$ +^dataspace-connector/full/dataspaceconnector/config/config\.json$ +^dataspace-connector/full/dataspaceconnector/config/keystore\.p12$ +^dataspace-connector/full/dataspaceconnector/config/truststore\.p12$ +^dataspace-connector/full/ui/ui\.env$ +^dataspace-connector/slim/docker/dataspaceconnector/config/config\.json$ +^dataspace-connector/slim/docker/dataspaceconnector/config/keystore\.p12$ +^dataspace-connector/slim/docker/dataspaceconnector/config/truststore\.p12$ +^\.github/ \.ico$ +ignore$ \.jpe?g$ \.lock$ \.map$ @@ -9,4 +17,3 @@ ignore$ \.mp[34]$ \.png$ \.wav$ -^\.github/ From 2160c6776c494d2e41088b5f18213b02653ffa4d Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 09:07:05 +0200 Subject: [PATCH 06/41] chore: add Fraunhofer to expect list --- .github/actions/spelling/expect/expect.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/spelling/expect/expect.txt b/.github/actions/spelling/expect/expect.txt index e69de29..43f06cb 100644 --- a/.github/actions/spelling/expect/expect.txt +++ b/.github/actions/spelling/expect/expect.txt @@ -0,0 +1 @@ +Fraunhofer ISST \ No newline at end of file From 3722a49a6d808fc67e0ce939063c047669c9edb2 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 09:18:17 +0200 Subject: [PATCH 07/41] chore: exclude env files --- .github/actions/spelling/excludes.txt | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/actions/spelling/excludes.txt b/.github/actions/spelling/excludes.txt index f42d54c..4ef8ad3 100644 --- a/.github/actions/spelling/excludes.txt +++ b/.github/actions/spelling/excludes.txt @@ -1,11 +1,7 @@ \.avi$ -^dataspace-connector/full/dataspaceconnector/config/config\.json$ -^dataspace-connector/full/dataspaceconnector/config/keystore\.p12$ -^dataspace-connector/full/dataspaceconnector/config/truststore\.p12$ -^dataspace-connector/full/ui/ui\.env$ -^dataspace-connector/slim/docker/dataspaceconnector/config/config\.json$ -^dataspace-connector/slim/docker/dataspaceconnector/config/keystore\.p12$ -^dataspace-connector/slim/docker/dataspaceconnector/config/truststore\.p12$ +\.json$ +\.p12$ +\.env$ ^\.github/ \.ico$ ignore$ From 44d0bcaf7256aa8a96600ff265794ece5a57f1e8 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 09:22:03 +0200 Subject: [PATCH 08/41] chore: add github as pattern --- .github/actions/spelling/patterns/patterns.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index c16adb0..cd43f6e 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -1,2 +1,3 @@ # ignore long runs of a single character: \b([A-Za-z])\g{-1}{3,}\b +https://(?:[a-z-]+\.|)github(?:usercontent|)\.com/[-a-zA-Z0-9?%&=_\/.]* \ No newline at end of file From 64844edcec5e02e01a852e4a10f7ac11cc3e121d Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 09:23:11 +0200 Subject: [PATCH 09/41] chore: add eof to patterns --- .github/actions/spelling/patterns/patterns.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index cd43f6e..a2969b1 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -1,3 +1,3 @@ # ignore long runs of a single character: \b([A-Za-z])\g{-1}{3,}\b -https://(?:[a-z-]+\.|)github(?:usercontent|)\.com/[-a-zA-Z0-9?%&=_\/.]* \ No newline at end of file +https://(?:[a-z-]+\.|)github(?:usercontent|)\.com/[-a-zA-Z0-9?%&=_\/.]* From 7e519bdcfa9ba994c008f39850619358423784aa Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 09:30:34 +0200 Subject: [PATCH 10/41] chore: add web related rules --- .github/actions/spelling/expect/expect.txt | 3 ++- .github/actions/spelling/expect/web.txt | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .github/actions/spelling/expect/web.txt diff --git a/.github/actions/spelling/expect/expect.txt b/.github/actions/spelling/expect/expect.txt index 43f06cb..14028c0 100644 --- a/.github/actions/spelling/expect/expect.txt +++ b/.github/actions/spelling/expect/expect.txt @@ -1 +1,2 @@ -Fraunhofer ISST \ No newline at end of file +SSL +api \ No newline at end of file diff --git a/.github/actions/spelling/expect/web.txt b/.github/actions/spelling/expect/web.txt new file mode 100644 index 0000000..ddc0309 --- /dev/null +++ b/.github/actions/spelling/expect/web.txt @@ -0,0 +1,2 @@ +http +www \ No newline at end of file From 9317c2d39a6a4fd6065b6489df3a943d822d9f2a Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 09:43:16 +0200 Subject: [PATCH 11/41] chore: fix typos --- dataspace-connector/slim/docker/README.md | 2 +- dataspace-connector/slim/k8s/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dataspace-connector/slim/docker/README.md b/dataspace-connector/slim/docker/README.md index 0efbe69..dc75e2b 100644 --- a/dataspace-connector/slim/docker/README.md +++ b/dataspace-connector/slim/docker/README.md @@ -38,7 +38,7 @@ This Dataspace Connector Deployment example consists of the following components ``` git clone https://github.com/International-Data-Spaces-Association/IDS-Deployment-Examples.git ``` -2. Open a new terminal inside the created direcotry and navigate to this folder. +2. Open a new terminal inside the created directory and navigate to this folder. ``` cd IDS-Deployment-Examples/dataspace-connector/slim/docker ``` diff --git a/dataspace-connector/slim/k8s/README.md b/dataspace-connector/slim/k8s/README.md index feae7c7..335d20e 100644 --- a/dataspace-connector/slim/k8s/README.md +++ b/dataspace-connector/slim/k8s/README.md @@ -40,7 +40,7 @@ This example can not be used with the current IDS Metadata Broker off-the-shelf, ``` helm install dataspaceconnector charts/dataspace-connector ``` - - Follow the instructings for connecting to the service displayed in the terminal e.g.: + - Follow the instructions for connecting to the service displayed in the terminal e.g.: ``` 1. Get the application URL by running these commands: export POD_NAME=$(kubectl get pods --namespace default -l "app.kubernetes.io/name=dataspace-connector,app.kubernetes.io/instance=dataspaceconnector" -o jsonpath="{.items[0].metadata.name}") @@ -51,7 +51,7 @@ This example can not be used with the current IDS Metadata Broker off-the-shelf, - Login with username `admin` and password `password` - The [Communication Guide](https://international-data-spaces-association.github.io/DataspaceConnector/CommunicationGuide) explains how to use the APIs of the connector -Individual settings can be made by modifing the chart itself. +Individual settings can be made by modifying the chart itself. ### Uninstall - Run `helm uninstall dataspaceconnector` From 733adc78fb2ce1ee656ad56254cb19ca1fd5dc9b Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 09:47:38 +0200 Subject: [PATCH 12/41] chore: add idsa homepage to patterns --- .github/actions/spelling/patterns/patterns.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index a2969b1..20f28b8 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -1,3 +1,4 @@ # ignore long runs of a single character: \b([A-Za-z])\g{-1}{3,}\b https://(?:[a-z-]+\.|)github(?:usercontent|)\.com/[-a-zA-Z0-9?%&=_\/.]* +https://(?:(?:[-a-zA-Z0-9?&=]*\.|)internationaldataspaces\.org)/[-a-zA-Z0-9?&=_#\/.]* From 77186327bfae983284eae799ebd845577e3cecbb Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 09:53:30 +0200 Subject: [PATCH 13/41] chore: allow idsa --- .github/actions/spelling/allow/allow.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/spelling/allow/allow.txt b/.github/actions/spelling/allow/allow.txt index e69de29..b7d1169 100644 --- a/.github/actions/spelling/allow/allow.txt +++ b/.github/actions/spelling/allow/allow.txt @@ -0,0 +1 @@ +IDSA \ No newline at end of file From dbed871e53840dc679068c63c08e852eb8dd67d8 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 09:54:57 +0200 Subject: [PATCH 14/41] chore: allow readme and changelog --- .github/actions/spelling/allow/allow.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/spelling/allow/allow.txt b/.github/actions/spelling/allow/allow.txt index b7d1169..1db8319 100644 --- a/.github/actions/spelling/allow/allow.txt +++ b/.github/actions/spelling/allow/allow.txt @@ -1 +1,3 @@ -IDSA \ No newline at end of file +IDSA +README.md +CHANGELOG.md \ No newline at end of file From 97c0fe42e9d996527cba03e16359f29c213c1917 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 09:57:22 +0200 Subject: [PATCH 15/41] chore: move readme and changelog --- .github/actions/spelling/allow/allow.txt | 4 +--- .github/actions/spelling/expect/expect.txt | 4 +++- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/spelling/allow/allow.txt b/.github/actions/spelling/allow/allow.txt index 1db8319..b7d1169 100644 --- a/.github/actions/spelling/allow/allow.txt +++ b/.github/actions/spelling/allow/allow.txt @@ -1,3 +1 @@ -IDSA -README.md -CHANGELOG.md \ No newline at end of file +IDSA \ No newline at end of file diff --git a/.github/actions/spelling/expect/expect.txt b/.github/actions/spelling/expect/expect.txt index 14028c0..11dd7fb 100644 --- a/.github/actions/spelling/expect/expect.txt +++ b/.github/actions/spelling/expect/expect.txt @@ -1,2 +1,4 @@ SSL -api \ No newline at end of file +api +readme +changelog \ No newline at end of file From 773097601035b0ae91132b953968f21fc7b5e6ce Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 10:00:03 +0200 Subject: [PATCH 16/41] chore: add conventional commits --- .github/actions/spelling/patterns/patterns.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index 20f28b8..1575062 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -2,3 +2,5 @@ \b([A-Za-z])\g{-1}{3,}\b https://(?:[a-z-]+\.|)github(?:usercontent|)\.com/[-a-zA-Z0-9?%&=_\/.]* https://(?:(?:[-a-zA-Z0-9?&=]*\.|)internationaldataspaces\.org)/[-a-zA-Z0-9?&=_#\/.]* +https://deepsource.io/blog/git-branch-naming-conventions/ +https://www.conventionalcommits.org/en/v1.0.0/ \ No newline at end of file From 297257afe2e5ad8159395e087f85c734e63f8799 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 10:00:55 +0200 Subject: [PATCH 17/41] chore: add eof to pattern --- .github/actions/spelling/patterns/patterns.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index 1575062..87b0d52 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -3,4 +3,4 @@ https://(?:[a-z-]+\.|)github(?:usercontent|)\.com/[-a-zA-Z0-9?%&=_\/.]* https://(?:(?:[-a-zA-Z0-9?&=]*\.|)internationaldataspaces\.org)/[-a-zA-Z0-9?&=_#\/.]* https://deepsource.io/blog/git-branch-naming-conventions/ -https://www.conventionalcommits.org/en/v1.0.0/ \ No newline at end of file +https://www.conventionalcommits.org/en/v1.0.0/ From 7912428051d85ebb1ef1cfd75279b649590354f2 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 10:39:10 +0200 Subject: [PATCH 18/41] chore: allow dataspaceconnector.de --- .github/actions/spelling/patterns/patterns.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index 87b0d52..183d718 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -4,3 +4,4 @@ https://(?:[a-z-]+\.|)github(?:usercontent|)\.com/[-a-zA-Z0-9?%&=_\/.]* https://(?:(?:[-a-zA-Z0-9?&=]*\.|)internationaldataspaces\.org)/[-a-zA-Z0-9?&=_#\/.]* https://deepsource.io/blog/git-branch-naming-conventions/ https://www.conventionalcommits.org/en/v1.0.0/ +https://(?:(?:[-a-zA-Z0-9?&=]*\.|)dataspace-connector\.de)/[-a-zA-Z0-9?&=_#\/.]* \ No newline at end of file From eca42d12bf090c625adb501ee07489f03a0d063a Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 10:40:38 +0200 Subject: [PATCH 19/41] chore: add eof --- .github/actions/spelling/patterns/patterns.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index 183d718..1d3cc18 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -4,4 +4,4 @@ https://(?:[a-z-]+\.|)github(?:usercontent|)\.com/[-a-zA-Z0-9?%&=_\/.]* https://(?:(?:[-a-zA-Z0-9?&=]*\.|)internationaldataspaces\.org)/[-a-zA-Z0-9?&=_#\/.]* https://deepsource.io/blog/git-branch-naming-conventions/ https://www.conventionalcommits.org/en/v1.0.0/ -https://(?:(?:[-a-zA-Z0-9?&=]*\.|)dataspace-connector\.de)/[-a-zA-Z0-9?&=_#\/.]* \ No newline at end of file +https://(?:(?:[-a-zA-Z0-9?&=]*\.|)dataspace-connector\.de)/[-a-zA-Z0-9?&=_#\/.]* From ae17d08a1db54c713c1b618cb521b85d8e540a35 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 11:46:39 +0200 Subject: [PATCH 20/41] chore: expand allow and pattern --- .github/actions/spelling/allow/allow.txt | 9 ++++++++- .github/actions/spelling/patterns/patterns.txt | 1 + 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/actions/spelling/allow/allow.txt b/.github/actions/spelling/allow/allow.txt index b7d1169..33c930a 100644 --- a/.github/actions/spelling/allow/allow.txt +++ b/.github/actions/spelling/allow/allow.txt @@ -1 +1,8 @@ -IDSA \ No newline at end of file +IDSA +refactor +keystore +Wiki +wiki +roadmap +Kubernetes +bugfix diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index 1d3cc18..362c398 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -5,3 +5,4 @@ https://(?:(?:[-a-zA-Z0-9?&=]*\.|)internationaldataspaces\.org)/[-a-zA-Z0-9?&=_# https://deepsource.io/blog/git-branch-naming-conventions/ https://www.conventionalcommits.org/en/v1.0.0/ https://(?:(?:[-a-zA-Z0-9?&=]*\.|)dataspace-connector\.de)/[-a-zA-Z0-9?&=_#\/.]* +Dataspace Connector From 4280782acc688eb9d3dc4899741a5bb9dd1f79e8 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 11:56:06 +0200 Subject: [PATCH 21/41] chore: postgres -> postgresql --- .github/actions/spelling/patterns/patterns.txt | 2 ++ README.md | 2 +- dataspace-connector/full/README.md | 2 +- dataspace-connector/slim/docker/README.md | 2 +- dataspace-connector/slim/k8s/README.md | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index 362c398..ae9243e 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -1,8 +1,10 @@ # ignore long runs of a single character: \b([A-Za-z])\g{-1}{3,}\b https://(?:[a-z-]+\.|)github(?:usercontent|)\.com/[-a-zA-Z0-9?%&=_\/.]* +https://(?:[a-z-]+\.|)github\.io/[-a-zA-Z0-9?%&=_\/.]* https://(?:(?:[-a-zA-Z0-9?&=]*\.|)internationaldataspaces\.org)/[-a-zA-Z0-9?&=_#\/.]* https://deepsource.io/blog/git-branch-naming-conventions/ https://www.conventionalcommits.org/en/v1.0.0/ https://(?:(?:[-a-zA-Z0-9?&=]*\.|)dataspace-connector\.de)/[-a-zA-Z0-9?&=_#\/.]* Dataspace Connector +Metadata Broker diff --git a/README.md b/README.md index 8b1b85b..81bc915 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ The IDS Deployment Examples Repository is used to provide working deployments ac ## Overview The repository is organized as follows: -* Per component or component bundle (union from e.g. Dataspace Connector and Metadata broker or Dataspace Connector and Trusted Connector) a folder is created. This again contains possibly independent Variatonen for e.g. minimal/full Setups or Helm/Kubernetes/Docker Setups. +* Per component or component bundle (union from e.g. Dataspace Connector and Metadata Broker or Dataspace Connector and Trusted Connector) a folder is created. This again contains possibly independent variations for e.g. minimal/full Setups or Helm/Kubernetes/Docker Setups. * Additionally there is a templates folder, which provides templates for the Deployment Examples. diff --git a/dataspace-connector/full/README.md b/dataspace-connector/full/README.md index 5cc343a..3ddac28 100644 --- a/dataspace-connector/full/README.md +++ b/dataspace-connector/full/README.md @@ -20,7 +20,7 @@ Other than described there, in this example, the `config.json` and the `KeyStore In this setup, the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) is started with the listed extensions: * [Configuration Manager](https://github.com/International-Data-Spaces-Association/IDS-ConfigurationManager), * [Configuration Manager GUI](https://github.com/International-Data-Spaces-Association/IDS-ConfigurationManager-UI), -* Postgres DB +* Postgresql DB In addition, the following Dataspace Connector extensions will be included in future deployment example setups: * [Camel](https://github.com/International-Data-Spaces-Association/DSC-Camel-Instance) diff --git a/dataspace-connector/slim/docker/README.md b/dataspace-connector/slim/docker/README.md index dc75e2b..64adf53 100644 --- a/dataspace-connector/slim/docker/README.md +++ b/dataspace-connector/slim/docker/README.md @@ -26,7 +26,7 @@ This Dataspace Connector Deployment example consists of the following components | Component | Version | |:----------|:--------| | Dataspace Connector | latest | -| Postgres | 13 | +| Postgresql | 13 | ### Prerequisites - Git diff --git a/dataspace-connector/slim/k8s/README.md b/dataspace-connector/slim/k8s/README.md index 335d20e..b240a1b 100644 --- a/dataspace-connector/slim/k8s/README.md +++ b/dataspace-connector/slim/k8s/README.md @@ -13,7 +13,7 @@ This allows us to only using the core functionalities of the Dataspace Connector ## Deployment Example This Dataspace Connector Deployment example consists of the following components: -- Postgres 13 +- Postgresql 13 - Dataspace Connector latest --- From e67ea721f0a85b78737301a3f4d768e0bf45bdd9 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 12:00:07 +0200 Subject: [PATCH 22/41] chore: configmanager -> ConfigurationManager --- .github/actions/spelling/allow/allow.txt | 1 + dataspace-connector/README.md | 4 ++-- dataspace-connector/slim/README.md | 2 +- dataspace-connector/slim/k8s/README.md | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/actions/spelling/allow/allow.txt b/.github/actions/spelling/allow/allow.txt index 33c930a..fdc84b6 100644 --- a/.github/actions/spelling/allow/allow.txt +++ b/.github/actions/spelling/allow/allow.txt @@ -6,3 +6,4 @@ wiki roadmap Kubernetes bugfix +tbd \ No newline at end of file diff --git a/dataspace-connector/README.md b/dataspace-connector/README.md index af379e2..c2ef7dc 100644 --- a/dataspace-connector/README.md +++ b/dataspace-connector/README.md @@ -8,9 +8,9 @@ This folder provides examples to set up the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector). We distinguish between three categories: -1. **Full Setup**: The [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) is started with all its extensions, i.e. [Configmanager](https://github.com/International-Data-Spaces-Association/IDS-ConfigurationManager), [GUI](https://github.com/International-Data-Spaces-Association/IDS-ConfigurationManager-UI), [Camel](https://github.com/International-Data-Spaces-Association/DSC-Camel-Instance), Postgres DB. +1. **Full Setup**: The [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) is started with all its extensions, i.e. [ConfigurationManager](https://github.com/International-Data-Spaces-Association/IDS-ConfigurationManager), [GUI](https://github.com/International-Data-Spaces-Association/IDS-ConfigurationManager-UI), [Camel](https://github.com/International-Data-Spaces-Association/DSC-Camel-Instance), Postgres DB. 2. **Provider-Consumer Setup**: Here two [Dataspace Connectors](https://github.com/International-Data-Spaces-Association/DataspaceConnector) are started, so that data can be exchanged between them. (**tbd.**) -3. **Slim Setup**: In this setup only the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) and Postgres as database are started, without Camel, Configmanager and GUI. +3. **Slim Setup**: In this setup only the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) and Postgresql as database are started, without Camel, ConfigurationManager and GUI. For more details see here: [Dataspace Connector Architecture](https://international-data-spaces-association.github.io/DataspaceConnector/Documentation/Architecture) diff --git a/dataspace-connector/slim/README.md b/dataspace-connector/slim/README.md index 8a2690c..a60a492 100644 --- a/dataspace-connector/slim/README.md +++ b/dataspace-connector/slim/README.md @@ -7,7 +7,7 @@ This is the **Slim Setup** of the Dataspace Connector. -In this setup only the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) and Postgres as database are started, without Camel, Configmanager and UI. +In this setup only the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) and Postgres as database are started, without Camel, ConfigurationManager and UI. This allows us to only using the core functionalities of the Dataspace Connector without having an graphical user interface and the logic of the ConfigurationManager to install IDS Apps and configure Camel routes. diff --git a/dataspace-connector/slim/k8s/README.md b/dataspace-connector/slim/k8s/README.md index b240a1b..5a48cf5 100644 --- a/dataspace-connector/slim/k8s/README.md +++ b/dataspace-connector/slim/k8s/README.md @@ -7,7 +7,7 @@ This is the **Slim Setup** of the Dataspace Connector. -In this setup only the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) and Postgres as database are started, without Camel, Configmanager and UI. +In this setup only the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) and Postgres as database are started, without Camel, ConfigurationManager and UI. This allows us to only using the core functionalities of the Dataspace Connector without having an graphical user interface and the logic of the ConfigurationManager to install IDS Apps and configure Camel routes. From e014da47b5527affbdbeac6e6e02019c1e800e8f Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 12:00:57 +0200 Subject: [PATCH 23/41] chore: add eof --- .github/actions/spelling/allow/allow.txt | 2 +- dataspace-connector/slim/docker/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/spelling/allow/allow.txt b/.github/actions/spelling/allow/allow.txt index fdc84b6..3da1858 100644 --- a/.github/actions/spelling/allow/allow.txt +++ b/.github/actions/spelling/allow/allow.txt @@ -6,4 +6,4 @@ wiki roadmap Kubernetes bugfix -tbd \ No newline at end of file +tbd diff --git a/dataspace-connector/slim/docker/README.md b/dataspace-connector/slim/docker/README.md index 64adf53..e6bc991 100644 --- a/dataspace-connector/slim/docker/README.md +++ b/dataspace-connector/slim/docker/README.md @@ -7,7 +7,7 @@ This is a deployment example for the **Slim Setup** of the Dataspace Connector. -In this setup only the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) and Postgres as database are started, without Camel, Configmanager and UI. +In this setup only the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) and Postgres as database are started, without Camel, ConfigurationManager and UI. This allows us to only using the core functionalities of the Dataspace Connector without having an graphical user interface and the logic of the ConfigurationManager to install IDS Apps and configure Camel routes. From e9b93cc64e57ba03612f64784c9cd40067912442 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 12:03:52 +0200 Subject: [PATCH 24/41] chore: Postgresql -> PostgreSQL --- .github/actions/spelling/allow/allow.txt | 1 + dataspace-connector/README.md | 4 ++-- dataspace-connector/full/README.md | 2 +- dataspace-connector/slim/k8s/README.md | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/actions/spelling/allow/allow.txt b/.github/actions/spelling/allow/allow.txt index 3da1858..ce613c4 100644 --- a/.github/actions/spelling/allow/allow.txt +++ b/.github/actions/spelling/allow/allow.txt @@ -7,3 +7,4 @@ roadmap Kubernetes bugfix tbd +PostgreSQL diff --git a/dataspace-connector/README.md b/dataspace-connector/README.md index c2ef7dc..efb38c1 100644 --- a/dataspace-connector/README.md +++ b/dataspace-connector/README.md @@ -8,9 +8,9 @@ This folder provides examples to set up the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector). We distinguish between three categories: -1. **Full Setup**: The [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) is started with all its extensions, i.e. [ConfigurationManager](https://github.com/International-Data-Spaces-Association/IDS-ConfigurationManager), [GUI](https://github.com/International-Data-Spaces-Association/IDS-ConfigurationManager-UI), [Camel](https://github.com/International-Data-Spaces-Association/DSC-Camel-Instance), Postgres DB. +1. **Full Setup**: The [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) is started with all its extensions, i.e. [ConfigurationManager](https://github.com/International-Data-Spaces-Association/IDS-ConfigurationManager), [GUI](https://github.com/International-Data-Spaces-Association/IDS-ConfigurationManager-UI), [Camel](https://github.com/International-Data-Spaces-Association/DSC-Camel-Instance), PostgreSQL DB. 2. **Provider-Consumer Setup**: Here two [Dataspace Connectors](https://github.com/International-Data-Spaces-Association/DataspaceConnector) are started, so that data can be exchanged between them. (**tbd.**) -3. **Slim Setup**: In this setup only the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) and Postgresql as database are started, without Camel, ConfigurationManager and GUI. +3. **Slim Setup**: In this setup only the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) and PostgreSQL as database are started, without Camel, ConfigurationManager and GUI. For more details see here: [Dataspace Connector Architecture](https://international-data-spaces-association.github.io/DataspaceConnector/Documentation/Architecture) diff --git a/dataspace-connector/full/README.md b/dataspace-connector/full/README.md index 3ddac28..8c96d8b 100644 --- a/dataspace-connector/full/README.md +++ b/dataspace-connector/full/README.md @@ -20,7 +20,7 @@ Other than described there, in this example, the `config.json` and the `KeyStore In this setup, the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) is started with the listed extensions: * [Configuration Manager](https://github.com/International-Data-Spaces-Association/IDS-ConfigurationManager), * [Configuration Manager GUI](https://github.com/International-Data-Spaces-Association/IDS-ConfigurationManager-UI), -* Postgresql DB +* PostgreSQL DB In addition, the following Dataspace Connector extensions will be included in future deployment example setups: * [Camel](https://github.com/International-Data-Spaces-Association/DSC-Camel-Instance) diff --git a/dataspace-connector/slim/k8s/README.md b/dataspace-connector/slim/k8s/README.md index 5a48cf5..90cc240 100644 --- a/dataspace-connector/slim/k8s/README.md +++ b/dataspace-connector/slim/k8s/README.md @@ -13,7 +13,7 @@ This allows us to only using the core functionalities of the Dataspace Connector ## Deployment Example This Dataspace Connector Deployment example consists of the following components: -- Postgresql 13 +- PostgreSQL 13 - Dataspace Connector latest --- From 1fcd2111bc96d6b809640f6af618921c2a26507c Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 12:16:59 +0200 Subject: [PATCH 25/41] chore: allow dataspace-connector --- .github/actions/spelling/allow/allow.txt | 1 + .github/actions/spelling/patterns/patterns.txt | 2 ++ dataspace-connector/full/README.md | 2 +- dataspace-connector/slim/docker/README.md | 2 +- 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/actions/spelling/allow/allow.txt b/.github/actions/spelling/allow/allow.txt index ce613c4..e844725 100644 --- a/.github/actions/spelling/allow/allow.txt +++ b/.github/actions/spelling/allow/allow.txt @@ -8,3 +8,4 @@ Kubernetes bugfix tbd PostgreSQL +URLs diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index ae9243e..6ae1bc6 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -7,4 +7,6 @@ https://deepsource.io/blog/git-branch-naming-conventions/ https://www.conventionalcommits.org/en/v1.0.0/ https://(?:(?:[-a-zA-Z0-9?&=]*\.|)dataspace-connector\.de)/[-a-zA-Z0-9?&=_#\/.]* Dataspace Connector +dataspace-connector Metadata Broker +http://keepachangelog.com diff --git a/dataspace-connector/full/README.md b/dataspace-connector/full/README.md index 8c96d8b..8aff102 100644 --- a/dataspace-connector/full/README.md +++ b/dataspace-connector/full/README.md @@ -34,7 +34,7 @@ This deployment example builds on the following compatible versions: | Dataspace Connector | 4.3.1 | | Configuration Manager | 7.0.0 | | Configuration Manager GUI | 7.0.1 | -| Postgres | 12 | +| PostgreSQL | 12 | ### Prerequisites - Git diff --git a/dataspace-connector/slim/docker/README.md b/dataspace-connector/slim/docker/README.md index e6bc991..d7fbb0e 100644 --- a/dataspace-connector/slim/docker/README.md +++ b/dataspace-connector/slim/docker/README.md @@ -26,7 +26,7 @@ This Dataspace Connector Deployment example consists of the following components | Component | Version | |:----------|:--------| | Dataspace Connector | latest | -| Postgresql | 13 | +| PostgreSQL | 13 | ### Prerequisites - Git From ec1ca08c69d847270b1c1d304cf25a2f77ac88da Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 12:19:31 +0200 Subject: [PATCH 26/41] chore: allow localhost --- .github/actions/spelling/allow/allow.txt | 1 + .github/actions/spelling/patterns/patterns.txt | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/actions/spelling/allow/allow.txt b/.github/actions/spelling/allow/allow.txt index e844725..e735094 100644 --- a/.github/actions/spelling/allow/allow.txt +++ b/.github/actions/spelling/allow/allow.txt @@ -9,3 +9,4 @@ bugfix tbd PostgreSQL URLs +Uninstall diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index 6ae1bc6..1f0112e 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -1,6 +1,7 @@ # ignore long runs of a single character: \b([A-Za-z])\g{-1}{3,}\b https://(?:[a-z-]+\.|)github(?:usercontent|)\.com/[-a-zA-Z0-9?%&=_\/.]* +https://(?:[a-z-]+\.|)localhost/[-a-zA-Z0-9?%&=_\/.]* https://(?:[a-z-]+\.|)github\.io/[-a-zA-Z0-9?%&=_\/.]* https://(?:(?:[-a-zA-Z0-9?&=]*\.|)internationaldataspaces\.org)/[-a-zA-Z0-9?&=_#\/.]* https://deepsource.io/blog/git-branch-naming-conventions/ From 011db831154147874e8c312e350fb6f6bea4a253 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 12:24:43 +0200 Subject: [PATCH 27/41] chore: allow local paths --- .github/actions/spelling/patterns/patterns.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index 1f0112e..ea88b29 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -11,3 +11,5 @@ Dataspace Connector dataspace-connector Metadata Broker http://keepachangelog.com +`/dataspaceconnector/config/` +`config.json` From 5b910ff52e08885e19c4f33aca58642950aad413 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 12:26:14 +0200 Subject: [PATCH 28/41] chore: ignore yaml files --- .github/actions/spelling/excludes.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/actions/spelling/excludes.txt b/.github/actions/spelling/excludes.txt index 4ef8ad3..f8d619c 100644 --- a/.github/actions/spelling/excludes.txt +++ b/.github/actions/spelling/excludes.txt @@ -13,3 +13,5 @@ ignore$ \.mp[34]$ \.png$ \.wav$ +\.yml$ +\.yaml$ From 84db86e66ab32b748c7a1cabcdacfb1aa696cebf Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 12:30:44 +0200 Subject: [PATCH 29/41] chore: minikube -> Minikube --- .github/actions/spelling/allow/allow.txt | 3 +++ .github/actions/spelling/patterns/patterns.txt | 1 + dataspace-connector/slim/k8s/README.md | 6 +++--- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/actions/spelling/allow/allow.txt b/.github/actions/spelling/allow/allow.txt index e735094..9ba23b5 100644 --- a/.github/actions/spelling/allow/allow.txt +++ b/.github/actions/spelling/allow/allow.txt @@ -10,3 +10,6 @@ tbd PostgreSQL URLs Uninstall +kubectl +Minikube +Helm diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index ea88b29..f756160 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -13,3 +13,4 @@ Metadata Broker http://keepachangelog.com `/dataspaceconnector/config/` `config.json` +app.kubernetes.io diff --git a/dataspace-connector/slim/k8s/README.md b/dataspace-connector/slim/k8s/README.md index 90cc240..33b8522 100644 --- a/dataspace-connector/slim/k8s/README.md +++ b/dataspace-connector/slim/k8s/README.md @@ -23,9 +23,9 @@ This example can not be used with the current IDS Metadata Broker off-the-shelf, --- ### Prerequisites - - git - - minikube - - helm + - Git + - Minikube + - Helm ### Install Steps - Clone the Dataspace Connector repo From dc2015e759a230cda4d0fe11bf27b1b56f41674d Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 12:32:40 +0200 Subject: [PATCH 30/41] chore: allow helm command --- .github/actions/spelling/allow/allow.txt | 1 + .github/actions/spelling/patterns/patterns.txt | 1 + dataspace-connector/slim/README.md | 2 +- dataspace-connector/slim/docker/README.md | 2 +- dataspace-connector/slim/k8s/README.md | 2 +- 5 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/actions/spelling/allow/allow.txt b/.github/actions/spelling/allow/allow.txt index 9ba23b5..7a0a552 100644 --- a/.github/actions/spelling/allow/allow.txt +++ b/.github/actions/spelling/allow/allow.txt @@ -8,6 +8,7 @@ Kubernetes bugfix tbd PostgreSQL +URL URLs Uninstall kubectl diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index f756160..544d650 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -14,3 +14,4 @@ http://keepachangelog.com `/dataspaceconnector/config/` `config.json` app.kubernetes.io +helm install dataspaceconnector charts/dataspace-connector \ No newline at end of file diff --git a/dataspace-connector/slim/README.md b/dataspace-connector/slim/README.md index a60a492..09ff976 100644 --- a/dataspace-connector/slim/README.md +++ b/dataspace-connector/slim/README.md @@ -7,7 +7,7 @@ This is the **Slim Setup** of the Dataspace Connector. -In this setup only the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) and Postgres as database are started, without Camel, ConfigurationManager and UI. +In this setup only the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) and PostgreSQL as database are started, without Camel, ConfigurationManager and UI. This allows us to only using the core functionalities of the Dataspace Connector without having an graphical user interface and the logic of the ConfigurationManager to install IDS Apps and configure Camel routes. diff --git a/dataspace-connector/slim/docker/README.md b/dataspace-connector/slim/docker/README.md index d7fbb0e..9a96c12 100644 --- a/dataspace-connector/slim/docker/README.md +++ b/dataspace-connector/slim/docker/README.md @@ -7,7 +7,7 @@ This is a deployment example for the **Slim Setup** of the Dataspace Connector. -In this setup only the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) and Postgres as database are started, without Camel, ConfigurationManager and UI. +In this setup only the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) and PostgreSQL as database are started, without Camel, ConfigurationManager and UI. This allows us to only using the core functionalities of the Dataspace Connector without having an graphical user interface and the logic of the ConfigurationManager to install IDS Apps and configure Camel routes. diff --git a/dataspace-connector/slim/k8s/README.md b/dataspace-connector/slim/k8s/README.md index 33b8522..d1cef27 100644 --- a/dataspace-connector/slim/k8s/README.md +++ b/dataspace-connector/slim/k8s/README.md @@ -7,7 +7,7 @@ This is the **Slim Setup** of the Dataspace Connector. -In this setup only the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) and Postgres as database are started, without Camel, ConfigurationManager and UI. +In this setup only the [Dataspace Connector](https://github.com/International-Data-Spaces-Association/DataspaceConnector) and PostgreSQL as database are started, without Camel, ConfigurationManager and UI. This allows us to only using the core functionalities of the Dataspace Connector without having an graphical user interface and the logic of the ConfigurationManager to install IDS Apps and configure Camel routes. From 8eb8134f4bb6c5a7984fb79d39c6b87772fae240 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 12:33:45 +0200 Subject: [PATCH 31/41] chore: add eof --- .github/actions/spelling/patterns/patterns.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index 544d650..dfe5666 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -14,4 +14,4 @@ http://keepachangelog.com `/dataspaceconnector/config/` `config.json` app.kubernetes.io -helm install dataspaceconnector charts/dataspace-connector \ No newline at end of file +helm install dataspaceconnector charts/dataspace-connector From 28cae6fca87c1e3633a5b9779e6d2d04ef5335b4 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 12:37:43 +0200 Subject: [PATCH 32/41] chore: ignore command line --- .github/actions/spelling/patterns/patterns.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index dfe5666..3eaf4a5 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -13,5 +13,5 @@ Metadata Broker http://keepachangelog.com `/dataspaceconnector/config/` `config.json` -app.kubernetes.io +export POD_NAME=\$\(*\) helm install dataspaceconnector charts/dataspace-connector From ee381c348aebdfb6a1b64a0222858c30c674a5b0 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 12:41:08 +0200 Subject: [PATCH 33/41] chore: allow username --- .github/actions/spelling/allow/allow.txt | 1 + .github/actions/spelling/patterns/patterns.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/spelling/allow/allow.txt b/.github/actions/spelling/allow/allow.txt index 7a0a552..609b99f 100644 --- a/.github/actions/spelling/allow/allow.txt +++ b/.github/actions/spelling/allow/allow.txt @@ -14,3 +14,4 @@ Uninstall kubectl Minikube Helm +username diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index 3eaf4a5..4b4950c 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -13,5 +13,5 @@ Metadata Broker http://keepachangelog.com `/dataspaceconnector/config/` `config.json` -export POD_NAME=\$\(*\) +export POD_NAME=\$\((.*?)\) helm install dataspaceconnector charts/dataspace-connector From f11e3cf90251344744ca1f93fa393ad01e99c5f5 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 12:43:55 +0200 Subject: [PATCH 34/41] chore: allow namespace --- .github/actions/spelling/allow/allow.txt | 1 + .github/actions/spelling/patterns/patterns.txt | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.github/actions/spelling/allow/allow.txt b/.github/actions/spelling/allow/allow.txt index 609b99f..4514738 100644 --- a/.github/actions/spelling/allow/allow.txt +++ b/.github/actions/spelling/allow/allow.txt @@ -15,3 +15,4 @@ kubectl Minikube Helm username +namespace diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index 4b4950c..7e2ecab 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -14,4 +14,6 @@ http://keepachangelog.com `/dataspaceconnector/config/` `config.json` export POD_NAME=\$\((.*?)\) +export CONTAINER_PORT=\$\((.*?)\) helm install dataspaceconnector charts/dataspace-connector +helm uninstall dataspaceconnector From fe8485534cb3d838dbe1a109e2d9e885e1fa4662 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 12:50:48 +0200 Subject: [PATCH 35/41] chore: allow href and src --- .github/actions/spelling/allow/allow.txt | 2 ++ .github/actions/spelling/patterns/patterns.txt | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/actions/spelling/allow/allow.txt b/.github/actions/spelling/allow/allow.txt index 4514738..5def68c 100644 --- a/.github/actions/spelling/allow/allow.txt +++ b/.github/actions/spelling/allow/allow.txt @@ -16,3 +16,5 @@ Minikube Helm username namespace +href +src diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index 7e2ecab..5d41e82 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -17,3 +17,4 @@ export POD_NAME=\$\((.*?)\) export CONTAINER_PORT=\$\((.*?)\) helm install dataspaceconnector charts/dataspace-connector helm uninstall dataspaceconnector +^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))? From 55a74e5d3e387c67877fc01913f799b7f08d565e Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 12:54:30 +0200 Subject: [PATCH 36/41] chore: dont ignore html --- .github/actions/spelling/patterns/patterns.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index 5d41e82..7e2ecab 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -17,4 +17,3 @@ export POD_NAME=\$\((.*?)\) export CONTAINER_PORT=\$\((.*?)\) helm install dataspaceconnector charts/dataspace-connector helm uninstall dataspaceconnector -^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))? From 3e2e5a554aac73229a92e99cba008888b43ec88d Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 12:57:37 +0200 Subject: [PATCH 37/41] chore: allow img --- .github/actions/spelling/allow/allow.txt | 1 + .github/actions/spelling/patterns/patterns.txt | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/actions/spelling/allow/allow.txt b/.github/actions/spelling/allow/allow.txt index 5def68c..7349abd 100644 --- a/.github/actions/spelling/allow/allow.txt +++ b/.github/actions/spelling/allow/allow.txt @@ -18,3 +18,4 @@ username namespace href src +img diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index 7e2ecab..0f8ec49 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -1,7 +1,6 @@ # ignore long runs of a single character: \b([A-Za-z])\g{-1}{3,}\b https://(?:[a-z-]+\.|)github(?:usercontent|)\.com/[-a-zA-Z0-9?%&=_\/.]* -https://(?:[a-z-]+\.|)localhost/[-a-zA-Z0-9?%&=_\/.]* https://(?:[a-z-]+\.|)github\.io/[-a-zA-Z0-9?%&=_\/.]* https://(?:(?:[-a-zA-Z0-9?&=]*\.|)internationaldataspaces\.org)/[-a-zA-Z0-9?&=_#\/.]* https://deepsource.io/blog/git-branch-naming-conventions/ @@ -17,3 +16,6 @@ export POD_NAME=\$\((.*?)\) export CONTAINER_PORT=\$\((.*?)\) helm install dataspaceconnector charts/dataspace-connector helm uninstall dataspaceconnector +https://localhost:8080/api/docs +http://localhost:8081/swagger-ui/index.html?url=/v3/api-docs/ +http://localhost:8082/dashboard From 033c1500895d8e0ea8446351d230ff247d1e2b76 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 12:59:31 +0200 Subject: [PATCH 38/41] chore: fix pattern --- .github/actions/spelling/patterns/patterns.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index 0f8ec49..841f060 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -17,5 +17,5 @@ export CONTAINER_PORT=\$\((.*?)\) helm install dataspaceconnector charts/dataspace-connector helm uninstall dataspaceconnector https://localhost:8080/api/docs -http://localhost:8081/swagger-ui/index.html?url=/v3/api-docs/ -http://localhost:8082/dashboard +http://localhost:8081/swagger-ui/index\.html\?url=/v3/api-docs/ +http://localhost:8082/dashboard \ No newline at end of file From c0c1a5c0c90264abc23d0257ffe84c5e59cdbacc Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 13:09:15 +0200 Subject: [PATCH 39/41] chore: add eof --- .github/actions/spelling/patterns/patterns.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/spelling/patterns/patterns.txt b/.github/actions/spelling/patterns/patterns.txt index 841f060..73fa1d0 100644 --- a/.github/actions/spelling/patterns/patterns.txt +++ b/.github/actions/spelling/patterns/patterns.txt @@ -18,4 +18,4 @@ helm install dataspaceconnector charts/dataspace-connector helm uninstall dataspaceconnector https://localhost:8080/api/docs http://localhost:8081/swagger-ui/index\.html\?url=/v3/api-docs/ -http://localhost:8082/dashboard \ No newline at end of file +http://localhost:8082/dashboard From c0beb624fc5e147319912417c2179882fa41e990 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 13:21:27 +0200 Subject: [PATCH 40/41] chore: update changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7cc4dc6..91a8cfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog All notable changes to this project will be documented in this file. +## 2021-06-22 + +### Added +- Add spellchecking + ## 2021-06-16 ### Added From 1e446c1aabc730adf96b8424c72f266e836348c7 Mon Sep 17 00:00:00 2001 From: Brian-Frederik Jahnke Date: Tue, 22 Jun 2021 13:24:13 +0200 Subject: [PATCH 41/41] chore: update changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91a8cfa..a829775 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. ## 2021-06-22 ### Added -- Add spellchecking +- Add spell checking ## 2021-06-16