From 73579fdb8c1b689d74a4d890b5c33f533c16d712 Mon Sep 17 00:00:00 2001 From: Armel Soro Date: Thu, 3 Aug 2023 09:44:09 +0200 Subject: [PATCH 1/7] Add section explaining that users can use Podman without a cluster --- docs/website/docs/user-guides/quickstart/quickstart.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/website/docs/user-guides/quickstart/quickstart.md b/docs/website/docs/user-guides/quickstart/quickstart.md index 15a0373e2a5..869e3b1f4a4 100644 --- a/docs/website/docs/user-guides/quickstart/quickstart.md +++ b/docs/website/docs/user-guides/quickstart/quickstart.md @@ -4,9 +4,14 @@ title: Quickstart Guide # Quickstart Guide -In this guide, we will be using `odo` to create a "Hello World" application. +In this guide, we will be using `odo` to create a "Hello World" application, and then start a container-based development session using `odo`. -You have the option of choosing from the following frameworks for the quickstart guide: +You have the option of developing and iterating locally against local [Podman](https://podman.io/) containers or any Kubernetes or OpenShift cluster. + +A recommended way to get started with `odo` is to iterate on the application locally with Podman, as it does not require any additional clusters to be setup or available. +Later on, you can seamlessly run and iterate on the same application against a Kubernetes or OpenShift cluster. + +This quickstart guide will show you how easy it can be get started with `odo`. You have the option of choosing from the following frameworks: * [Node.js](nodejs) * [.NET](dotnet) * [Java (Spring Boot)](java) From 3291dd20ef976272313c2487f417f9bd195453f3 Mon Sep 17 00:00:00 2001 From: Armel Soro Date: Thu, 3 Aug 2023 09:45:08 +0200 Subject: [PATCH 2/7] Update sample output of `npx express-generator` in Node.JS guide --- docs/website/docs/user-guides/quickstart/nodejs.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/website/docs/user-guides/quickstart/nodejs.md b/docs/website/docs/user-guides/quickstart/nodejs.md index 2ca17bad522..0ce3ba3cce6 100644 --- a/docs/website/docs/user-guides/quickstart/nodejs.md +++ b/docs/website/docs/user-guides/quickstart/nodejs.md @@ -43,6 +43,7 @@ $ npx express-generator warning: the default view engine will not be jade in future releases warning: use `--view=jade' or `--help' for additional options +destination is not empty, continue? [y/N] y create : public/ create : public/javascripts/ From 5cdc6652d1dd2affac3687d3dde19dc5ddcb423c Mon Sep 17 00:00:00 2001 From: Armel Soro Date: Thu, 3 Aug 2023 09:47:51 +0200 Subject: [PATCH 3/7] Add section for preparing the target platform with tabs for Podman, Kubernetes and OpenShift On Podman, this means checking the prerequisites (e.g., min. version of odo, checking that Podman is detected with `odo version`). On Kubernetes and OpenShift, this is about creating a namespace or project, as before. --- ....mdx => preparing_the_target_platform.mdx} | 33 +++++++++++++++++-- .../docs/user-guides/quickstart/dotnet.md | 6 ++-- .../website/docs/user-guides/quickstart/go.md | 6 ++-- .../docs/user-guides/quickstart/java.md | 6 ++-- .../docs/user-guides/quickstart/nodejs.md | 6 ++-- 5 files changed, 43 insertions(+), 14 deletions(-) rename docs/website/docs/user-guides/quickstart/docs-mdx/{connecting_to_the_cluster_description.mdx => preparing_the_target_platform.mdx} (59%) diff --git a/docs/website/docs/user-guides/quickstart/docs-mdx/connecting_to_the_cluster_description.mdx b/docs/website/docs/user-guides/quickstart/docs-mdx/preparing_the_target_platform.mdx similarity index 59% rename from docs/website/docs/user-guides/quickstart/docs-mdx/connecting_to_the_cluster_description.mdx rename to docs/website/docs/user-guides/quickstart/docs-mdx/preparing_the_target_platform.mdx index 0aa1a3dc5dc..395b5e0ff8e 100644 --- a/docs/website/docs/user-guides/quickstart/docs-mdx/connecting_to_the_cluster_description.mdx +++ b/docs/website/docs/user-guides/quickstart/docs-mdx/preparing_the_target_platform.mdx @@ -5,9 +5,38 @@ import CreateProjectOutput from './create_project_output.mdx'; + + + +Before starting on Podman, you should have Podman installed and configured properly on your machine. +See [Podman installation instructions](https://podman.io/docs/installation) for further details. + +You also need `odo` [3.8.0](/blog/odo-v3.8.0#odo-on-podman-out-of-experimental-mode) or later. + +To make sure that `odo` has the appropriate version and detects your local Podman, +run the command below and check that it reports the Podman Client version. + +```console +odo version +``` +
+ Sample Output + +```console +$ odo version + ⚠ unable to fetch the cluster server version +odo v3.13.0 (6c1c8b2a1) + +Podman Client: 4.6.0 +``` + +
+ +
+ -Before starting you should make sure that odo is connected to your cluster and that you have created a new namespace. +Before starting, you should make sure that odo is connected to your cluster and that you have created a new namespace. ### Creating a new namespace @@ -26,7 +55,7 @@ odo create namespace odo-dev -Before starting you should make sure that odo is connected to your cluster and that you have created a new project. +Before starting, you should make sure that odo is connected to your cluster and that you have created a new project. ### Login to OpenShift Cluster diff --git a/docs/website/docs/user-guides/quickstart/dotnet.md b/docs/website/docs/user-guides/quickstart/dotnet.md index a0082dcded6..61bcfd0ec19 100644 --- a/docs/website/docs/user-guides/quickstart/dotnet.md +++ b/docs/website/docs/user-guides/quickstart/dotnet.md @@ -44,11 +44,11 @@ Restore succeeded. Your source code has now been generated and created in the directory. -## Step 1. Connect to your cluster and create a new namespace or project +## Step 1. Preparing the target platform -import ConnectingToCluster from './docs-mdx/connecting_to_the_cluster_description.mdx'; +import PreparingTargetPlatform from './docs-mdx/preparing_the_target_platform.mdx'; - + ## Step 2. Initializing your application (`odo init`) diff --git a/docs/website/docs/user-guides/quickstart/go.md b/docs/website/docs/user-guides/quickstart/go.md index 94ccba00280..b7cd393fd0e 100644 --- a/docs/website/docs/user-guides/quickstart/go.md +++ b/docs/website/docs/user-guides/quickstart/go.md @@ -49,11 +49,11 @@ go: to add module requirements and sums: Your source code has now been generated and created in the directory. -## Step 1. Connect to your cluster and create a new namespace or project +## Step 1. Preparing the target platform -import ConnectingToCluster from './docs-mdx/connecting_to_the_cluster_description.mdx'; +import PreparingTargetPlatform from './docs-mdx/preparing_the_target_platform.mdx'; - + ## Step 2. Initializing your application (`odo init`) diff --git a/docs/website/docs/user-guides/quickstart/java.md b/docs/website/docs/user-guides/quickstart/java.md index 163b0d65374..1e5b5df2914 100644 --- a/docs/website/docs/user-guides/quickstart/java.md +++ b/docs/website/docs/user-guides/quickstart/java.md @@ -26,11 +26,11 @@ Finally, extract the downloaded source code archive in the 'quickstart-demo' dir Your source code has now been generated and created in the directory. -## Step 1. Connect to your cluster and create a new namespace or project +## Step 1. Preparing the target platform -import ConnectingToCluster from './docs-mdx/connecting_to_the_cluster_description.mdx'; +import PreparingTargetPlatform from './docs-mdx/preparing_the_target_platform.mdx'; - + ## Step 2. Initializing your application (`odo init`) diff --git a/docs/website/docs/user-guides/quickstart/nodejs.md b/docs/website/docs/user-guides/quickstart/nodejs.md index 0ce3ba3cce6..d9d978b9929 100644 --- a/docs/website/docs/user-guides/quickstart/nodejs.md +++ b/docs/website/docs/user-guides/quickstart/nodejs.md @@ -72,11 +72,11 @@ destination is not empty, continue? [y/N] y Your source code has now been generated and created in the directory. -## Step 1. Connect to your cluster and create a new namespace or project +## Step 1. Preparing the target platform -import ConnectingToCluster from './docs-mdx/connecting_to_the_cluster_description.mdx'; +import PreparingTargetPlatform from './docs-mdx/preparing_the_target_platform.mdx'; - + ## Step 2. Initializing your application (`odo init`) From 473d4bd7e2dca221c56d61315305e86eefa5f7ba Mon Sep 17 00:00:00 2001 From: Armel Soro Date: Thu, 3 Aug 2023 09:49:03 +0200 Subject: [PATCH 4/7] Update sample output for `odo dev` on cluster to reflect the current output --- .../quickstart/docs-mdx/dotnet/dotnet_odo_dev_output.mdx | 1 + .../user-guides/quickstart/docs-mdx/go/go_odo_dev_output.mdx | 1 + .../user-guides/quickstart/docs-mdx/java/java_odo_dev_output.mdx | 1 + .../quickstart/docs-mdx/nodejs/nodejs_odo_dev_output.mdx | 1 + 4 files changed, 4 insertions(+) diff --git a/docs/website/docs/user-guides/quickstart/docs-mdx/dotnet/dotnet_odo_dev_output.mdx b/docs/website/docs/user-guides/quickstart/docs-mdx/dotnet/dotnet_odo_dev_output.mdx index 2105a2f223a..04639e5bb02 100644 --- a/docs/website/docs/user-guides/quickstart/docs-mdx/dotnet/dotnet_odo_dev_output.mdx +++ b/docs/website/docs/user-guides/quickstart/docs-mdx/dotnet/dotnet_odo_dev_output.mdx @@ -7,6 +7,7 @@ $ odo dev \__/ ↪ Running on the cluster in Dev mode +I0803 09:25:31.736525 340486 starterserver.go:132] API Server started at localhost:20000/api/v1 • Waiting for Kubernetes resources ... ⚠ Pod is Pending ✓ Pod is Running diff --git a/docs/website/docs/user-guides/quickstart/docs-mdx/go/go_odo_dev_output.mdx b/docs/website/docs/user-guides/quickstart/docs-mdx/go/go_odo_dev_output.mdx index 459e302158f..f15b218cb73 100644 --- a/docs/website/docs/user-guides/quickstart/docs-mdx/go/go_odo_dev_output.mdx +++ b/docs/website/docs/user-guides/quickstart/docs-mdx/go/go_odo_dev_output.mdx @@ -7,6 +7,7 @@ $ odo dev \__/ ↪ Running on the cluster in Dev mode +I0803 09:25:31.736525 340486 starterserver.go:132] API Server started at localhost:20000/api/v1 • Waiting for Kubernetes resources ... ⚠ Pod is Pending ✓ Pod is Running diff --git a/docs/website/docs/user-guides/quickstart/docs-mdx/java/java_odo_dev_output.mdx b/docs/website/docs/user-guides/quickstart/docs-mdx/java/java_odo_dev_output.mdx index 69f4d4c0ea7..987d9a74a85 100644 --- a/docs/website/docs/user-guides/quickstart/docs-mdx/java/java_odo_dev_output.mdx +++ b/docs/website/docs/user-guides/quickstart/docs-mdx/java/java_odo_dev_output.mdx @@ -7,6 +7,7 @@ $ odo dev \__/ ↪ Running on the cluster in Dev mode +I0803 09:25:31.736525 340486 starterserver.go:132] API Server started at localhost:20000/api/v1 • Waiting for Kubernetes resources ... ✓ Added storage m2 to component ⚠ Pod is Pending diff --git a/docs/website/docs/user-guides/quickstart/docs-mdx/nodejs/nodejs_odo_dev_output.mdx b/docs/website/docs/user-guides/quickstart/docs-mdx/nodejs/nodejs_odo_dev_output.mdx index 91b9c3f343b..441090ac527 100644 --- a/docs/website/docs/user-guides/quickstart/docs-mdx/nodejs/nodejs_odo_dev_output.mdx +++ b/docs/website/docs/user-guides/quickstart/docs-mdx/nodejs/nodejs_odo_dev_output.mdx @@ -7,6 +7,7 @@ $ odo dev \__/ ↪ Running on the cluster in Dev mode +I0803 09:25:31.736525 340486 starterserver.go:132] API Server started at localhost:20000/api/v1 • Waiting for Kubernetes resources ... ⚠ Pod is Pending ✓ Pod is Running From 94ce2107545b0248dcb00f4fc2cdfa7af279e673 Mon Sep 17 00:00:00 2001 From: Armel Soro Date: Thu, 3 Aug 2023 09:50:18 +0200 Subject: [PATCH 5/7] Add Podman as new tab when running `odo dev` and include sample outputs --- .../dotnet/dotnet_odo_dev_podman_output.mdx | 24 ++++++++++ .../docs-mdx/go/go_odo_dev_podman_output.mdx | 24 ++++++++++ .../java/java_odo_dev_podman_output.mdx | 24 ++++++++++ .../nodejs/nodejs_odo_dev_podman_output.mdx | 24 ++++++++++ .../docs-mdx/odo_dev_description.mdx | 46 ++++++++++++++++--- .../docs/user-guides/quickstart/dotnet.md | 3 +- .../website/docs/user-guides/quickstart/go.md | 3 +- .../docs/user-guides/quickstart/java.md | 3 +- .../docs/user-guides/quickstart/nodejs.md | 3 +- 9 files changed, 144 insertions(+), 10 deletions(-) create mode 100644 docs/website/docs/user-guides/quickstart/docs-mdx/dotnet/dotnet_odo_dev_podman_output.mdx create mode 100644 docs/website/docs/user-guides/quickstart/docs-mdx/go/go_odo_dev_podman_output.mdx create mode 100644 docs/website/docs/user-guides/quickstart/docs-mdx/java/java_odo_dev_podman_output.mdx create mode 100644 docs/website/docs/user-guides/quickstart/docs-mdx/nodejs/nodejs_odo_dev_podman_output.mdx diff --git a/docs/website/docs/user-guides/quickstart/docs-mdx/dotnet/dotnet_odo_dev_podman_output.mdx b/docs/website/docs/user-guides/quickstart/docs-mdx/dotnet/dotnet_odo_dev_podman_output.mdx new file mode 100644 index 00000000000..7fd04c5524b --- /dev/null +++ b/docs/website/docs/user-guides/quickstart/docs-mdx/dotnet/dotnet_odo_dev_podman_output.mdx @@ -0,0 +1,24 @@ +```console +$ odo dev --platform podman + __ + / \__ Developing using the "my-dotnet-app" Devfile + \__/ \ Platform: podman + / \__/ odo version: v3.13.0 + \__/ + +↪ Running on podman in Dev mode + ✓ Deploying pod [14s] + ✓ Syncing files into the container [312ms] + ✓ Building your application in container (command: build) [7s] + • Executing the application (command: run) ... + ✓ Waiting for the application to be ready [1s] + - Forwarding from 127.0.0.1:20001 -> 3000 + +↪ Dev mode + Status: + Watching for changes in the current directory /home/user/quickstart-demo + + Keyboard Commands: +[Ctrl+c] - Exit and delete resources from podman + [p] - Manually apply local changes to the application on podman +``` \ No newline at end of file diff --git a/docs/website/docs/user-guides/quickstart/docs-mdx/go/go_odo_dev_podman_output.mdx b/docs/website/docs/user-guides/quickstart/docs-mdx/go/go_odo_dev_podman_output.mdx new file mode 100644 index 00000000000..080b3d45b3e --- /dev/null +++ b/docs/website/docs/user-guides/quickstart/docs-mdx/go/go_odo_dev_podman_output.mdx @@ -0,0 +1,24 @@ +```console +$ odo dev --platform podman + __ + / \__ Developing using the "my-go-app" Devfile + \__/ \ Platform: podman + / \__/ odo version: v3.13.0 + \__/ + +↪ Running on podman in Dev mode + ✓ Deploying pod [14s] + ✓ Syncing files into the container [312ms] + ✓ Building your application in container (command: build) [422ms] + • Executing the application (command: run) ... + ✓ Waiting for the application to be ready [1s] + - Forwarding from 127.0.0.1:20001 -> 3000 + +↪ Dev mode + Status: + Watching for changes in the current directory /home/user/quickstart-demo + + Keyboard Commands: +[Ctrl+c] - Exit and delete resources from podman + [p] - Manually apply local changes to the application on podman +``` \ No newline at end of file diff --git a/docs/website/docs/user-guides/quickstart/docs-mdx/java/java_odo_dev_podman_output.mdx b/docs/website/docs/user-guides/quickstart/docs-mdx/java/java_odo_dev_podman_output.mdx new file mode 100644 index 00000000000..0ad9f6af345 --- /dev/null +++ b/docs/website/docs/user-guides/quickstart/docs-mdx/java/java_odo_dev_podman_output.mdx @@ -0,0 +1,24 @@ +```console +$ odo dev --platform podman + __ + / \__ Developing using the "my-java-app" Devfile + \__/ \ Platform: podman + / \__/ odo version: v3.13.0 + \__/ + +↪ Running on podman in Dev mode + ✓ Deploying pod [6s] + ✓ Syncing files into the container [234ms] + ✓ Building your application in container (command: build) [43s] + • Executing the application (command: run) ... + ✓ Waiting for the application to be ready [1s] + - Forwarding from 127.0.0.1:20001 -> 8080 + +↪ Dev mode + Status: + Watching for changes in the current directory /home/user/quickstart-demo + + Keyboard Commands: +[Ctrl+c] - Exit and delete resources from podman + [p] - Manually apply local changes to the application on podman +``` \ No newline at end of file diff --git a/docs/website/docs/user-guides/quickstart/docs-mdx/nodejs/nodejs_odo_dev_podman_output.mdx b/docs/website/docs/user-guides/quickstart/docs-mdx/nodejs/nodejs_odo_dev_podman_output.mdx new file mode 100644 index 00000000000..b860e581710 --- /dev/null +++ b/docs/website/docs/user-guides/quickstart/docs-mdx/nodejs/nodejs_odo_dev_podman_output.mdx @@ -0,0 +1,24 @@ +```console +$ odo dev --platform podman + __ + / \__ Developing using the "my-nodejs-app" Devfile + \__/ \ Platform: podman + / \__/ odo version: v3.13.0 + \__/ + +↪ Running on podman in Dev mode + ✓ Deploying pod [14s] + ✓ Syncing files into the container [312ms] + ✓ Building your application in container (command: install) [6s] + • Executing the application (command: run) ... + ✓ Waiting for the application to be ready [1s] + - Forwarding from 127.0.0.1:20001 -> 3000 + +↪ Dev mode + Status: + Watching for changes in the current directory /home/user/quickstart-demo + + Keyboard Commands: +[Ctrl+c] - Exit and delete resources from podman + [p] - Manually apply local changes to the application on podman +``` \ No newline at end of file diff --git a/docs/website/docs/user-guides/quickstart/docs-mdx/odo_dev_description.mdx b/docs/website/docs/user-guides/quickstart/docs-mdx/odo_dev_description.mdx index a49b8aea949..931cecdfe22 100644 --- a/docs/website/docs/user-guides/quickstart/docs-mdx/odo_dev_description.mdx +++ b/docs/website/docs/user-guides/quickstart/docs-mdx/odo_dev_description.mdx @@ -1,3 +1,6 @@ +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; + Now that we've generated our code as well as our Devfile, let's start on development. `odo` uses [inner loop development](/docs/introduction#what-is-inner-loop-and-outer-loop) and allows you to code, @@ -7,16 +10,47 @@ Once you run `odo dev`, you can freely edit code in your favourite IDE and watch

Let's run odo dev to start development on your {props.framework} application:

-```console -odo dev -``` + -Then wait a few seconds until `odo dev` displays `Forwarding from 127.0.0.1:...` in its output, -meaning that `odo` has successfully set up the port forwarding to reach the application running in the container. + + + ```console + odo dev --platform podman + ``` +
+ Sample Output + {props.devpodmanout} +
+ +
+ + + + ```console + odo dev + ``` +
+ Sample Output + {props.devout} +
+ +
+ + + ```console + odo dev + ```
Sample Output {props.devout}
-You can now access the application via the local port displayed by `odo dev` ([127.0.0.1:20001](http://127.0.0.1:20001) in the sample output above) and start your development loop. `odo` will watch for changes and push the code for real-time updates. +
+
+ +Then wait a few seconds until `odo dev` displays `Forwarding from 127.0.0.1:...` in its output, +meaning that `odo` has successfully set up port forwarding to reach the application running in the container. + +You can now access the application via the local port displayed by `odo dev` ([127.0.0.1:20001](http://127.0.0.1:20001) in the sample output above) and start your development loop. +`odo` will watch for changes and push the code for real-time updates. diff --git a/docs/website/docs/user-guides/quickstart/dotnet.md b/docs/website/docs/user-guides/quickstart/dotnet.md index 61bcfd0ec19..d14efe645f2 100644 --- a/docs/website/docs/user-guides/quickstart/dotnet.md +++ b/docs/website/docs/user-guides/quickstart/dotnet.md @@ -64,10 +64,11 @@ When you first run `odo init`, it will detect the required devfile to be 'dotnet ## Step 3. Developing your application continuously (`odo dev`) import DevSampleOutput from './docs-mdx/dotnet/dotnet_odo_dev_output.mdx'; +import DevPodmanSampleOutput from './docs-mdx/dotnet/dotnet_odo_dev_podman_output.mdx'; import DevDescription from './docs-mdx/odo_dev_description.mdx'; - /> + devpodmanout= /> _You can now follow the [advanced guide](../advanced/deploy/dotnet.md) to deploy the application to production._ diff --git a/docs/website/docs/user-guides/quickstart/go.md b/docs/website/docs/user-guides/quickstart/go.md index b7cd393fd0e..511366b9713 100644 --- a/docs/website/docs/user-guides/quickstart/go.md +++ b/docs/website/docs/user-guides/quickstart/go.md @@ -65,10 +65,11 @@ import InitDescription from './docs-mdx/odo_init_description.mdx'; ## Step 3. Developing your application continuously (`odo dev`) import DevSampleOutput from './docs-mdx/go/go_odo_dev_output.mdx'; +import DevPodmanSampleOutput from './docs-mdx/go/go_odo_dev_podman_output.mdx'; import DevDescription from './docs-mdx/odo_dev_description.mdx'; - /> + devpodmanout= /> _You can now follow the [advanced guide](../advanced/deploy/go.md) to deploy the application to production._ diff --git a/docs/website/docs/user-guides/quickstart/java.md b/docs/website/docs/user-guides/quickstart/java.md index 1e5b5df2914..6f11dc2b373 100644 --- a/docs/website/docs/user-guides/quickstart/java.md +++ b/docs/website/docs/user-guides/quickstart/java.md @@ -43,9 +43,10 @@ import InitDescription from './docs-mdx/odo_init_description.mdx'; ## Step 3. Developing your application continuously (`odo dev`) import DevSampleOutput from './docs-mdx/java/java_odo_dev_output.mdx'; +import DevPodmanSampleOutput from './docs-mdx/java/java_odo_dev_podman_output.mdx'; import DevDescription from './docs-mdx/odo_dev_description.mdx'; - /> + devpodmanout= /> _You can now follow the [advanced guide](../advanced/deploy/java.md) to deploy the application to production._ diff --git a/docs/website/docs/user-guides/quickstart/nodejs.md b/docs/website/docs/user-guides/quickstart/nodejs.md index d9d978b9929..537e8c5acae 100644 --- a/docs/website/docs/user-guides/quickstart/nodejs.md +++ b/docs/website/docs/user-guides/quickstart/nodejs.md @@ -88,10 +88,11 @@ import InitDescription from './docs-mdx/odo_init_description.mdx'; ## Step 3. Developing your application continuously (`odo dev`) import DevSampleOutput from './docs-mdx/nodejs/nodejs_odo_dev_output.mdx'; +import DevPodmanSampleOutput from './docs-mdx/nodejs/nodejs_odo_dev_podman_output.mdx'; import DevDescription from './docs-mdx/odo_dev_description.mdx'; - /> + devpodmanout= /> _You can now follow the [advanced guide](../advanced/deploy/nodejs.md) to deploy the application to production._ From 439b8e1b4cc77b8a6ad7acef31794d400abea530 Mon Sep 17 00:00:00 2001 From: Armel Soro Date: Thu, 3 Aug 2023 17:42:19 +0200 Subject: [PATCH 6/7] Revert "Update sample output for `odo dev` on cluster to reflect the current output" This reverts commit 96fb449f715969ddd791e1a5b906408a18bb4364. --- .../quickstart/docs-mdx/dotnet/dotnet_odo_dev_output.mdx | 1 - .../user-guides/quickstart/docs-mdx/go/go_odo_dev_output.mdx | 1 - .../user-guides/quickstart/docs-mdx/java/java_odo_dev_output.mdx | 1 - .../quickstart/docs-mdx/nodejs/nodejs_odo_dev_output.mdx | 1 - 4 files changed, 4 deletions(-) diff --git a/docs/website/docs/user-guides/quickstart/docs-mdx/dotnet/dotnet_odo_dev_output.mdx b/docs/website/docs/user-guides/quickstart/docs-mdx/dotnet/dotnet_odo_dev_output.mdx index 04639e5bb02..2105a2f223a 100644 --- a/docs/website/docs/user-guides/quickstart/docs-mdx/dotnet/dotnet_odo_dev_output.mdx +++ b/docs/website/docs/user-guides/quickstart/docs-mdx/dotnet/dotnet_odo_dev_output.mdx @@ -7,7 +7,6 @@ $ odo dev \__/ ↪ Running on the cluster in Dev mode -I0803 09:25:31.736525 340486 starterserver.go:132] API Server started at localhost:20000/api/v1 • Waiting for Kubernetes resources ... ⚠ Pod is Pending ✓ Pod is Running diff --git a/docs/website/docs/user-guides/quickstart/docs-mdx/go/go_odo_dev_output.mdx b/docs/website/docs/user-guides/quickstart/docs-mdx/go/go_odo_dev_output.mdx index f15b218cb73..459e302158f 100644 --- a/docs/website/docs/user-guides/quickstart/docs-mdx/go/go_odo_dev_output.mdx +++ b/docs/website/docs/user-guides/quickstart/docs-mdx/go/go_odo_dev_output.mdx @@ -7,7 +7,6 @@ $ odo dev \__/ ↪ Running on the cluster in Dev mode -I0803 09:25:31.736525 340486 starterserver.go:132] API Server started at localhost:20000/api/v1 • Waiting for Kubernetes resources ... ⚠ Pod is Pending ✓ Pod is Running diff --git a/docs/website/docs/user-guides/quickstart/docs-mdx/java/java_odo_dev_output.mdx b/docs/website/docs/user-guides/quickstart/docs-mdx/java/java_odo_dev_output.mdx index 987d9a74a85..69f4d4c0ea7 100644 --- a/docs/website/docs/user-guides/quickstart/docs-mdx/java/java_odo_dev_output.mdx +++ b/docs/website/docs/user-guides/quickstart/docs-mdx/java/java_odo_dev_output.mdx @@ -7,7 +7,6 @@ $ odo dev \__/ ↪ Running on the cluster in Dev mode -I0803 09:25:31.736525 340486 starterserver.go:132] API Server started at localhost:20000/api/v1 • Waiting for Kubernetes resources ... ✓ Added storage m2 to component ⚠ Pod is Pending diff --git a/docs/website/docs/user-guides/quickstart/docs-mdx/nodejs/nodejs_odo_dev_output.mdx b/docs/website/docs/user-guides/quickstart/docs-mdx/nodejs/nodejs_odo_dev_output.mdx index 441090ac527..91b9c3f343b 100644 --- a/docs/website/docs/user-guides/quickstart/docs-mdx/nodejs/nodejs_odo_dev_output.mdx +++ b/docs/website/docs/user-guides/quickstart/docs-mdx/nodejs/nodejs_odo_dev_output.mdx @@ -7,7 +7,6 @@ $ odo dev \__/ ↪ Running on the cluster in Dev mode -I0803 09:25:31.736525 340486 starterserver.go:132] API Server started at localhost:20000/api/v1 • Waiting for Kubernetes resources ... ⚠ Pod is Pending ✓ Pod is Running From 9fd74812c8807aaa8bd316b9160d81c90a69ef66 Mon Sep 17 00:00:00 2001 From: Armel Soro Date: Thu, 3 Aug 2023 18:20:17 +0200 Subject: [PATCH 7/7] Fix typo in Quickstart intro --- docs/website/docs/user-guides/quickstart/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/website/docs/user-guides/quickstart/quickstart.md b/docs/website/docs/user-guides/quickstart/quickstart.md index 869e3b1f4a4..763d06972c2 100644 --- a/docs/website/docs/user-guides/quickstart/quickstart.md +++ b/docs/website/docs/user-guides/quickstart/quickstart.md @@ -11,7 +11,7 @@ You have the option of developing and iterating locally against local [Podman](h A recommended way to get started with `odo` is to iterate on the application locally with Podman, as it does not require any additional clusters to be setup or available. Later on, you can seamlessly run and iterate on the same application against a Kubernetes or OpenShift cluster. -This quickstart guide will show you how easy it can be get started with `odo`. You have the option of choosing from the following frameworks: +This quickstart guide will show you how easy it can be to get started with `odo`. You have the option of choosing from the following frameworks: * [Node.js](nodejs) * [.NET](dotnet) * [Java (Spring Boot)](java)