-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #112 from catenax-ng/local-install
chore: Local installation
- Loading branch information
Showing
4 changed files
with
187 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,36 @@ | ||
## Installation Steps | ||
|
||
Helm charts are provided inside https://github.com/eclipse-tractusx/managed-service-orchestrator | ||
|
||
- Using helm commands <br /> | ||
A helm chart is provided inside the [charts](charts/orchestrator) directory | ||
|
||
How to install application using helm: <br /> | ||
helm install ReleaseName ChartName | ||
|
||
helm install [ReleaseName] [ChartName] | ||
|
||
1.) Installation from released chart: <br /> | ||
|
||
a.) Add helm repository in tractusx: | ||
helm repo add tractusx https://eclipse-tractusx.github.io/charts/dev | ||
helm repo add tractusx-dev https://eclipse-tractusx.github.io/charts/dev | ||
b.) To search the specific repo in helm repositories | ||
helm search repo tractusx/managed-service-orchestrator | ||
helm search repo tractusx-dev/managed-service-orchestrator | ||
c.) To install using helm command: | ||
helm install orchestrator tractusx/managed-service-orchestrator | ||
helm install orchestrator tractusx-dev/managed-service-orchestrator | ||
|
||
2.) Local installation: | ||
|
||
a. Install Kubeapps on your local Kubernetes cluster. | ||
Installation for kubeapps can be taken from reference https://docs.bitnami.com/tutorials/install-use-kubeapps | ||
|
||
b. Add Package repository in Kubeapps https://eclipse-tractusx.github.io/charts/dev/ | ||
|
||
c. Create namespace through Kubeapps | ||
|
||
d. Select the Package Repository which was added in step 2 | ||
|
||
e. Select managed-service-orchestrator from the Catalog | ||
|
||
f. To set your own configuration and secret values in values file | ||
|
||
g. Below database details are mandatory to provide, other than that all secrets can be just default: | ||
postgresql.auth.username, postgresql.auth.password, postgresql.auth.postgresPassword, postgresql.auth.database | ||
|
||
h. Deploy the application |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters