Skip to content

Commit

Permalink
update setup docu (#627)
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikPinsel authored Dec 21, 2022
1 parent 7e5dc4b commit 5545e19
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
4 changes: 2 additions & 2 deletions charts/tractusx-connector/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ controlplane:
# -- [Kubernetes image pull policy](https://kubernetes.io/docs/concepts/containers/images/#image-pull-policy) to use
pullPolicy: IfNotPresent
# -- Overrides the image tag whose default is the chart appVersion
tag: "0.1.2"
tag: ""
initContainers: []
debug:
enabled: false
Expand Down Expand Up @@ -264,7 +264,7 @@ dataplane:
# -- [Kubernetes image pull policy](https://kubernetes.io/docs/concepts/containers/images/#image-pull-policy) to use
pullPolicy: IfNotPresent
# -- Overrides the image tag whose default is the chart appVersion
tag: "0.1.2"
tag: ""
initContainers: []
debug:
enabled: false
Expand Down
19 changes: 15 additions & 4 deletions docs/samples/Local TXDC Setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,15 @@ set can be skipped, as it's only used by AWS S3 Transfer Business Tests. Also, t
mandatory to try out the EDC. So it can be disabled as well.

```sh
helm install -n tractusx infrastructure edc-tests/src/main/resources/deployment/helm/supporting-infrastructure \
--set install.minio=false --set install.postgresql=false
helm dependency update edc-tests/src/main/resources/deployment/helm/supporting-infrastructure
```

```sh
helm install infrastructure edc-tests/src/main/resources/deployment/helm/supporting-infrastructure \
--namespace tractusx \
--create-namespace \
--set install.minio=false \
--set install.postgresql=false
```

### Plato Connector
Expand All @@ -55,7 +62,9 @@ Deployment has a DAPS Client and Vault Secrets configured accordingly. So that t
Install Plato by running the following command from the project root directory.

```sh
helm install -n tractusx plato charts/tractusx-connector \
helm install plato charts/tractusx-connector \
--namespace tractusx \
--create-namespace \
--set fullnameOverride=plato \
--set controlplane.service.type=NodePort \
--set controlplane.endpoints.data.authKey=password \
Expand Down Expand Up @@ -85,7 +94,9 @@ Client ID with different public-/private keys.
Install Sokrates by running the following command from the project root directory.

```shell
helm install -n tractusx sokrates charts/tractusx-connector \
helm install sokrates charts/tractusx-connector \
--namespace tractusx \
--create-namespace \
--set fullnameOverride=sokrates \
--set controlplane.service.type=NodePort \
--set controlplane.endpoints.data.authKey=password \
Expand Down

0 comments on commit 5545e19

Please sign in to comment.