From 2b53c094a55e8a4292b2a35556c193cd7a20b782 Mon Sep 17 00:00:00 2001 From: Nick Nachefski Date: Fri, 8 Mar 2019 13:13:18 -0600 Subject: [PATCH 1/2] Update InstallingCodeReadyWorkspacesOnOpenShift.md fixed sed line --- InstallingCodeReadyWorkspacesOnOpenShift.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/InstallingCodeReadyWorkspacesOnOpenShift.md b/InstallingCodeReadyWorkspacesOnOpenShift.md index 960f62e..780aa8b 100644 --- a/InstallingCodeReadyWorkspacesOnOpenShift.md +++ b/InstallingCodeReadyWorkspacesOnOpenShift.md @@ -55,7 +55,7 @@ To provide enough storage for multiple workspaces, I am setting the size of this These parameters are passed via `config.yaml` file that you get along with the deploy script. ``` -$ sed -i.bak -e "s/CHE_INFRA_KUBERNETES_PVC_QUANTITY: \"\"/CHE_INFRA_KUBERNETES_PVC_QUANTITY: \"5Gi\"/" config.yaml +$ sed -i '/CHE_INFRA_KUBERNETES_PVC_QUANTITY/s/1Gi/5Gi/' config.yaml ``` Run the installer with the command `$ ./deploy.sh --deploy --project=wrkspc` and observe the output. The installer spins up an operator that does the installation of CodeReady Workspace Master, Keycloak server and the backend Postgresql database. @@ -145,4 +145,4 @@ You will now see the KeyCloak dashboard. Click on the `Users` menu on the left and `View all users` to see the list of users. You should see the self registered user there. Explore all the options you have to manage the users here. -![](./images/9.InstallCodeReady.png) \ No newline at end of file +![](./images/9.InstallCodeReady.png) From cb361234efe63b8ab34307e46a34fc04a673830a Mon Sep 17 00:00:00 2001 From: Nick Nachefski Date: Fri, 8 Mar 2019 13:27:25 -0600 Subject: [PATCH 2/2] Update InstallingCodeReadyWorkspacesOnOpenShift.md fixed sed line, again --- InstallingCodeReadyWorkspacesOnOpenShift.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InstallingCodeReadyWorkspacesOnOpenShift.md b/InstallingCodeReadyWorkspacesOnOpenShift.md index 780aa8b..59fc332 100644 --- a/InstallingCodeReadyWorkspacesOnOpenShift.md +++ b/InstallingCodeReadyWorkspacesOnOpenShift.md @@ -55,7 +55,7 @@ To provide enough storage for multiple workspaces, I am setting the size of this These parameters are passed via `config.yaml` file that you get along with the deploy script. ``` -$ sed -i '/CHE_INFRA_KUBERNETES_PVC_QUANTITY/s/1Gi/5Gi/' config.yaml +$ sed -i '/CHE_INFRA_KUBERNETES_PVC_QUANTITY/s/""/"5Gi"/' config.yaml ``` Run the installer with the command `$ ./deploy.sh --deploy --project=wrkspc` and observe the output. The installer spins up an operator that does the installation of CodeReady Workspace Master, Keycloak server and the backend Postgresql database.