You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-6Lines changed: 18 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,19 @@ To install OpenShift Container Platform 4 in the public cloud, in your datacente
46
46
47
47
**NOTE:** When working with [Red Hat OpenShift Online](http://red.ht/3bbSVso) remote cluster only one component can be created for Starter plan and Pro plan with default 2GiB storage. If you want to create multi component application you could opt in for Pro plan with bigger persistence storage (up to 150GiB).
48
48
49
-
## Commands and Features
49
+
## Core Concepts
50
+
51
+
*`Project`: A project is your source code, tests, and libraries organized in a separate single unit.
52
+
53
+
*`Application`: An application is a program designed for end users. An application consists of multiple microservices or components that work individually to build the entire application. Examples of applications: e-Shop, Hotel Reservation System, Online Booking
54
+
55
+
*`Component`: A component is a set of Kubernetes resources which host code or data. Each component can be run and deployed separately. Examples of components: Warehouse API Backend, Inventory API, Web Frontend, Payment Backend
56
+
57
+
*`Service`: A service is software that your component links to or depends on. Examples of services: MariaDB, MySQL.
58
+
59
+
*`Devfile`: A portable file responsible for your entire reproducable development environment.
60
+
61
+
## Commands and Features
50
62
51
63
The extension supports a number of commands to interact with OpenShift clusters and resources. The commands are accessible via the command palette (`Cmd+Shift+P` <kbd>⌘⇧P</kbd> on macOS or `Ctrl+Shift+P` <kbd>⌃⇧P</kbd> on Windows and Linux), Visual Studio Code View title buttons and tree context menus.
52
64
@@ -132,7 +144,7 @@ Components in different states have different set of commands available.
132
144
133
145
*`Delete` - Delete a URL from a Component.
134
146
*`Open URL` - Open the specific URL in Browser.
135
-
*`Describe` - Describe the given URL for the component in terminal window.
147
+
*`Describe` - Describe the given URL for the Component in terminal window.
136
148
137
149
##### Commands for a Storage
138
150
@@ -146,7 +158,7 @@ Components in different states have different set of commands available.
146
158
**NOTE:** Currently we support creation of one component per folder. Multiple components from a folder might be supported in
147
159
future releases.
148
160
149
-
####Running OpenShift Locally
161
+
### Running OpenShift Locally
150
162
151
163
The extension provides a view to run local instance of OpenShift. To open the view use `Add OpenShift Cluster` button
> `oc` and `odo` tools for Windows, Linux and macOS are included into extension package. Once the extension is installed it is ready to use.
230
242
231
-
Starting from `v0.2.0` extension includes `odo` CLI tool `v2.0.0` and supports devfile in addition to S2I (software-to-image) components. Devfiles are new way of deploying a component with odo.
243
+
The extension version `0.2.2`includes `odo` CLI tool `v2.0.4` and supports devfile in addition to S2I (Source-to-Image) components. Devfiles are new way of deploying a component with odo.
232
244
Follow the links below for additional information:
0 commit comments