Skip to content

Commit

Permalink
Merge pull request #13303 from jerolimov/ODC-7419
Browse files Browse the repository at this point in the history
ODC-7419: Feature new Quickstarts (RHDH on the admin dashboard and Pipelines/Serverless on the dev add page)
  • Loading branch information
openshift-merge-bot[bot] committed Nov 22, 2023
2 parents 1ef3f9d + 61c1af1 commit 9c449fc
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,23 @@ export const GettingStartedSection: React.FC = () => {
<div className="odc-add-page-getting-started-section">
<GettingStartedGrid onHide={() => setShowState(GettingStartedShowState.HIDE)}>
<SampleGettingStartedCard featured={['code-with-quarkus', 'java-springboot-basic']} />
<QuickStartGettingStartedCard featured={['quarkus-with-s2i', 'spring-with-s2i']} />
<QuickStartGettingStartedCard
featured={[
// Available when the Red Hat OpenShift Pipelines operator is installed:
// - Deploying an application with a pipeline
'install-app-and-associate-pipeline',

// Available when the Red Hat OpenShift Serverless operator is installed:
// - Exploring Serverless applications
'serverless-application',

// All part of the console-operator:
// - Get started with Quarkus using s2i
'quarkus-with-s2i',
// - Get started with Spring
'spring-with-s2i',
]}
/>
<DeveloperFeaturesGettingStartedCard />
</GettingStartedGrid>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,19 @@ export const GettingStartedSection: React.FC = () => {
<div className="co-dashboard-getting-started-section">
<GettingStartedGrid onHide={() => setShowState(GettingStartedShowState.HIDE)}>
<ClusterSetupGettingStartedCard />
<QuickStartGettingStartedCard featured={['monitor-sampleapp', 'quarkus-with-helm']} />
<QuickStartGettingStartedCard
featured={[
// All part of the console-operator:
// - Monitor your sample application
'monitor-sampleapp',
// - Install the Red Hat Developer Hub (RHDH) operator (and create a RHDH instance)
'rhdh-installation-via-operator',
// - Install the Red Hat OpenShift Pipelines operator
'explore-pipelines',
// - Install the Red Hat OpenShift Serverless operator
'install-serverless',
]}
/>
<ExploreAdminFeaturesGettingStartedCard />
</GettingStartedGrid>
</div>
Expand Down

0 comments on commit 9c449fc

Please sign in to comment.