-
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.
- Loading branch information
Showing
1 changed file
with
25 additions
and
7 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,33 @@ | ||
## 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. Deploy the application |