Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update setup docu #627

Merged
merged 1 commit into from
Dec 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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