@patternfly/quickstarts 2.2.3 → 2.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (198) hide show
  1. package/README.md +4 -4
  2. package/dist/ConsoleShared/src/components/markdown-extensions/inline-clipboard-extension.d.ts +1 -1
  3. package/dist/ConsoleShared/src/components/markdown-extensions/multiline-clipboard-extension.d.ts +1 -1
  4. package/dist/HelpTopicDrawer.d.ts +8 -2
  5. package/dist/QuickStartDrawer.d.ts +21 -2
  6. package/dist/controller/QuickStartTaskHeader.d.ts +1 -1
  7. package/dist/index.es.js +14 -13
  8. package/dist/index.es.js.map +1 -1
  9. package/dist/index.js +14 -13
  10. package/dist/index.js.map +1 -1
  11. package/dist/patternfly-docs/quick-starts/design-guidelines/design-guidelines.md +105 -0
  12. package/dist/patternfly-docs/quick-starts/design-guidelines/img/card-elements copy.png +0 -0
  13. package/dist/patternfly-docs/quick-starts/design-guidelines/img/card-elements.png +0 -0
  14. package/dist/patternfly-docs/quick-starts/design-guidelines/img/catalog-elements.png +0 -0
  15. package/dist/patternfly-docs/quick-starts/design-guidelines/img/check-your-work.png +0 -0
  16. package/dist/patternfly-docs/quick-starts/design-guidelines/img/introduction-screen.png +0 -0
  17. package/dist/patternfly-docs/quick-starts/design-guidelines/img/mixed-catalog.png +0 -0
  18. package/dist/patternfly-docs/quick-starts/design-guidelines/img/prerequisites.png +0 -0
  19. package/dist/patternfly-docs/quick-starts/design-guidelines/img/qs-context.png +0 -0
  20. package/dist/patternfly-docs/quick-starts/design-guidelines/img/side-panel-elements.png +0 -0
  21. package/dist/patternfly-docs/quick-starts/design-guidelines/img/side-panel-resized.png +0 -0
  22. package/dist/patternfly-docs/quick-starts/design-guidelines/img/side-panel.png +0 -0
  23. package/dist/patternfly-docs/quick-starts/design-guidelines/img/task-no.png +0 -0
  24. package/dist/patternfly-docs/quick-starts/design-guidelines/img/task-yes.png +0 -0
  25. package/dist/patternfly-docs/quick-starts/design-guidelines/img/task.png +0 -0
  26. package/dist/patternfly-docs/quick-starts/examples/Basic.jsx +73 -0
  27. package/dist/patternfly-docs/quick-starts/examples/HelpTopic.jsx +53 -0
  28. package/dist/patternfly-docs/quick-starts/examples/about.md +77 -0
  29. package/dist/patternfly-docs/quick-starts/examples/basic.md +27 -0
  30. package/dist/patternfly-docs/quick-starts/examples/example-data/example-help-topics.js +173 -0
  31. package/dist/patternfly-docs/quick-starts/examples/example-data/example-quickstarts.js +215 -0
  32. package/dist/patternfly-docs/quick-starts/examples/example-data/index.js +15 -0
  33. package/dist/patternfly-docs/quick-starts/examples/help-topics.md +25 -0
  34. package/dist/patternfly-docs/quick-starts/examples/img/catalog.png +0 -0
  35. package/dist/patternfly-docs/quick-starts/examples/img/help-topic.png +0 -0
  36. package/dist/patternfly-docs/quick-starts/examples/img/side-panel.png +0 -0
  37. package/dist/quickstarts-base.css +24 -24
  38. package/dist/quickstarts-full.es.js +14 -13
  39. package/dist/quickstarts-full.es.js.map +1 -1
  40. package/dist/quickstarts.css +24 -24
  41. package/dist/quickstarts.min.css +1 -1
  42. package/package.json +11 -4
  43. package/src/ConsoleInternal/components/_icon-and-text.scss +14 -0
  44. package/src/ConsoleInternal/components/_markdown-view.scss +19 -0
  45. package/src/ConsoleInternal/components/catalog/_catalog.scss +390 -0
  46. package/src/ConsoleInternal/components/markdown-view.tsx +305 -0
  47. package/src/ConsoleInternal/components/utils/_status-box.scss +58 -0
  48. package/src/ConsoleInternal/components/utils/camel-case-wrap.tsx +33 -0
  49. package/src/ConsoleInternal/components/utils/index.tsx +3 -0
  50. package/src/ConsoleInternal/components/utils/router.ts +47 -0
  51. package/src/ConsoleInternal/components/utils/status-box.tsx +94 -0
  52. package/src/ConsoleInternal/module/k8s/types.ts +53 -0
  53. package/src/ConsoleShared/index.ts +1 -0
  54. package/src/ConsoleShared/src/components/index.ts +7 -0
  55. package/src/ConsoleShared/src/components/layout/PageLayout.scss +29 -0
  56. package/src/ConsoleShared/src/components/markdown-extensions/MarkdownCopyClipboard.tsx +93 -0
  57. package/src/ConsoleShared/src/components/markdown-extensions/__tests__/MarkdownCopyClipboard.spec.tsx +25 -0
  58. package/src/ConsoleShared/src/components/markdown-extensions/__tests__/test-data.ts +5 -0
  59. package/src/ConsoleShared/src/components/markdown-extensions/admonition-extension.tsx +66 -0
  60. package/src/ConsoleShared/src/components/markdown-extensions/code-extension.tsx +25 -0
  61. package/src/ConsoleShared/src/components/markdown-extensions/const.ts +3 -0
  62. package/src/ConsoleShared/src/components/markdown-extensions/index.ts +5 -0
  63. package/src/ConsoleShared/src/components/markdown-extensions/inline-clipboard-extension.tsx +39 -0
  64. package/src/ConsoleShared/src/components/markdown-extensions/multiline-clipboard-extension.tsx +44 -0
  65. package/src/ConsoleShared/src/components/markdown-extensions/showdown-extension.scss +52 -0
  66. package/src/ConsoleShared/src/components/markdown-extensions/utils.ts +3 -0
  67. package/src/ConsoleShared/src/components/markdown-highlight-extension/MarkdownHighlightExtension.tsx +64 -0
  68. package/src/ConsoleShared/src/components/markdown-highlight-extension/highlight-consts.ts +9 -0
  69. package/src/ConsoleShared/src/components/markdown-highlight-extension/index.ts +1 -0
  70. package/src/ConsoleShared/src/components/modal/Modal.scss +3 -0
  71. package/src/ConsoleShared/src/components/modal/Modal.tsx +19 -0
  72. package/src/ConsoleShared/src/components/modal/index.ts +1 -0
  73. package/src/ConsoleShared/src/components/popper/Portal.tsx +23 -0
  74. package/src/ConsoleShared/src/components/popper/SimplePopper.tsx +90 -0
  75. package/src/ConsoleShared/src/components/popper/index.ts +2 -0
  76. package/src/ConsoleShared/src/components/spotlight/InteractiveSpotlight.tsx +58 -0
  77. package/src/ConsoleShared/src/components/spotlight/Spotlight.tsx +35 -0
  78. package/src/ConsoleShared/src/components/spotlight/StaticSpotlight.tsx +32 -0
  79. package/src/ConsoleShared/src/components/spotlight/index.ts +1 -0
  80. package/src/ConsoleShared/src/components/spotlight/spotlight.scss +63 -0
  81. package/src/ConsoleShared/src/components/status/GenericStatus.tsx +33 -0
  82. package/src/ConsoleShared/src/components/status/NotStartedIcon.tsx +27 -0
  83. package/src/ConsoleShared/src/components/status/PopoverStatus.tsx +42 -0
  84. package/src/ConsoleShared/src/components/status/Status.tsx +38 -0
  85. package/src/ConsoleShared/src/components/status/StatusIconAndText.tsx +42 -0
  86. package/src/ConsoleShared/src/components/status/icons.tsx +77 -0
  87. package/src/ConsoleShared/src/components/status/index.tsx +1 -0
  88. package/src/ConsoleShared/src/components/status/statuses.tsx +36 -0
  89. package/src/ConsoleShared/src/components/status/types.ts +7 -0
  90. package/src/ConsoleShared/src/components/utils/FallbackImg.tsx +20 -0
  91. package/src/ConsoleShared/src/components/utils/index.ts +1 -0
  92. package/src/ConsoleShared/src/constants/index.ts +1 -0
  93. package/src/ConsoleShared/src/constants/ui.ts +1 -0
  94. package/src/ConsoleShared/src/hooks/index.ts +6 -0
  95. package/src/ConsoleShared/src/hooks/scroll.ts +52 -0
  96. package/src/ConsoleShared/src/hooks/useBoundingClientRect.ts +18 -0
  97. package/src/ConsoleShared/src/hooks/useEventListener.ts +14 -0
  98. package/src/ConsoleShared/src/hooks/useForceRender.ts +6 -0
  99. package/src/ConsoleShared/src/hooks/useResizeObserver.ts +20 -0
  100. package/src/ConsoleShared/src/hooks/useScrollShadows.ts +45 -0
  101. package/src/ConsoleShared/src/index.ts +4 -0
  102. package/src/ConsoleShared/src/utils/index.ts +1 -0
  103. package/src/ConsoleShared/src/utils/useCombineRefs.ts +17 -0
  104. package/src/HelpTopicDrawer.tsx +124 -0
  105. package/src/HelpTopicPanelContent.tsx +152 -0
  106. package/src/QuickStartCatalogPage.tsx +190 -0
  107. package/src/QuickStartCloseModal.tsx +47 -0
  108. package/src/QuickStartController.tsx +113 -0
  109. package/src/QuickStartDrawer.scss +11 -0
  110. package/src/QuickStartDrawer.tsx +265 -0
  111. package/src/QuickStartMarkdownView.tsx +75 -0
  112. package/src/QuickStartPanelContent.scss +46 -0
  113. package/src/QuickStartPanelContent.tsx +153 -0
  114. package/src/__tests__/quick-start-utils.spec.tsx +16 -0
  115. package/src/catalog/Catalog/QuickStartCatalogHeader.tsx +18 -0
  116. package/src/catalog/Catalog/QuickStartCatalogSection.tsx +9 -0
  117. package/src/catalog/Catalog/QuickStartCatalogToolbar.tsx +12 -0
  118. package/src/catalog/Catalog/index.ts +3 -0
  119. package/src/catalog/QuickStartCatalog.scss +8 -0
  120. package/src/catalog/QuickStartCatalog.tsx +42 -0
  121. package/src/catalog/QuickStartTile.scss +11 -0
  122. package/src/catalog/QuickStartTile.tsx +105 -0
  123. package/src/catalog/QuickStartTileDescription.scss +29 -0
  124. package/src/catalog/QuickStartTileDescription.tsx +79 -0
  125. package/src/catalog/QuickStartTileFooter.tsx +101 -0
  126. package/src/catalog/QuickStartTileFooterExternal.tsx +40 -0
  127. package/src/catalog/QuickStartTileHeader.scss +12 -0
  128. package/src/catalog/QuickStartTileHeader.tsx +77 -0
  129. package/src/catalog/Toolbar/QuickStartCatalogFilter.scss +25 -0
  130. package/src/catalog/Toolbar/QuickStartCatalogFilter.tsx +34 -0
  131. package/src/catalog/Toolbar/QuickStartCatalogFilterItems.tsx +199 -0
  132. package/src/catalog/__tests__/QuickStartCatalog.spec.tsx +35 -0
  133. package/src/catalog/__tests__/QuickStartTile.spec.tsx +38 -0
  134. package/src/catalog/__tests__/QuickStartTileDescription.spec.tsx +44 -0
  135. package/src/catalog/index.ts +9 -0
  136. package/src/controller/QuickStartConclusion.tsx +63 -0
  137. package/src/controller/QuickStartContent.scss +12 -0
  138. package/src/controller/QuickStartContent.tsx +72 -0
  139. package/src/controller/QuickStartFooter.scss +13 -0
  140. package/src/controller/QuickStartFooter.tsx +128 -0
  141. package/src/controller/QuickStartIntroduction.scss +35 -0
  142. package/src/controller/QuickStartIntroduction.tsx +66 -0
  143. package/src/controller/QuickStartTaskHeader.scss +58 -0
  144. package/src/controller/QuickStartTaskHeader.tsx +116 -0
  145. package/src/controller/QuickStartTaskHeaderList.scss +17 -0
  146. package/src/controller/QuickStartTaskHeaderList.tsx +35 -0
  147. package/src/controller/QuickStartTaskReview.scss +30 -0
  148. package/src/controller/QuickStartTaskReview.tsx +81 -0
  149. package/src/controller/QuickStartTasks.scss +89 -0
  150. package/src/controller/QuickStartTasks.tsx +75 -0
  151. package/src/controller/__tests__/QuickStartConclusion.spec.tsx +95 -0
  152. package/src/controller/__tests__/QuickStartContent.spec.tsx +52 -0
  153. package/src/controller/__tests__/QuickStartFooter.spec.tsx +148 -0
  154. package/src/controller/__tests__/QuickStartTaskHeader.spec.tsx +56 -0
  155. package/src/controller/__tests__/QuickStartTaskReview.spec.tsx +45 -0
  156. package/src/controller/__tests__/QuickStartTasks.spec.tsx +81 -0
  157. package/src/data/mocks/json/explore-pipeline-quickstart.ts +66 -0
  158. package/src/data/mocks/json/explore-serverless-quickstart.ts +90 -0
  159. package/src/data/mocks/json/monitor-sampleapp-quickstart.ts +77 -0
  160. package/src/data/mocks/json/tour-icons.ts +3 -0
  161. package/src/data/mocks/yamls/add-healthchecks-quickstart.yaml +67 -0
  162. package/src/data/mocks/yamls/explore-pipeline-quickstart.yaml +57 -0
  163. package/src/data/mocks/yamls/explore-serverless-quickstart.yaml +83 -0
  164. package/src/data/mocks/yamls/install-associate-pipeline-quickstart.yaml +74 -0
  165. package/src/data/mocks/yamls/monitor-sampleapp-quickstart.yaml +66 -0
  166. package/src/data/mocks/yamls/sample-application-quickstart.yaml +97 -0
  167. package/src/data/mocks/yamls/serverless-application-quickstart.yaml +141 -0
  168. package/src/data/quick-start-test-data.ts +10 -0
  169. package/src/data/test-utils.ts +11 -0
  170. package/src/declaration.d.ts +2 -0
  171. package/src/index.ts +17 -0
  172. package/src/locales/en/quickstart.json +46 -0
  173. package/src/styles/_base.scss +54 -0
  174. package/src/styles/_dark-custom-override.scss +62 -0
  175. package/src/styles/legacy-bootstrap/README.md +21 -0
  176. package/src/styles/legacy-bootstrap/_code.scss +44 -0
  177. package/src/styles/legacy-bootstrap/_tables.scss +38 -0
  178. package/src/styles/legacy-bootstrap/_type.scss +90 -0
  179. package/src/styles/legacy-bootstrap/_variables.scss +48 -0
  180. package/src/styles/legacy-bootstrap.scss +5 -0
  181. package/src/styles/patternfly-global-entry.ts +1 -0
  182. package/src/styles/patternfly-global.scss +28 -0
  183. package/src/styles/patternfly-nested-entry.ts +1 -0
  184. package/src/styles/patternfly-nested.scss +18 -0
  185. package/src/styles/quickstarts-standalone-entry.ts +1 -0
  186. package/src/styles/quickstarts-standalone.scss +7 -0
  187. package/src/styles/style.scss +12 -0
  188. package/src/styles/vendor-entry.ts +1 -0
  189. package/src/styles/vendor.scss +7 -0
  190. package/src/utils/PluralResolver.ts +356 -0
  191. package/src/utils/asciidoc-procedure-parser.ts +132 -0
  192. package/src/utils/const.ts +10 -0
  193. package/src/utils/help-topic-context.tsx +74 -0
  194. package/src/utils/help-topic-types.ts +16 -0
  195. package/src/utils/quick-start-context.tsx +477 -0
  196. package/src/utils/quick-start-types.ts +72 -0
  197. package/src/utils/quick-start-utils.ts +92 -0
  198. package/src/utils/useLocalStorage.ts +38 -0
@@ -0,0 +1,90 @@
1
+ import { QuickStart } from '@patternfly/quickstarts';
2
+ import { serverlessIcon } from './tour-icons';
3
+
4
+ export const exploreServerlessQuickStart: QuickStart = {
5
+ apiVersion: 'console.openshift.io/v1',
6
+ kind: 'ConsoleQuickStarts',
7
+ metadata: {
8
+ name: 'explore-serverless',
9
+ },
10
+ spec: {
11
+ version: 4.7,
12
+ displayName: `Setting up Serverless`,
13
+ durationMinutes: 10,
14
+ icon: serverlessIcon,
15
+ description: `Install the OpenShift Serverless Operator to deploy stateless, event-trigger-based applications.`,
16
+ prerequisites: [''],
17
+ introduction: `Red Hat® OpenShift® Serverless lets you run stateless, serverless workloads on a single multi-cloud container platform.
18
+
19
+ Serverless reduces the need to manage infrastructure or perform back-end development. Scaling is automated, and applications can run on any cloud, hybrid, or on-premises environment. Choosing Serverless means simplicity, portability, and efficiency.
20
+
21
+ Adding OpenShift Serverless to your OpenShift Container Platform cluster is quick and easy. This quick start walks you through the process.`,
22
+ tasks: [
23
+ {
24
+ title: `Install the OpenShift Serverless Operator`,
25
+ description: `### To install the Serverless Operator:
26
+ 1. From the **Administrator** perspective, go to the **OperatorHub** from the **Operators** section of the navigation.
27
+ 2. In the **Filter by keyword** field, type \`Serverless\`.
28
+ 3. If the tile has an **Installed** label on it, the Operator is already installed. Proceed to task two.
29
+ 4. Click the **OpenShift Serverless Operator** tile.
30
+ 5. At the top of the OpenShift Serverless Operator panel, click **Install**.
31
+ 6. Verify that the **OpenShift Serverless Operator Update Channel** is set to the latest version, then click **Install**.
32
+ 7. Wait for the OpenShift Serverless Operator's status to change from **Installing operator** to **Operator installed - Ready for use**.
33
+ `,
34
+
35
+ review: {
36
+ instructions: `#### To verify that the OpenShift Serverless Operator is installed:
37
+
38
+ In the Status column of the **Installed Operators** page, is the OpenShift Serverless Operator’s status **Succeeded?**`,
39
+ failedTaskHelp: `This task is incomplete. Try the task again, or [read more](https://docs.openshift.com/container-platform/4.6/serverless/installing_serverless/installing-openshift-serverless.html) about this topic.`,
40
+ },
41
+
42
+ summary: {
43
+ success: `You just installed the OpenShift Serverless Operator! Next, we'll install the required Knative Eventing and Knative Serving Custom Resource components for this Operator to run.`,
44
+ failed: `This task is incomplete. Try the task again, or read more about this topic.`,
45
+ },
46
+ },
47
+ {
48
+ title: `Create the Knative Serving and Knative Eventing APIs`,
49
+ description: `Now let’s install the Knative application programming interfaces (APIs) needed to deploy applications and container workloads.
50
+
51
+ **To create the Knative Serving and Knative Eventing APIs:**
52
+ 1. Go to the **Installed Operators** page.
53
+ 2. Click **OpenShift Serverless Operator**.
54
+ 3. If it does not already exist, create a project called “knative-serving” under the Project list at the top of the page. If it does exist, select the project from the list.
55
+ 4. Click the Knative Serving link under Provided APIs or, from Knative Serving tile, click **Create Instance**.
56
+ 5. Click **Create** to create the custom resource.
57
+ 6. If it does not already exist, create a project called “knative-eventing” under the Project list at the top of the page. If it does exist, select the project from the list.
58
+ 7. Click the Knative Eventing link under Provided APIs or, from Knative Eventing tile, click **Create Instance**.
59
+ 8. Click **Create** to create the custom resource.
60
+ `,
61
+ review: {
62
+ instructions: `#### To verify that the Knative Serving and Knative Eventing APIs were installed successfully:
63
+ Go to the **All Instances** tab of the OpenShift Serverless Operator.
64
+
65
+ Are the Knative Serving and Knative Eventing resources in the list of instances?
66
+ `,
67
+ failedTaskHelp: `This task isn’t verified yet. Try the task again, or [read more](https://docs.openshift.com/container-platform/4.6/serverless/installing_serverless/installing-knative-serving.html#serverless-create-serving-project-web-console_installing-knative-serving) about this topic.`,
68
+ },
69
+ summary: {
70
+ success: `You just created instances of the Knative Service and Knative Eventing resources.`,
71
+ failed: `Check your work to make sure that the Knative Service and Knative Eventing resources were created.`,
72
+ },
73
+ },
74
+ ],
75
+ conclusion: `Your Serverless Operator is ready! If you want to learn how to deploy a serverless application, take the **Exploring Serverless applications** quick start.`,
76
+ nextQuickStart: [`serverless-application`],
77
+ accessReviewResources: [
78
+ {
79
+ group: 'operators.coreos.com',
80
+ resource: 'operatorgroups',
81
+ verb: 'list',
82
+ },
83
+ {
84
+ group: 'packages.operators.coreos.com',
85
+ resource: 'packagemanifests',
86
+ verb: 'list',
87
+ },
88
+ ],
89
+ },
90
+ };
@@ -0,0 +1,77 @@
1
+ import { QuickStart } from '@patternfly/quickstarts';
2
+
3
+ export const monitorSampleAppQuickStart: QuickStart = {
4
+ apiVersion: 'console.openshift.io/v1',
5
+ kind: 'QuickStarts',
6
+ metadata: {
7
+ name: 'monitor-sampleapp',
8
+ },
9
+ spec: {
10
+ version: 4.7,
11
+ displayName: 'Monitoring your sample application',
12
+ durationMinutes: 10,
13
+ icon: '',
14
+ description: `Now that you’ve created a sample application and added health checks, let’s monitor your application.`,
15
+ prerequisites: [`You completed the "Getting started with a sample" quick start.`],
16
+ introduction: `### This quick start shows you how to monitor your sample application.
17
+ You should have previously created the **sample-app** application and **nodejs-sample** deployment via the **Get started with a sample** quick start. If you haven't, you may be able to follow these tasks with any existing deployment.`,
18
+ tasks: [
19
+ {
20
+ title: `Viewing the monitoring details of your sample application`,
21
+ description: `### To view the details of your sample application:
22
+ 1. Go to the project your sample application was created in.
23
+ 2. In the **</> Developer** perspective, go to **Topology** view.
24
+ 3. Click on the **nodejs-sample** deployment to view its details.
25
+ 4. Click on the **Monitoring** tab in the side panel.
26
+ You can see context sensitive metrics and alerts in the **Monitoring** tab.`,
27
+ review: {
28
+ instructions: `#### To verify you can view the monitoring information:
29
+ 1. Do you see a **Metrics** accordion in the side panel?
30
+ 2. Do you see a **View monitoring dashboard** link in the **Metrics** accordion?
31
+ 3. Do you see three charts in the **Metrics** accordion: **CPU Usage**, **Memory Usage** and **Receive Bandwidth**?`,
32
+ failedTaskHelp: `This task isn’t verified yet. Try the task again.`,
33
+ },
34
+ summary: {
35
+ success: `You have learned how you can monitor your sample app!`,
36
+ failed: `Try the steps again.`,
37
+ },
38
+ },
39
+ {
40
+ title: `Viewing your project monitoring dashboard`,
41
+ description: `### To view the project monitoring dashboard in the context of **nodejs-sample**:
42
+ 1. Click on the **View monitoring dashboard** link in the side panel.
43
+ 2. You can change the **Time Range** and **Refresh Interval** of the dashboard.
44
+ 3. You can change the context of the dashboard as well by clicking on the drop-down list. Select a specific workload or **All Workloads** to view the dashboard in the context of the entire project.`,
45
+ review: {
46
+ instructions: `#### To verify that you are able to view the monitoring dashboard:
47
+ Do you see metrics charts in the dashboard?`,
48
+ failedTaskHelp: `This task isn’t verified yet. Try the task again.`,
49
+ },
50
+ summary: {
51
+ success: `You have learned how to view the dashboard in the context of your sample app!`,
52
+ failed: `Try the steps again.`,
53
+ },
54
+ },
55
+ {
56
+ title: `Viewing custom metrics`,
57
+ description: `### To view custom metrics:
58
+ 1. Click on the **Metrics** tab of the **Monitoring** page.
59
+ 2. Click the **Select Query** drop-down list to see the available queries.
60
+ 3. Click on **Filesystem Usage** from the list to run the query.`,
61
+ review: {
62
+ instructions: `#### Verify you can see the chart associated with the query:
63
+ Do you see a chart displayed with filesystem usage for your project? Note: select **Custom Query** from the dropdown to create and run a custom query utilizing PromQL.
64
+ `,
65
+ failedTaskHelp: `This task isn’t verified yet. Try the task again.`,
66
+ },
67
+ summary: {
68
+ success: `You have learned how to run a query!`,
69
+ failed: `Try the steps again.`,
70
+ },
71
+ },
72
+ ],
73
+ conclusion: `You have learned how to access workload monitoring and metrics!`,
74
+
75
+ nextQuickStart: [``],
76
+ },
77
+ };
@@ -0,0 +1,3 @@
1
+ export const serverlessIcon = `data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2UwMzQwMDt9LmNscy0ye2ZpbGw6I2NlMmUwMDt9LmNscy0ze2ZpbGw6bm9uZTt9LmNscy00e2ZpbGw6I2ZmZjt9LmNscy01e2ZpbGw6I2RjZGNkYzt9LmNscy02e2ZpbGw6I2FhYTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPlJlZF9IYXQtT3BlbnNoaWZ0NC1DYXRhbG9nX0ljb25zLVNlcnZlcmxlc3M8L3RpdGxlPjxjaXJjbGUgY2xhc3M9ImNscy0xIiBjeD0iNTAiIGN5PSI1MCIgcj0iNTAiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik04NS4zNiwxNC42NEE1MCw1MCwwLDAsMSwxNC42NCw4NS4zNloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik00MC41Nyw0Ny40MmEzLjg5LDMuODksMCwxLDAsMy44OCwzLjg4QTMuODksMy44OSwwLDAsMCw0MC41Nyw0Ny40MloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0yMS40Miw0Ny40MkEzLjg5LDMuODksMCwxLDAsMjUuMyw1MS4zLDMuODksMy44OSwwLDAsMCwyMS40Miw0Ny40MloiLz48cGF0aCBjbGFzcz0iY2xzLTQiIGQ9Ik01MC4wOSw0OC44NmgtLjE4YTQuMTEsNC4xMSwwLDAsMS0zLjI2LTEuNjMsNy42OSw3LjY5LDAsMCwwLTEyLjE2LDAsNC4xMyw0LjEzLDAsMCwxLTMuMjYsMS42M0gzMWE0LjA5LDQuMDksMCwwLDEtMy4yNS0xLjYzQTcuNjksNy42OSwwLDAsMCwxNCw1MS45M2gwVjY0LjZhMi43OSwyLjc5LDAsMCwwLDIuNzksMi43OWgxNS44TDUxLjM0LDQ4LjY2QTQsNCwwLDAsMSw1MC4wOSw0OC44NloiLz48cGF0aCBjbGFzcz0iY2xzLTUiIGQ9Ik03OC4wNSw0NC4yNWE3LjY1LDcuNjUsMCwwLDAtNS44NSwzQTQuMSw0LjEsMCwwLDEsNjksNDguODZoLS4xOWE0LjEzLDQuMTMsMCwwLDEtMy4yNi0xLjYzLDcuNjksNy42OSwwLDAsMC0xMi4xNiwwLDQuMTYsNC4xNiwwLDAsMS0yLDEuNDNMMzIuNjEsNjcuMzlIODMuMTlBMi43OSwyLjc5LDAsMCwwLDg2LDY0LjZWNTIuMDdBNy43Nyw3Ljc3LDAsMCwwLDc4LjA1LDQ0LjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtNiIgZD0iTTIxLjEsNjNoMTBhMS44MywxLjgzLDAsMSwwLDAtMy42NmgtMTBhMS44MywxLjgzLDAsMCwwLDAsMy42NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjQwLjU3IiBjeT0iMzcuNzMiIHI9IjIuMTUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjQwLjU3IiBjeT0iMjguMjMiIHI9IjEuMzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjU5LjcyIiBjeT0iMjguMjMiIHI9IjEuMzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjIxLjQyIiBjeT0iMzcuNzMiIHI9IjIuMTUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjUwIiBjeT0iNDMuNDUiIHI9IjIuOTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjY4Ljg5IiBjeT0iNDMuNDUiIHI9IjIuOTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjMxLjA5IiBjeT0iNDMuNDUiIHI9IjIuOTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNiIgY3g9Ijc3Ljk0IiBjeT0iNTQuMzEiIHI9IjIuMTUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNiIgY3g9IjY4LjkxIiBjeT0iNTQuMzEiIHI9IjIuMTUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9Ijc3Ljk0IiBjeT0iMzcuNzMiIHI9IjIuMTUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjU5LjcyIiBjeT0iMzcuNzMiIHI9IjIuMTUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjUwIiBjeT0iMzMuMSIgcj0iMy4wMSIvPjxjaXJjbGUgY2xhc3M9ImNscy00IiBjeD0iMzEuMDkiIGN5PSIzMy4xIiByPSIzLjAxIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTQiIGN4PSI2OC44OSIgY3k9IjMzLjEiIHI9IjMuMDEiLz48L3N2Zz4=`;
2
+
3
+ export const pipelineIcon = `data:image/png;base64,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`;
@@ -0,0 +1,67 @@
1
+ apiVersion: console.openshift.io/v1
2
+ kind: ConsoleQuickStart
3
+ metadata:
4
+ name: add-healthchecks
5
+ spec:
6
+ version: 4.7
7
+ displayName: Adding health checks to your sample application
8
+ durationMinutes: 10
9
+ icon: ''
10
+ description: You just created a sample application. Now, let’s add health checks
11
+ to it.
12
+ prerequisites: [You completed the "Getting started with a sample" quick start.]
13
+ introduction: |-
14
+ ### This quick start shows you how to add health checks to your sample application.
15
+ You should have previously created the **sample-app** application and **nodejs-sample** deployment using the **Get started with a sample** quick start. If you haven't, you may be able to follow these tasks with any existing deployment without configured health checks.
16
+ tasks:
17
+ - title: Viewing the details of your sample application
18
+ description: |-
19
+ ### To view the details of your sample application:
20
+ 1. Go to the project your sample application was created in.
21
+ 2. In the **</> Developer** perspective, go to **Topology**.
22
+ 3. Click on the **nodejs-sample** deployment to view its details.
23
+
24
+ A side panel is displayed containing the details of your sample application.
25
+ review:
26
+ instructions: |-
27
+ #### To verify you are viewing the details of your sample application:
28
+ Is the side panel titled **nodejs-sample**?
29
+ failedTaskHelp: This task isn’t verified yet. Try the task again.
30
+ summary:
31
+ success: You have viewed the details of your sample app!
32
+ failed: Try the steps again.
33
+ - title: Verifying that there are no health checks
34
+ description: |-
35
+ ### To verify that there your sample application has no health checks configured:
36
+ 1. View the information in the **Resources** tab in the side panel.
37
+ review:
38
+ instructions: |-
39
+ #### To verify there are no health checks configured:
40
+ Do you see an inline alert stating that **nodejs-sample** does not have health checks?
41
+ failedTaskHelp: This task isn’t verified yet. Try the task again.
42
+ summary:
43
+ success: You have verified that there are no existing health checks!
44
+ failed: Try the steps again.
45
+ - title: Adding health checks to your sample
46
+ description: |-
47
+ ### To add health checks to your sample:
48
+ 1. Add health checks to your **nodejs-sample** deployment in one of the following ways: (a) On the side panel, click on the **Actions** menu, where you will see an **Add Health Checks** menu item or (b) Click on the **Add Health Checks** link on the inline notification in the side panel.
49
+ 2. In the Add Health Checks form, click on the **Add Readiness Probe** link. Leave the default values, and click on the check to add the Readiness Probe.
50
+ 3. Click on the **Add Liveness Probe** link. Leave the default values, and click on the check to add the Liveness Probe.
51
+ 4. Click on the **Add Startup Probe** link. Leave the default values, and click on the check to add the Startup Probe.
52
+ 5. Click **Add** when you’re done.
53
+
54
+ You will be brought back to the Topology View.
55
+ review:
56
+ instructions: |-
57
+ #### Verify that health checks are now configured:
58
+ Is the inline notification gone?
59
+ failedTaskHelp:
60
+ This task isn’t verified yet. Try the task again, or [read more](https://docs.openshift.com/container-platform/4.6/applications/application-health.html#odc-adding-health-checks)
61
+ about this topic.
62
+ summary:
63
+ success: You have added health checks to your sample app!
64
+ failed: Try the steps again.
65
+ conclusion: Your sample application now has health checks. To ensure that your application
66
+ is running correctly, take the **Monitor your sample application** quick start.
67
+ nextQuickStart: [monitor-sampleapp]
@@ -0,0 +1,57 @@
1
+ apiVersion: console.openshift.io/v1
2
+ kind: ConsoleQuickStart
3
+ metadata:
4
+ name: explore-pipelines
5
+ spec:
6
+ version: 4.7
7
+ displayName: Installing the Pipelines Operator
8
+ durationMinutes: 10
9
+ icon: data:image/png;base64,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
10
+ description: Install the OpenShift® Pipelines Operator to build Pipelines using
11
+ Tekton.
12
+ prerequisites: ['']
13
+ introduction: |-
14
+ OpenShift® Pipelines is a cloud-native, continuous integration and continuous delivery (CI/CD) solution based on Kubernetes resources. It uses Tekton building blocks to automate deployments across multiple Kubernetes distributions by abstracting away the underlying implementation details.
15
+ * OpenShift Pipelines is a serverless CI/CD system that runs pipelines with all the required dependencies in isolated containers.
16
+ * They are designed for decentralized teams that work on a microservice-based architecture.
17
+ * They are defined using standard Custom Resource Definitions making them extensible and easy to integrate with the existing Kubernetes tools. This enables you to scale on-demand.
18
+ * You can use OpenShift Pipelines to build images with Kubernetes tools such as Source-to-Image (S2I), Buildah, Buildpacks, and Kaniko that are portable across any Kubernetes platform.
19
+ * You can use the Developer perspective to create and manage pipelines and view logs in your namespaces.
20
+
21
+ To start using Pipelines, install the OpenShift® Pipelines Operator on your cluster.
22
+ tasks:
23
+ - title: Installing the OpenShift Pipelines Operator
24
+ description: "### To install the OpenShift Pipelines Operator:\n\n1. From the
25
+ **Administrator** perspective in the console navigation panel, click **Operators
26
+ > OperatorHub**.\n2. In the **Filter by keyword** field, type `OpenShift Pipelines
27
+ Operator`.\n3. If the tile has an Installed label, the Operator is already installed.
28
+ Proceed to the next quick start to create a Pipeline.\n4. Click the **tile**
29
+ to open the Operator details.\n5. At the top of the OpenShift Pipelines Operator
30
+ panel that opens, click **Install**.\n6. Fill out the Operator subscription
31
+ form by selecting the channel that matches your OpenShift cluster, and then
32
+ click **Install**.\n7. On the **Installed Operators** page, wait for the OpenShift
33
+ Pipelines Operator's status to change from **Installing** to **Succeeded**. "
34
+ review:
35
+ instructions: |-
36
+ #### To verify that the OpenShift Pipelines Operator is installed:
37
+ 1. From the **Operators** section of the navigation, go to the **Installed Operators** page.
38
+ 2. Verify that the **OpenShift Pipelines Operator** appears in the list of Operators.
39
+
40
+ In the status column, is the status of the OpenShift Pipelines Operator **Succeeded**?
41
+ failedTaskHelp:
42
+ This task isn’t verified yet. Try the task again, or [read more](https://docs.openshift.com/container-platform/4.6/pipelines/installing-pipelines.html#op-installing-pipelines-operator-in-web-console_installing-pipelines)
43
+ about this topic.
44
+ summary:
45
+ success: You have installed the Pipelines Operator!
46
+ failed: Try the steps again.
47
+ conclusion: You successfully installed the OpenShift Pipelines Operator! If you
48
+ want to learn how to deploy an application and associate a Pipeline with it, take
49
+ the Creating a Pipeline quick start.
50
+ nextQuickStart: [install-app-and-associate-pipeline]
51
+ accessReviewResources:
52
+ - group: operators.coreos.com
53
+ resource: operatorgroups
54
+ verb: list
55
+ - group: packages.operators.coreos.com
56
+ resource: packagemanifests
57
+ verb: list
@@ -0,0 +1,83 @@
1
+ apiVersion: console.openshift.io/v1
2
+ kind: ConsoleQuickStart
3
+ metadata:
4
+ name: explore-serverless
5
+ spec:
6
+ version: 4.7
7
+ displayName: Setting up Serverless
8
+ durationMinutes: 10
9
+ icon: data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2UwMzQwMDt9LmNscy0ye2ZpbGw6I2NlMmUwMDt9LmNscy0ze2ZpbGw6bm9uZTt9LmNscy00e2ZpbGw6I2ZmZjt9LmNscy01e2ZpbGw6I2RjZGNkYzt9LmNscy02e2ZpbGw6I2FhYTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPlJlZF9IYXQtT3BlbnNoaWZ0NC1DYXRhbG9nX0ljb25zLVNlcnZlcmxlc3M8L3RpdGxlPjxjaXJjbGUgY2xhc3M9ImNscy0xIiBjeD0iNTAiIGN5PSI1MCIgcj0iNTAiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik04NS4zNiwxNC42NEE1MCw1MCwwLDAsMSwxNC42NCw4NS4zNloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik00MC41Nyw0Ny40MmEzLjg5LDMuODksMCwxLDAsMy44OCwzLjg4QTMuODksMy44OSwwLDAsMCw0MC41Nyw0Ny40MloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0yMS40Miw0Ny40MkEzLjg5LDMuODksMCwxLDAsMjUuMyw1MS4zLDMuODksMy44OSwwLDAsMCwyMS40Miw0Ny40MloiLz48cGF0aCBjbGFzcz0iY2xzLTQiIGQ9Ik01MC4wOSw0OC44NmgtLjE4YTQuMTEsNC4xMSwwLDAsMS0zLjI2LTEuNjMsNy42OSw3LjY5LDAsMCwwLTEyLjE2LDAsNC4xMyw0LjEzLDAsMCwxLTMuMjYsMS42M0gzMWE0LjA5LDQuMDksMCwwLDEtMy4yNS0xLjYzQTcuNjksNy42OSwwLDAsMCwxNCw1MS45M2gwVjY0LjZhMi43OSwyLjc5LDAsMCwwLDIuNzksMi43OWgxNS44TDUxLjM0LDQ4LjY2QTQsNCwwLDAsMSw1MC4wOSw0OC44NloiLz48cGF0aCBjbGFzcz0iY2xzLTUiIGQ9Ik03OC4wNSw0NC4yNWE3LjY1LDcuNjUsMCwwLDAtNS44NSwzQTQuMSw0LjEsMCwwLDEsNjksNDguODZoLS4xOWE0LjEzLDQuMTMsMCwwLDEtMy4yNi0xLjYzLDcuNjksNy42OSwwLDAsMC0xMi4xNiwwLDQuMTYsNC4xNiwwLDAsMS0yLDEuNDNMMzIuNjEsNjcuMzlIODMuMTlBMi43OSwyLjc5LDAsMCwwLDg2LDY0LjZWNTIuMDdBNy43Nyw3Ljc3LDAsMCwwLDc4LjA1LDQ0LjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtNiIgZD0iTTIxLjEsNjNoMTBhMS44MywxLjgzLDAsMSwwLDAtMy42NmgtMTBhMS44MywxLjgzLDAsMCwwLDAsMy42NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjQwLjU3IiBjeT0iMzcuNzMiIHI9IjIuMTUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjQwLjU3IiBjeT0iMjguMjMiIHI9IjEuMzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjU5LjcyIiBjeT0iMjguMjMiIHI9IjEuMzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjIxLjQyIiBjeT0iMzcuNzMiIHI9IjIuMTUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjUwIiBjeT0iNDMuNDUiIHI9IjIuOTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjY4Ljg5IiBjeT0iNDMuNDUiIHI9IjIuOTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjMxLjA5IiBjeT0iNDMuNDUiIHI9IjIuOTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNiIgY3g9Ijc3Ljk0IiBjeT0iNTQuMzEiIHI9IjIuMTUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNiIgY3g9IjY4LjkxIiBjeT0iNTQuMzEiIHI9IjIuMTUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9Ijc3Ljk0IiBjeT0iMzcuNzMiIHI9IjIuMTUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjU5LjcyIiBjeT0iMzcuNzMiIHI9IjIuMTUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjUwIiBjeT0iMzMuMSIgcj0iMy4wMSIvPjxjaXJjbGUgY2xhc3M9ImNscy00IiBjeD0iMzEuMDkiIGN5PSIzMy4xIiByPSIzLjAxIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTQiIGN4PSI2OC44OSIgY3k9IjMzLjEiIHI9IjMuMDEiLz48L3N2Zz4=
10
+ description: Install the OpenShift Serverless Operator to deploy stateless, event-trigger-based
11
+ applications.
12
+ prerequisites:
13
+ - ''
14
+ introduction: |-
15
+ Red Hat® OpenShift® Serverless lets you run stateless, serverless workloads on a single multi-cloud container platform.
16
+
17
+ Serverless reduces the need to manage infrastructure or perform back-end development. Scaling is automated, and applications can run on any cloud, hybrid, or on-premises environment. Choosing Serverless means simplicity, portability, and efficiency.
18
+
19
+ Adding OpenShift Serverless to your OpenShift Container Platform cluster is quick and easy. This quick start walks you through the process.
20
+ tasks:
21
+ - title: Install the OpenShift Serverless Operator
22
+ description: |
23
+ ### To install the Serverless Operator:
24
+ 1. From the **Administrator** perspective, go to the **OperatorHub** from the **Operators** section of the navigation.
25
+ 2. In the **Filter by keyword** field at the top of the page, type the keyword `Serverless`.
26
+ 3. If the tile has an **Installed** label on it, the Operator is already installed. Proceed to task two.
27
+ 4. Click the **OpenShift Serverless Operator** tile.
28
+ 5. At the top of the OpenShift Serverless Operator panel, click **Install**.
29
+ 6. Verify that the OpenShift Serverless Operator Update Channel is 4.5 and click **Install** again.
30
+ 7. Wait for the OpenShift Serverless Operator's status to change from **Installing operator** to **Operator installed - Ready for use**.
31
+ review:
32
+ instructions: |-
33
+ #### To verify that the OpenShift Serverless Operator is installed:
34
+
35
+ In the Status column of the **Installed Operators** page, is the OpenShift Serverless Operator’s status **Succeeded?**
36
+ failedTaskHelp:
37
+ This task is incomplete. Try the task again, or [read more](https://docs.openshift.com/container-platform/4.6/serverless/installing_serverless/installing-openshift-serverless.html)
38
+ about this topic.
39
+ summary:
40
+ success: You just installed the OpenShift Serverless Operator! Next, we'll install
41
+ the required Knative Eventing and Knative Serving Custom Resource components
42
+ for this Operator to run.
43
+ failed: This task is incomplete. Try the task again, or read more about this
44
+ topic.
45
+ - title: Create the Knative Serving and Knative Eventing APIs
46
+ description: |
47
+ Now let’s install the Knative application programming interfaces (APIs) needed to deploy applications and container workloads.
48
+
49
+ **To create the Knative Serving and Knative Eventing APIs:**
50
+ 1. Go to the **Installed Operators** page.
51
+ 2. Click **OpenShift Serverless Operator**.
52
+ 3. If it does not already exist, create a project called “knative_serving” under the Project list at the top of the page. If it does exist, select the project from the list.
53
+ 4. Click on the Knative Serving link under Provided APIs or, from Knative Serving tile, click **Create Instance**.
54
+ 5. Click **Create** to create the custom resource.
55
+ 6. Now, if it does not already exist, create a project called “knative_eventing” under the Project list at the top of the page. If it does exist, select the project from the list.
56
+ 7. Click on the Knative Eventing link under Provided APIs or, from Knative Eventing tile, click **Create Instance**.
57
+ 8. Click **Create** to create the custom resource.
58
+ review:
59
+ instructions: |
60
+ #### To verify that the Knative Serving and Knative Eventing APIs were installed successfully:
61
+ Go to the **All Instances** tab of the OpenShift Serverless Operator.
62
+
63
+ Are the Knative Serving and Knative Eventing resources in the list of instances?
64
+ failedTaskHelp:
65
+ This task isn’t verified yet. Try the task again, or [read more](https://docs.openshift.com/container-platform/4.6/serverless/installing_serverless/installing-knative-serving.html#serverless-create-serving-project-web-console_installing-knative-serving)
66
+ about this topic.
67
+ summary:
68
+ success: You just created instances of the Knative Service and Knative Eventing
69
+ resources.
70
+ failed: Check your work to make sure that the Knative Service and Knative Eventing
71
+ resources were created.
72
+ conclusion: Your Serverless Operator is ready! If you want to learn how to deploy
73
+ a serverless application, take the **Creating a Serverless application** quick
74
+ start.
75
+ nextQuickStart:
76
+ - serverless-application
77
+ accessReviewResources:
78
+ - group: operators.coreos.com
79
+ resource: operatorgroups
80
+ verb: list
81
+ - group: packages.operators.coreos.com
82
+ resource: packagemanifests
83
+ verb: list
@@ -0,0 +1,74 @@
1
+ apiVersion: console.openshift.io/v1
2
+ kind: ConsoleQuickStart
3
+ metadata:
4
+ name: install-app-and-associate-pipeline
5
+ spec:
6
+ version: 4.7
7
+ displayName: Deploying an application with a pipeline
8
+ durationMinutes: 10
9
+ icon: data:image/png;base64,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
10
+ description: Import an application from Git, add a pipeline to it, and run the Pipeline.
11
+ prerequisites: ['']
12
+ introduction: This quick start guides you through creating an application and associating it with a CI/CD pipeline.
13
+ tasks:
14
+ - title: Importing an application and associate it with a pipeline
15
+ description: |-
16
+ ### Follow these steps to create an application.
17
+ 1. From the **Developer** perspective, in the navigation menu, click **+Add**.
18
+ 2. At the top of the page, in the Projects list, select a project or create a new project to put the application in.
19
+ 3. Click **From Git**.
20
+ 4. In the **Git Repo URL** field, enter `https://github.com/sclorg/django-ex.git`.
21
+ 4. In the **Pipelines** section, click the checkbox to add a pipeline to your application.
22
+ 5. Click **Create** when you’re done.
23
+ review:
24
+ instructions: |-
25
+ #### To verify that your application was successfully created:
26
+ Momentarily, you should be brought to the **Topology** view.
27
+
28
+ Is there an Application and Deployment name `django-ex?`
29
+ failedTaskHelp: This task isn’t verified yet. Try the task again.
30
+ summary:
31
+ success: You just installed a deployment with an associated pipeline! Next,
32
+ we'll explore your application in topology.
33
+ failed: Check your work to make sure that the application and deployment are
34
+ successfully created.
35
+ - title: Exploring your application
36
+ description: |-
37
+ ### Let's explore your application in topology:
38
+ 1. Click on the deployment to see associated details in the side panel.
39
+ 2. Click on the Resources tab in the side panel to view related resources.
40
+ review:
41
+ instructions: |-
42
+ #### To verify that the application has been created and a pipeline was associated:
43
+ 1. The **Resources** tab of the side panel shows many associated resources, including **Pods**, **Pipeline Runs**, and **Routes**.
44
+ 2. The **Pipeline Runs** section displays the associated pipeline.
45
+
46
+ Is there a Pipeline named django-ex-git?
47
+ failedTaskHelp: This task isn’t verified yet. Try the task again.
48
+ summary:
49
+ success: You just located the associated Pipeline! Next, we'll start and explore
50
+ your Pipeline.
51
+ failed: Check your work to locate the associated pipeline.
52
+ - title: Starting your pipeline
53
+ description: |-
54
+ ### You’ve just explored the topology of your application and seen it’s related resources. Now let’s start your pipeline.
55
+ Notice the Pipeline Runs section of the Side Panel
56
+ 1. The first row shows the Pipeline associated with the application and an action button to **Start Last Run**, which is disabled.
57
+ 2. Click on the Pipeline link, which should bring you to the **Pipeline Details** page.
58
+ 3. From the Action menu, click on **Start** to start your Pipeline.
59
+ review:
60
+ instructions: |-
61
+ #### Momentarily, you should be brought to the **Pipeline Run Details** page. To verify that your pipeline has started,
62
+ 1. Note that the **Pipeline Runs Details** section shows a visualization of the pipeline run status and the tasks in the pipeline.
63
+ 2. Hovering over a task shows a tooltip with the details of the associated steps.
64
+ 3. Click on the **Logs** tab to watch the progress of your pipeline run.
65
+ 4. When the pipeline run is complete, you will see a **Succeeded** badge on the page title.
66
+
67
+ Is the status Succeeded?
68
+ failedTaskHelp: This task isn’t verified yet. Try the task again.
69
+ summary:
70
+ success: You have run your pipeline successfully
71
+ failed: This task is not verified yet. Try the task again,
72
+ conclusion: You just created an application and associated a pipeline with it, and
73
+ successfully started the pipeline.
74
+ nextQuickStart: ['']
@@ -0,0 +1,66 @@
1
+ apiVersion: console.openshift.io/v1
2
+ kind: ConsoleQuickStart
3
+ metadata:
4
+ name: monitor-sampleapp
5
+ spec:
6
+ version: 4.7
7
+ displayName: Monitoring your sample application
8
+ durationMinutes: 10
9
+ icon: ''
10
+ description: Now that you’ve created a sample application and added health checks,
11
+ let’s monitor your application.
12
+ prerequisites: [You completed the "Getting started with a sample" quick start.]
13
+ introduction: |-
14
+ ### This quick start shows you how to monitor your sample application.
15
+ You should have previously created the **sample-app** application and **nodejs-sample** deployment via the **Get started with a sample** quick start. If you haven't, you may be able to follow these tasks with any existing deployment.
16
+ tasks:
17
+ - title: Viewing the monitoring details of your sample application
18
+ description: |-
19
+ ### To view the details of your sample application:
20
+ 1. Go to the project your sample application was created in.
21
+ 2. In the **</> Developer** perspective, go to **Topology** view.
22
+ 3. Click on the **nodejs-sample** deployment to view its details.
23
+ 4. Click on the **Monitoring** tab in the side panel.
24
+
25
+ You can see context sensitive metrics and alerts in the **Monitoring** tab.
26
+ review:
27
+ instructions: |-
28
+ #### To verify you can view the monitoring information:
29
+ 1. Do you see a **Metrics** accordion in the side panel?
30
+ 2. Do you see a **View monitoring dashboard** link in the **Metrics** accordion?
31
+ 3. Do you see three charts in the **Metrics** accordion: **CPU Usage**, **Memory Usage** and **Receive Bandwidth**?
32
+ failedTaskHelp: This task isn’t verified yet. Try the task again.
33
+ summary:
34
+ success: You have learned how you can monitor your sample app!
35
+ failed: Try the steps again.
36
+ - title: Viewing your project monitoring dashboard
37
+ description: |-
38
+ ### To view the project monitoring dashboard in the context of **nodejs-sample**:
39
+ 1. Click on the **View monitoring dashboard** link in the side panel.
40
+ 2. You can change the **Time Range** and **Refresh Interval** of the dashboard.
41
+ 3. You can change the context of the dashboard as well by clicking on the drop-down list. Select a specific workload or **All Workloads** to view the dashboard in the context of the entire project.
42
+ review:
43
+ instructions: |-
44
+ #### To verify that you are able to view the monitoring dashboard:
45
+ Do you see metrics charts in the dashboard?
46
+ failedTaskHelp: This task isn’t verified yet. Try the task again.
47
+ summary:
48
+ success: You have learned how to view the dashboard in the context of your sample
49
+ app!
50
+ failed: Try the steps again.
51
+ - title: Viewing custom metrics
52
+ description: |-
53
+ ### To view custom metrics:
54
+ 1. Click on the **Metrics** tab of the **Monitoring** page.
55
+ 2. Click the **Select Query** drop-down list to see the available queries.
56
+ 3. Click on **Filesystem Usage** from the list to run the query.
57
+ review:
58
+ instructions: |
59
+ #### Verify you can see the chart associated with the query:
60
+ Do you see a chart displayed with filesystem usage for your project? Note: select **Custom Query** from the dropdown to create and run a custom query utilizing PromQL.
61
+ failedTaskHelp: This task isn’t verified yet. Try the task again.
62
+ summary:
63
+ success: You have learned how to run a query!
64
+ failed: Try the steps again.
65
+ conclusion: You have learned how to access workload monitoring and metrics!
66
+ nextQuickStart: ['']