Skip to content

Commit

Permalink
Update terraform & documentation for new CRD helm chart
Browse files Browse the repository at this point in the history
  • Loading branch information
sgraband authored and jfaltermeier committed Aug 1, 2023
1 parent ba1fb28 commit d036b9a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ helm repo update

helm install theia-cloud-base theia-cloud-remote/theia-cloud-base --set issuer.email=your-mail@example.com

helm install theia-cloud-crds theia-cloud-remote/theia-cloud-crds --namespace theiacloud --create-namespace

helm install theia-cloud theia-cloud-remote/theia-cloud --namespace theiacloud --create-namespace

# Optional: switch to the newly created namespace
Expand Down
2 changes: 2 additions & 0 deletions doc/docs/Install.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ helm repo update

helm install theia-cloud-base theia-cloud-remote/theia-cloud-base --set issuer.email=your-mail@example.com

helm install theia-cloud-crds theia-cloud-remote/theia-cloud-crds --namespace theiacloud --create-namespace

helm install theia-cloud theia-cloud-remote/theia-cloud --namespace theiacloud --create-namespace

# Uninstall
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ provider "helm" {
}
}

resource "helm_release" "theia-cloud-crds" {
name = "theia-cloud-crds"
chart = "../../../../theia-cloud-helm/charts/theia-cloud-crds"
namespace = "theiacloud"
create_namespace = true
}

resource "helm_release" "theia-cloud-base" {
name = "theia-cloud-base"
chart = "../../../../theia-cloud-helm/charts/theia.cloud-base"
Expand Down

0 comments on commit d036b9a

Please sign in to comment.