@patternfly/quickstarts 2.2.3 → 2.2.4

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 (188) hide show
  1. package/dist/HelpTopicDrawer.d.ts +8 -2
  2. package/dist/QuickStartDrawer.d.ts +21 -2
  3. package/dist/index.es.js.map +1 -1
  4. package/dist/index.js.map +1 -1
  5. package/dist/patternfly-docs/quick-starts/design-guidelines/design-guidelines.md +105 -0
  6. package/dist/patternfly-docs/quick-starts/design-guidelines/img/card-elements copy.png +0 -0
  7. package/dist/patternfly-docs/quick-starts/design-guidelines/img/card-elements.png +0 -0
  8. package/dist/patternfly-docs/quick-starts/design-guidelines/img/catalog-elements.png +0 -0
  9. package/dist/patternfly-docs/quick-starts/design-guidelines/img/check-your-work.png +0 -0
  10. package/dist/patternfly-docs/quick-starts/design-guidelines/img/introduction-screen.png +0 -0
  11. package/dist/patternfly-docs/quick-starts/design-guidelines/img/mixed-catalog.png +0 -0
  12. package/dist/patternfly-docs/quick-starts/design-guidelines/img/prerequisites.png +0 -0
  13. package/dist/patternfly-docs/quick-starts/design-guidelines/img/qs-context.png +0 -0
  14. package/dist/patternfly-docs/quick-starts/design-guidelines/img/side-panel-elements.png +0 -0
  15. package/dist/patternfly-docs/quick-starts/design-guidelines/img/side-panel-resized.png +0 -0
  16. package/dist/patternfly-docs/quick-starts/design-guidelines/img/side-panel.png +0 -0
  17. package/dist/patternfly-docs/quick-starts/design-guidelines/img/task-no.png +0 -0
  18. package/dist/patternfly-docs/quick-starts/design-guidelines/img/task-yes.png +0 -0
  19. package/dist/patternfly-docs/quick-starts/design-guidelines/img/task.png +0 -0
  20. package/dist/patternfly-docs/quick-starts/examples/Basic.jsx +73 -0
  21. package/dist/patternfly-docs/quick-starts/examples/HelpTopic.jsx +53 -0
  22. package/dist/patternfly-docs/quick-starts/examples/about.md +77 -0
  23. package/dist/patternfly-docs/quick-starts/examples/basic.md +27 -0
  24. package/dist/patternfly-docs/quick-starts/examples/example-data/example-help-topics.js +173 -0
  25. package/dist/patternfly-docs/quick-starts/examples/example-data/example-quickstarts.js +215 -0
  26. package/dist/patternfly-docs/quick-starts/examples/example-data/index.js +15 -0
  27. package/dist/patternfly-docs/quick-starts/examples/help-topics.md +25 -0
  28. package/dist/patternfly-docs/quick-starts/examples/img/catalog.png +0 -0
  29. package/dist/patternfly-docs/quick-starts/examples/img/help-topic.png +0 -0
  30. package/dist/patternfly-docs/quick-starts/examples/img/side-panel.png +0 -0
  31. package/dist/quickstarts-full.es.js.map +1 -1
  32. package/package.json +11 -4
  33. package/src/ConsoleInternal/components/_icon-and-text.scss +14 -0
  34. package/src/ConsoleInternal/components/_markdown-view.scss +19 -0
  35. package/src/ConsoleInternal/components/catalog/_catalog.scss +390 -0
  36. package/src/ConsoleInternal/components/markdown-view.tsx +305 -0
  37. package/src/ConsoleInternal/components/utils/_status-box.scss +58 -0
  38. package/src/ConsoleInternal/components/utils/camel-case-wrap.tsx +33 -0
  39. package/src/ConsoleInternal/components/utils/index.tsx +3 -0
  40. package/src/ConsoleInternal/components/utils/router.ts +47 -0
  41. package/src/ConsoleInternal/components/utils/status-box.tsx +94 -0
  42. package/src/ConsoleInternal/module/k8s/types.ts +53 -0
  43. package/src/ConsoleShared/index.ts +1 -0
  44. package/src/ConsoleShared/src/components/index.ts +7 -0
  45. package/src/ConsoleShared/src/components/layout/PageLayout.scss +29 -0
  46. package/src/ConsoleShared/src/components/markdown-extensions/MarkdownCopyClipboard.tsx +93 -0
  47. package/src/ConsoleShared/src/components/markdown-extensions/__tests__/MarkdownCopyClipboard.spec.tsx +25 -0
  48. package/src/ConsoleShared/src/components/markdown-extensions/__tests__/test-data.ts +5 -0
  49. package/src/ConsoleShared/src/components/markdown-extensions/admonition-extension.tsx +66 -0
  50. package/src/ConsoleShared/src/components/markdown-extensions/code-extension.tsx +25 -0
  51. package/src/ConsoleShared/src/components/markdown-extensions/const.ts +3 -0
  52. package/src/ConsoleShared/src/components/markdown-extensions/index.ts +5 -0
  53. package/src/ConsoleShared/src/components/markdown-extensions/inline-clipboard-extension.tsx +45 -0
  54. package/src/ConsoleShared/src/components/markdown-extensions/multiline-clipboard-extension.tsx +50 -0
  55. package/src/ConsoleShared/src/components/markdown-extensions/showdown-extension.scss +52 -0
  56. package/src/ConsoleShared/src/components/markdown-extensions/utils.ts +3 -0
  57. package/src/ConsoleShared/src/components/markdown-highlight-extension/MarkdownHighlightExtension.tsx +64 -0
  58. package/src/ConsoleShared/src/components/markdown-highlight-extension/highlight-consts.ts +9 -0
  59. package/src/ConsoleShared/src/components/markdown-highlight-extension/index.ts +1 -0
  60. package/src/ConsoleShared/src/components/modal/Modal.scss +3 -0
  61. package/src/ConsoleShared/src/components/modal/Modal.tsx +19 -0
  62. package/src/ConsoleShared/src/components/modal/index.ts +1 -0
  63. package/src/ConsoleShared/src/components/popper/Portal.tsx +23 -0
  64. package/src/ConsoleShared/src/components/popper/SimplePopper.tsx +90 -0
  65. package/src/ConsoleShared/src/components/popper/index.ts +2 -0
  66. package/src/ConsoleShared/src/components/spotlight/InteractiveSpotlight.tsx +58 -0
  67. package/src/ConsoleShared/src/components/spotlight/Spotlight.tsx +35 -0
  68. package/src/ConsoleShared/src/components/spotlight/StaticSpotlight.tsx +32 -0
  69. package/src/ConsoleShared/src/components/spotlight/index.ts +1 -0
  70. package/src/ConsoleShared/src/components/spotlight/spotlight.scss +63 -0
  71. package/src/ConsoleShared/src/components/status/GenericStatus.tsx +33 -0
  72. package/src/ConsoleShared/src/components/status/NotStartedIcon.tsx +27 -0
  73. package/src/ConsoleShared/src/components/status/PopoverStatus.tsx +42 -0
  74. package/src/ConsoleShared/src/components/status/Status.tsx +38 -0
  75. package/src/ConsoleShared/src/components/status/StatusIconAndText.tsx +42 -0
  76. package/src/ConsoleShared/src/components/status/icons.tsx +77 -0
  77. package/src/ConsoleShared/src/components/status/index.tsx +1 -0
  78. package/src/ConsoleShared/src/components/status/statuses.tsx +36 -0
  79. package/src/ConsoleShared/src/components/status/types.ts +7 -0
  80. package/src/ConsoleShared/src/components/utils/FallbackImg.tsx +20 -0
  81. package/src/ConsoleShared/src/components/utils/index.ts +1 -0
  82. package/src/ConsoleShared/src/constants/index.ts +1 -0
  83. package/src/ConsoleShared/src/constants/ui.ts +1 -0
  84. package/src/ConsoleShared/src/hooks/index.ts +6 -0
  85. package/src/ConsoleShared/src/hooks/scroll.ts +52 -0
  86. package/src/ConsoleShared/src/hooks/useBoundingClientRect.ts +18 -0
  87. package/src/ConsoleShared/src/hooks/useEventListener.ts +14 -0
  88. package/src/ConsoleShared/src/hooks/useForceRender.ts +6 -0
  89. package/src/ConsoleShared/src/hooks/useResizeObserver.ts +20 -0
  90. package/src/ConsoleShared/src/hooks/useScrollShadows.ts +45 -0
  91. package/src/ConsoleShared/src/index.ts +4 -0
  92. package/src/ConsoleShared/src/utils/index.ts +1 -0
  93. package/src/ConsoleShared/src/utils/useCombineRefs.ts +17 -0
  94. package/src/HelpTopicDrawer.tsx +124 -0
  95. package/src/HelpTopicPanelContent.tsx +152 -0
  96. package/src/QuickStartCatalogPage.tsx +190 -0
  97. package/src/QuickStartCloseModal.tsx +47 -0
  98. package/src/QuickStartController.tsx +113 -0
  99. package/src/QuickStartDrawer.scss +11 -0
  100. package/src/QuickStartDrawer.tsx +265 -0
  101. package/src/QuickStartMarkdownView.tsx +75 -0
  102. package/src/QuickStartPanelContent.scss +46 -0
  103. package/src/QuickStartPanelContent.tsx +153 -0
  104. package/src/__tests__/quick-start-utils.spec.tsx +16 -0
  105. package/src/catalog/Catalog/QuickStartCatalogHeader.tsx +18 -0
  106. package/src/catalog/Catalog/QuickStartCatalogSection.tsx +9 -0
  107. package/src/catalog/Catalog/QuickStartCatalogToolbar.tsx +12 -0
  108. package/src/catalog/Catalog/index.ts +3 -0
  109. package/src/catalog/QuickStartCatalog.scss +8 -0
  110. package/src/catalog/QuickStartCatalog.tsx +42 -0
  111. package/src/catalog/QuickStartTile.scss +11 -0
  112. package/src/catalog/QuickStartTile.tsx +105 -0
  113. package/src/catalog/QuickStartTileDescription.scss +29 -0
  114. package/src/catalog/QuickStartTileDescription.tsx +79 -0
  115. package/src/catalog/QuickStartTileFooter.tsx +101 -0
  116. package/src/catalog/QuickStartTileFooterExternal.tsx +40 -0
  117. package/src/catalog/QuickStartTileHeader.scss +12 -0
  118. package/src/catalog/QuickStartTileHeader.tsx +77 -0
  119. package/src/catalog/Toolbar/QuickStartCatalogFilter.scss +25 -0
  120. package/src/catalog/Toolbar/QuickStartCatalogFilter.tsx +34 -0
  121. package/src/catalog/Toolbar/QuickStartCatalogFilterItems.tsx +199 -0
  122. package/src/catalog/__tests__/QuickStartCatalog.spec.tsx +35 -0
  123. package/src/catalog/__tests__/QuickStartTile.spec.tsx +38 -0
  124. package/src/catalog/__tests__/QuickStartTileDescription.spec.tsx +44 -0
  125. package/src/catalog/index.ts +9 -0
  126. package/src/controller/QuickStartConclusion.tsx +63 -0
  127. package/src/controller/QuickStartContent.scss +12 -0
  128. package/src/controller/QuickStartContent.tsx +72 -0
  129. package/src/controller/QuickStartFooter.scss +13 -0
  130. package/src/controller/QuickStartFooter.tsx +128 -0
  131. package/src/controller/QuickStartIntroduction.scss +35 -0
  132. package/src/controller/QuickStartIntroduction.tsx +66 -0
  133. package/src/controller/QuickStartTaskHeader.scss +58 -0
  134. package/src/controller/QuickStartTaskHeader.tsx +116 -0
  135. package/src/controller/QuickStartTaskHeaderList.scss +17 -0
  136. package/src/controller/QuickStartTaskHeaderList.tsx +35 -0
  137. package/src/controller/QuickStartTaskReview.scss +30 -0
  138. package/src/controller/QuickStartTaskReview.tsx +81 -0
  139. package/src/controller/QuickStartTasks.scss +89 -0
  140. package/src/controller/QuickStartTasks.tsx +75 -0
  141. package/src/controller/__tests__/QuickStartConclusion.spec.tsx +95 -0
  142. package/src/controller/__tests__/QuickStartContent.spec.tsx +52 -0
  143. package/src/controller/__tests__/QuickStartFooter.spec.tsx +148 -0
  144. package/src/controller/__tests__/QuickStartTaskHeader.spec.tsx +56 -0
  145. package/src/controller/__tests__/QuickStartTaskReview.spec.tsx +45 -0
  146. package/src/controller/__tests__/QuickStartTasks.spec.tsx +81 -0
  147. package/src/data/mocks/json/explore-pipeline-quickstart.ts +66 -0
  148. package/src/data/mocks/json/explore-serverless-quickstart.ts +90 -0
  149. package/src/data/mocks/json/monitor-sampleapp-quickstart.ts +77 -0
  150. package/src/data/mocks/json/tour-icons.ts +3 -0
  151. package/src/data/mocks/yamls/add-healthchecks-quickstart.yaml +67 -0
  152. package/src/data/mocks/yamls/explore-pipeline-quickstart.yaml +57 -0
  153. package/src/data/mocks/yamls/explore-serverless-quickstart.yaml +83 -0
  154. package/src/data/mocks/yamls/install-associate-pipeline-quickstart.yaml +74 -0
  155. package/src/data/mocks/yamls/monitor-sampleapp-quickstart.yaml +66 -0
  156. package/src/data/mocks/yamls/sample-application-quickstart.yaml +97 -0
  157. package/src/data/mocks/yamls/serverless-application-quickstart.yaml +141 -0
  158. package/src/data/quick-start-test-data.ts +10 -0
  159. package/src/data/test-utils.ts +11 -0
  160. package/src/declaration.d.ts +2 -0
  161. package/src/index.ts +17 -0
  162. package/src/locales/en/quickstart.json +46 -0
  163. package/src/styles/_base.scss +54 -0
  164. package/src/styles/_dark-custom-override.scss +62 -0
  165. package/src/styles/legacy-bootstrap/README.md +21 -0
  166. package/src/styles/legacy-bootstrap/_code.scss +44 -0
  167. package/src/styles/legacy-bootstrap/_tables.scss +38 -0
  168. package/src/styles/legacy-bootstrap/_type.scss +90 -0
  169. package/src/styles/legacy-bootstrap/_variables.scss +48 -0
  170. package/src/styles/legacy-bootstrap.scss +5 -0
  171. package/src/styles/patternfly-global-entry.ts +1 -0
  172. package/src/styles/patternfly-global.scss +28 -0
  173. package/src/styles/patternfly-nested-entry.ts +1 -0
  174. package/src/styles/patternfly-nested.scss +18 -0
  175. package/src/styles/quickstarts-standalone-entry.ts +1 -0
  176. package/src/styles/quickstarts-standalone.scss +7 -0
  177. package/src/styles/style.scss +12 -0
  178. package/src/styles/vendor-entry.ts +1 -0
  179. package/src/styles/vendor.scss +7 -0
  180. package/src/utils/PluralResolver.ts +356 -0
  181. package/src/utils/asciidoc-procedure-parser.ts +132 -0
  182. package/src/utils/const.ts +10 -0
  183. package/src/utils/help-topic-context.tsx +74 -0
  184. package/src/utils/help-topic-types.ts +16 -0
  185. package/src/utils/quick-start-context.tsx +477 -0
  186. package/src/utils/quick-start-types.ts +72 -0
  187. package/src/utils/quick-start-utils.ts +92 -0
  188. package/src/utils/useLocalStorage.ts +38 -0
@@ -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: ['']
@@ -0,0 +1,97 @@
1
+ apiVersion: console.openshift.io/v1
2
+ kind: ConsoleQuickStart
3
+ metadata:
4
+ name: sample-application
5
+ spec:
6
+ version: 4.7
7
+ displayName: Getting started with a sample
8
+ durationMinutes: 10
9
+ icon: ''
10
+ description: Is this the first time you’ve used OpenShift? Let's start with a simple
11
+ sample app to learn the basics.
12
+ prerequisites: ['']
13
+ introduction: '### This Quick Start shows you how to deploy a sample application
14
+ to OpenShift.'
15
+ tasks:
16
+ - title: Creating a sample application
17
+ description: |-
18
+ ### To create a sample application:
19
+ 1. Using the perspective switcher at the top of the navigation, go to **</> Developer**.
20
+ 2. Go to the **+Add** page in the navigation.
21
+ 3. Using the project drop-down list, select the project you would like to create the sample application in. You can also create a new one if you’d like.
22
+ 4. Click **Samples** to create an application from a code sample.
23
+ 5. Click on the **Node.js** card.
24
+ 6. Scroll down and click **Create**.
25
+
26
+ The **Topology** view will load with your new sample application. The application is represented by the light grey area with the white border. The deployment is a white circle.
27
+ review:
28
+ instructions: |-
29
+ #### To verify the application was successfully created:
30
+ 1. Do you see a **sample-app** application?
31
+ 2. Do you see a **nodejs-sample** deployment?
32
+ failedTaskHelp: This task isn’t verified yet. Try the task again.
33
+ summary:
34
+ success: You have created a sample application!
35
+ failed: Try the steps again.
36
+ - title: Viewing build status
37
+ description: |-
38
+ ### To view the build status of the sample application:
39
+ 1. Hover over the icon on the bottom left quadrant of the **nodejs-sample** deployment to see the build status in a tooltip.
40
+ 2. Click on the icon for quick access to the build log.
41
+
42
+ You should be able to see the log stream of the **nodejs-sample-1** build on the **Build Details** page.
43
+ review:
44
+ instructions: |-
45
+ #### To verify the build is complete:
46
+ Wait for the build to complete. It may take a few minutes. Do you see a **Completed** badge on the page header?
47
+ failedTaskHelp: This task isn’t verified yet. Try the task again.
48
+ summary:
49
+ success: Your sample app is now built!
50
+ failed: Try the steps again.
51
+ - title: Viewing the associated Git repo
52
+ description: |
53
+ ### To view the associated code:
54
+ 1. If you aren't already there, go to the **Topology** page in the navigation.
55
+ 2. The icon on the bottom right quadrant of the **nodejs-sample** deployment represents the Git repo of the associated code. The icon shown can be for Bitbucket, GitHub, GitLab or generic Git. Click on it to navigate to the associated Git repository.
56
+ review:
57
+ instructions: |-
58
+ #### Verify you can see the code associated with the sample app:
59
+ Was a new browser tab opened with https://github.com/sclorg/nodejs-ex?
60
+ failedTaskHelp: This task isn’t verified yet. Try the task again.
61
+ summary:
62
+ success: You have viewed the associated Git repo.
63
+ failed: Try the steps again.
64
+ - title: Viewing the pod status
65
+ description: |-
66
+ ### To view the pod status:
67
+ 1. Click on the browser tab with OpenShift. Notice that the **nodejs-sample** deployment has a pod donut imposed on the circle, representing the pod status
68
+ 2. Hover over the pod donut.
69
+
70
+ You should now see the pod status in a tooltip.
71
+ review:
72
+ instructions: |-
73
+ #### To verify you see the pod status:
74
+ Do you see the number of associated pods and their statuses?
75
+ failedTaskHelp: This task isn’t verified yet. Try the task again.
76
+ summary:
77
+ success: You have viewed the pod status for your app!
78
+ failed: Try the steps again.
79
+ - title: Running the sample application
80
+ description: |-
81
+ ### To run the sample application:
82
+ 1. The icon on the top right quadrant of the **nodejs-sample** deployment represents the route URL. Click on it to open the URL and run the application.
83
+
84
+ The application will be run in a new tab.
85
+ review:
86
+ instructions: |-
87
+ #### To verify your sample application is running:
88
+ 1. Make sure you are in the new tab.
89
+ 2. Does the page have a **Welcome to your Node.js application on OpenShift** title?
90
+ failedTaskHelp: This task isn’t verified yet. Try the task again.
91
+ summary:
92
+ success: You have run your sample app!
93
+ failed: Try the steps again.
94
+ conclusion: Your sample application is deployed and ready! To add health checks
95
+ to your sample app, take the **Adding health checks to your sample application**
96
+ quick start
97
+ nextQuickStart: [add-healthchecks]
@@ -0,0 +1,141 @@
1
+ apiVersion: console.openshift.io/v1
2
+ kind: ConsoleQuickStart
3
+ metadata:
4
+ name: serverless-application
5
+ spec:
6
+ version: 4.7
7
+ displayName: Exploring Serverless applications
8
+ icon: data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2UwMzQwMDt9LmNscy0ye2ZpbGw6I2NlMmUwMDt9LmNscy0ze2ZpbGw6bm9uZTt9LmNscy00e2ZpbGw6I2ZmZjt9LmNscy01e2ZpbGw6I2RjZGNkYzt9LmNscy02e2ZpbGw6I2FhYTt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPlJlZF9IYXQtT3BlbnNoaWZ0NC1DYXRhbG9nX0ljb25zLVNlcnZlcmxlc3M8L3RpdGxlPjxjaXJjbGUgY2xhc3M9ImNscy0xIiBjeD0iNTAiIGN5PSI1MCIgcj0iNTAiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik04NS4zNiwxNC42NEE1MCw1MCwwLDAsMSwxNC42NCw4NS4zNloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik00MC41Nyw0Ny40MmEzLjg5LDMuODksMCwxLDAsMy44OCwzLjg4QTMuODksMy44OSwwLDAsMCw0MC41Nyw0Ny40MloiLz48cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik0yMS40Miw0Ny40MkEzLjg5LDMuODksMCwxLDAsMjUuMyw1MS4zLDMuODksMy44OSwwLDAsMCwyMS40Miw0Ny40MloiLz48cGF0aCBjbGFzcz0iY2xzLTQiIGQ9Ik01MC4wOSw0OC44NmgtLjE4YTQuMTEsNC4xMSwwLDAsMS0zLjI2LTEuNjMsNy42OSw3LjY5LDAsMCwwLTEyLjE2LDAsNC4xMyw0LjEzLDAsMCwxLTMuMjYsMS42M0gzMWE0LjA5LDQuMDksMCwwLDEtMy4yNS0xLjYzQTcuNjksNy42OSwwLDAsMCwxNCw1MS45M2gwVjY0LjZhMi43OSwyLjc5LDAsMCwwLDIuNzksMi43OWgxNS44TDUxLjM0LDQ4LjY2QTQsNCwwLDAsMSw1MC4wOSw0OC44NloiLz48cGF0aCBjbGFzcz0iY2xzLTUiIGQ9Ik03OC4wNSw0NC4yNWE3LjY1LDcuNjUsMCwwLDAtNS44NSwzQTQuMSw0LjEsMCwwLDEsNjksNDguODZoLS4xOWE0LjEzLDQuMTMsMCwwLDEtMy4yNi0xLjYzLDcuNjksNy42OSwwLDAsMC0xMi4xNiwwLDQuMTYsNC4xNiwwLDAsMS0yLDEuNDNMMzIuNjEsNjcuMzlIODMuMTlBMi43OSwyLjc5LDAsMCwwLDg2LDY0LjZWNTIuMDdBNy43Nyw3Ljc3LDAsMCwwLDc4LjA1LDQ0LjI1WiIvPjxwYXRoIGNsYXNzPSJjbHMtNiIgZD0iTTIxLjEsNjNoMTBhMS44MywxLjgzLDAsMSwwLDAtMy42NmgtMTBhMS44MywxLjgzLDAsMCwwLDAsMy42NloiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjQwLjU3IiBjeT0iMzcuNzMiIHI9IjIuMTUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjQwLjU3IiBjeT0iMjguMjMiIHI9IjEuMzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjU5LjcyIiBjeT0iMjguMjMiIHI9IjEuMzUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjIxLjQyIiBjeT0iMzcuNzMiIHI9IjIuMTUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjUwIiBjeT0iNDMuNDUiIHI9IjIuOTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjY4Ljg5IiBjeT0iNDMuNDUiIHI9IjIuOTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjMxLjA5IiBjeT0iNDMuNDUiIHI9IjIuOTMiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNiIgY3g9Ijc3Ljk0IiBjeT0iNTQuMzEiIHI9IjIuMTUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNiIgY3g9IjY4LjkxIiBjeT0iNTQuMzEiIHI9IjIuMTUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9Ijc3Ljk0IiBjeT0iMzcuNzMiIHI9IjIuMTUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjU5LjcyIiBjeT0iMzcuNzMiIHI9IjIuMTUiLz48Y2lyY2xlIGNsYXNzPSJjbHMtNCIgY3g9IjUwIiBjeT0iMzMuMSIgcj0iMy4wMSIvPjxjaXJjbGUgY2xhc3M9ImNscy00IiBjeD0iMzEuMDkiIGN5PSIzMy4xIiByPSIzLjAxIi8+PGNpcmNsZSBjbGFzcz0iY2xzLTQiIGN4PSI2OC44OSIgY3k9IjMzLjEiIHI9IjMuMDEiLz48L3N2Zz4=
9
+ durationMinutes: 15
10
+ description: Learn how to create a Serverless application.
11
+ prerequisites: ['']
12
+ introduction: This quick start guides you through creating and using a serverless application.
13
+ tasks:
14
+ - title: Creating a serverless application
15
+ description: |-
16
+ ### To create a serverless application:
17
+ 1. From the **Developer** perspective, in the navigation menu, click [+Add](/add).
18
+ 2. At the top of the page, in the **Projects** list, select a project to create the application in.
19
+ 3. Click **From Git**.
20
+ 4. In the **Git Repo URL** field, type `https://github.com/sclorg/django-ex.git`.
21
+ 5. Under Resources, select **Knative Service**.
22
+ 6. At the end of the page, click **Create**.
23
+
24
+ The **Topology** view displays your new Serverless application. The application is represented by the light gray area with the white border. The Knative Service is the darker gray area with the dotted border. The Pod ring in the middle represents the revision.
25
+ review:
26
+ instructions: |-
27
+ #### To verify the application was successfully created:
28
+ From the **Topology** view, look for your new application. Wait for the build to complete. It may take a few minutes.
29
+
30
+ After the build completes, a green checkmark appears in the lower-left corner of the service. Your application will say “No Revisions” in the center.
31
+
32
+ Do you see the completed application and build?
33
+ failedTaskHelp:
34
+ This task isn’t verified yet. Try the task again, or [read more](https://docs.openshift.com/container-platform/4.6/serverless/serving-creating-managing-apps.html#creating-serverless-applications-using-the-openshift-container-platform-web-console)
35
+ about this topic.
36
+ summary:
37
+ success: You just created a Serverless app!
38
+ failed: Try the steps again.
39
+ - title: Demoing scalability
40
+ description: |
41
+ ### To see your application scale:
42
+ 1. From the **Display Options** list at the top of the **Topology** view, click **Pod Count**.
43
+ 2. Wait for the Pod count to scale down to zero Pods. Scaling down may take a few minutes.
44
+ 3. Click the **Route URL** icon in the upper-right corner of the Knative Service panel. The application opens in a new tab.
45
+ 4. Close the new browser tab and return to the **Topology** view.
46
+
47
+ In the **Topology** view, you can see that your application scaled up to one Pod to accommodate your request. After a few minutes, your application scales back down to zero Pods.
48
+ review:
49
+ instructions: |-
50
+ #### To verify the application scaled down:
51
+ 1. Click the revision inside your service. The badges under the Pod ring and at the top of the side panel should be (REV).
52
+ 2. Click the **Details** tab in the side panel.
53
+
54
+ Is the Pod ring autoscaled to zero?
55
+ failedTaskHelp:
56
+ This task isn’t verified yet. Try the task again, or [read more](https://docs.openshift.com/container-platform/4.6/applications/application_life_cycle_management/odc-viewing-application-composition-using-topology-view.html#odc-scaling-application-pods-and-checking-builds-and-routes_viewing-application-composition-using-topology-view)
57
+ about this topic.
58
+ summary:
59
+ success: You just scaled up your application to accomodate a traffic request!
60
+ failed: Try the steps again.
61
+ - title: Connecting an event source to your Knative Service
62
+ description: |-
63
+ ### To connect an event source to your Knative Service:
64
+ 1. On the **Topology** View, hover over your service with your cursor. You should see a blue arrow.
65
+ 2. Click and drag the blue arrow, then drop it anywhere outside the service.
66
+ 3. In the list that appears, click **Event Source**.
67
+ 4. Under the **Type** field, click **PingSource**.
68
+ 5. In the **Data** field, type `This message is from PingSource`. This message is posted when the service is called.
69
+ 6. In the **Schedule** field, type `* * * * *`. This means that the PingSource will make a call every minute.
70
+ 7. In the **Application** field, select **Sample Serverless App**.
71
+ 8. Click **Create**.
72
+ review:
73
+ instructions: |-
74
+ #### To verify that the event connected to your Knative service:
75
+
76
+ Go to the **Topology** view.
77
+
78
+ Do you see a PingSource connected by a gray line to the side of your application?
79
+ failedTaskHelp:
80
+ This task isn’t verified yet. Try the task again, or [read more](https://docs.openshift.com/container-platform/4.6/serverless/event_sources/knative-event-sources.html)
81
+ about this topic.
82
+ summary:
83
+ success: You just wired an Event Source to your Knative Service!
84
+ failed: Try the steps again.
85
+ - title: Forcing a new revision and set traffic distribution
86
+ description: |-
87
+ ### To force a revision and set traffic distribution:
88
+
89
+ 1. In **Topology**, click on the revision inside your service to view its details. The badges under the Pod ring and at the top of the detail panel should be (REV).
90
+ 2. In the side panel, click on the **Resources** tab.
91
+ 3. Scroll down and click on the configuration associated with your service.
92
+ 4. Go to the resource’s **YAML** tab.
93
+ 5. Scroll all the way down until you see `timeoutSeconds`.
94
+ 6. Change the value from `300` to `30` and click **Save**.
95
+ 7. Go back to the **Topology** view.
96
+ 8. Click on your service. The badge at the top of the side panel should be (KSVC).
97
+ 9. In the side panel, click on the **Resources** tab.
98
+ 10. Next to **Revisions**, click **Set Traffic Distribution**.
99
+ 11. Click **Add Revision**.
100
+ 12. In the **Revision** dropdown, select the new revision.
101
+ 13. In the **Split** column, set both revisions to **50**.
102
+ 14. Click **Save**.
103
+
104
+ You should now be able to watch as the Pod rings for each revision scale up and down each time the application is pinged.
105
+ review:
106
+ instructions: |-
107
+ #### To verify that you forced a new revision and set traffic distribution:
108
+
109
+ Make sure you are still in **Topology** view.
110
+
111
+ Do you see two revisions in your Knative Service?
112
+ failedTaskHelp:
113
+ This task isn’t verified yet. Try the task again, or [read more](https://docs.openshift.com/container-platform/4.6/serverless/knative_serving/splitting-traffic-between-revisions.html)
114
+ about this topic.
115
+ summary:
116
+ success: You just set a traffic distribution for your Serverless app!
117
+ failed: Try the steps again.
118
+ - title: Deleting your application
119
+ description: |-
120
+ ### To delete the application you just created:
121
+
122
+ 1. Click your application’s name. The badge at the top of the side panel should be (A).
123
+ 2. At the top of the resource details panel, click on the **Actions** list.
124
+ 3. Click **Delete application**.
125
+ 4. To confirm deletion, type the application’s name in the **Name** field, and then click **Delete**.
126
+ review:
127
+ instructions: |-
128
+ #### To verify you deleted your application: :
129
+
130
+ Make sure you are still in **Topology** view.
131
+
132
+ Has the Sample Serverless App been removed?
133
+ failedTaskHelp:
134
+ This task is not verified yet. Try the task again, or [read more](https://docs.openshift.com/container-platform/4.6/applications/application_life_cycle_management/odc-deleting-applications.html)
135
+ about this topic.
136
+ summary:
137
+ success: You just deleted your Serverless app!
138
+ failed: Try the steps again.
139
+ conclusion: You just learned how to use Serverless applications in your cluster!
140
+ To learn more about building Serverless apps, take a look at our [Knative Cookbook](https://redhat-developer-demos.github.io/knative-tutorial/knative-tutorial/index.html).
141
+ nextQuickStart: ['']
@@ -0,0 +1,10 @@
1
+ import { QuickStart } from '@patternfly/quickstarts';
2
+ import { explorePipelinesQuickStart } from './mocks/json/explore-pipeline-quickstart';
3
+ import { exploreServerlessQuickStart } from './mocks/json/explore-serverless-quickstart';
4
+ import { monitorSampleAppQuickStart } from './mocks/json/monitor-sampleapp-quickstart';
5
+
6
+ export const allQuickStarts: QuickStart[] = [
7
+ explorePipelinesQuickStart,
8
+ exploreServerlessQuickStart,
9
+ monitorSampleAppQuickStart,
10
+ ];
@@ -0,0 +1,11 @@
1
+ import { QuickStart } from '@patternfly/quickstarts';
2
+ import { allQuickStarts } from './quick-start-test-data';
3
+
4
+ export const getQuickStarts = (): QuickStart[] => allQuickStarts;
5
+
6
+ export const contextValues = {
7
+ allQuickStarts,
8
+ activeQuickStartID: '',
9
+ startQuickStart: () => {},
10
+ restartQuickStart: () => {},
11
+ };