Skip to content

Commit

Permalink
chore: adjust readme links
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil91 committed Apr 9, 2024
1 parent bd21e09 commit a91beba
Show file tree
Hide file tree
Showing 8 changed files with 44 additions and 19 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## About this project

This repository contains the backend code for the Integration layer between DIM solution and Tractus-X Portal written in C#. It's used to create a wallet and configure all needed information.
This repository contains the code for the Integration layer between Digital Identity Management (DIM) solution and Tractus-X Portal written in C#. It's used to create a wallet and configure all needed information.

For **installation** details and further information, please refer to the chart specific [README](./charts/dim/README.md).

Expand Down
4 changes: 2 additions & 2 deletions charts/dim/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
apiVersion: v2
name: dim
type: application
version: 0.0.2
appVersion: 0.0.2
version: 1.0.0
appVersion: 1.0.0
description: Helm chart for DIM Middle Layer
home: https://github.com/catenax-ng/dim-repo
dependencies:
Expand Down
14 changes: 7 additions & 7 deletions charts/dim/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@ The referenced container images are for demonstration purposes only.
To install the chart with the release name `dim`:

```shell
$ helm repo add dim-repo https://phil91.github.io/dim-client
$ helm install dim dim-repo/dim
$ helm repo add ssi-dim-middle-layer https://sap.github.io/ssi-dim-middle-layer
$ helm install dim ssi-dim-middle-layer/dim
```

To install the helm chart into your cluster with your values:

```shell
$ helm install -f your-values.yaml dim dim-repo/dim
$ helm install -f your-values.yaml dim ssi-dim-middle-layer/dim
```

To use the helm chart as a dependency:

```yaml
dependencies:
- name: dim
repository: https://phil91.github.io/dim-client
repository: https://sap.github.io/ssi-dim-middle-layer
version: 0.0.2
```
Expand All @@ -40,7 +40,7 @@ dependencies:
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| dim.image.name | string | `"ghcr.io/phil91/dim-client_dim-service"` | |
| dim.image.name | string | `"ghcr.io/sap/dim-client_dim-service"` | |
| dim.image.tag | string | `""` | |
| dim.imagePullPolicy | string | `"IfNotPresent"` | |
| dim.resources | object | `{"limits":{"cpu":"45m","memory":"300M"},"requests":{"cpu":"15m","memory":"300M"}}` | We recommend to review the default resource limits as this should a conscious choice. |
Expand All @@ -53,15 +53,15 @@ dependencies:
| dim.rootDirectoryId | string | `"00000000-0000-0000-0000-000000000000"` | |
| dim.operatorId | string | `"00000000-0000-0000-0000-000000000000"` | |
| migrations.name | string | `"migrations"` | |
| migrations.image.name | string | `"ghcr.io/phil91/dim-client_dim-migrations"` | |
| migrations.image.name | string | `"ghcr.io/sap/dim-client_dim-migrations"` | |
| migrations.image.tag | string | `""` | |
| migrations.imagePullPolicy | string | `"IfNotPresent"` | |
| migrations.resources | object | `{"limits":{"cpu":"45m","memory":"200M"},"requests":{"cpu":"15m","memory":"200M"}}` | We recommend to review the default resource limits as this should a conscious choice. |
| migrations.seeding.testDataEnvironments | string | `""` | |
| migrations.seeding.testDataPaths | string | `"Seeder/Data"` | |
| migrations.logging.default | string | `"Information"` | |
| processesworker.name | string | `"processesworker"` | |
| processesworker.image.name | string | `"ghcr.io/phil91/dim-client_dim-processes-worker"` | |
| processesworker.image.name | string | `"ghcr.io/sap/dim-client_dim-processes-worker"` | |
| processesworker.image.tag | string | `""` | |
| processesworker.imagePullPolicy | string | `"IfNotPresent"` | |
| processesworker.resources | object | `{"limits":{"cpu":"45m","memory":"300M"},"requests":{"cpu":"15m","memory":"300M"}}` | We recommend to review the default resource limits as this should a conscious choice. |
Expand Down
8 changes: 4 additions & 4 deletions charts/dim/README.md.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@ The referenced container images are for demonstration purposes only.
To install the chart with the release name `{{ template "chart.name" . }}`:

```shell
$ helm repo add dim-repo https://phil91.github.io/dim-client
$ helm install {{ template "chart.name" . }} dim-repo/{{ template "chart.name" . }}
$ helm repo add ssi-dim-middle-layer https://sap.github.io/ssi-dim-middle-layer
$ helm install {{ template "chart.name" . }} ssi-dim-middle-layer/{{ template "chart.name" . }}
```

To install the helm chart into your cluster with your values:

```shell
$ helm install -f your-values.yaml {{ template "chart.name" . }} dim-repo/{{ template "chart.name" . }}
$ helm install -f your-values.yaml {{ template "chart.name" . }} ssi-dim-middle-layer/{{ template "chart.name" . }}
```

To use the helm chart as a dependency:

```yaml
dependencies:
- name: {{ template "chart.name" . }}
repository: https://phil91.github.io/dim-client
repository: https://sap.github.io/ssi-dim-middle-layer
version: {{ template "chart.version" . }}
```

Expand Down
6 changes: 3 additions & 3 deletions charts/dim/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

dim:
image:
name: "ghcr.io/phil91/dim-client_dim-service"
name: "ghcr.io/sap/dim-client_dim-service"
tag: ""
imagePullPolicy: "IfNotPresent"
# -- We recommend to review the default resource limits as this should a conscious choice.
Expand Down Expand Up @@ -47,7 +47,7 @@ dim:
migrations:
name: "migrations"
image:
name: "ghcr.io/phil91/dim-client_dim-migrations"
name: "ghcr.io/sap/dim-client_dim-migrations"
tag: ""
imagePullPolicy: "IfNotPresent"
# -- We recommend to review the default resource limits as this should a conscious choice.
Expand All @@ -67,7 +67,7 @@ migrations:
processesworker:
name: "processesworker"
image:
name: "ghcr.io/phil91/dim-client_dim-processes-worker"
name: "ghcr.io/sap/dim-client_dim-processes-worker"
tag: ""
imagePullPolicy: "IfNotPresent"
# -- We recommend to review the default resource limits as this should a conscious choice.
Expand Down
2 changes: 1 addition & 1 deletion consortia/argocd-app-templates/appsetup-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
server: 'https://kubernetes.default.svc'
source:
path: charts/dim
repoURL: 'https://github.com/phil91/dim-client.git'
repoURL: 'https://github.com/sap/dim-client.git'
targetRevision: main
plugin:
env:
Expand Down
2 changes: 1 addition & 1 deletion consortia/argocd-app-templates/appsetup-int.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
server: 'https://kubernetes.default.svc'
source:
path: charts/dim
repoURL: 'https://github.com/phil91/dim-client.git'
repoURL: 'https://github.com/sap/dim-client.git'
targetRevision: dim-0.0.2
plugin:
env:
Expand Down
25 changes: 25 additions & 0 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!--
- Copyright (c) 2024 BMW Group AG
-
- See the NOTICE file(s) distributed with this work for additional
- information regarding copyright ownership.
-
- This program and the accompanying materials are made available under the
- terms of the Apache License, Version 2.0 which is available at
- https://www.apache.org/licenses/LICENSE-2.0.
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
- WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
- License for the specific language governing permissions and limitations
- under the License.
-
- SPDX-License-Identifier: Apache-2.0
-->

<Project>
<PropertyGroup>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
</PropertyGroup>
</Project>

0 comments on commit a91beba

Please sign in to comment.