Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.crc-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ from `OpenShift: Application Explorer` view title.
![ addcluster ](https://raw.githubusercontent.com/redhat-developer/vscode-openshift-tools/main/images/add-cluster.gif)

The view provides a guided workflow to create and start OpenShift 4 single node cluster on your workstation
using OpenShift Local (formerly Red Hat CodeReady Containers):
using OpenShift Local:

* Download & Install OpenShift Local
* Set Virtual Machine parameters: number of CPUs and memory limit
Expand All @@ -21,4 +21,4 @@ The view provides following options to control cluster's state:
* Open OpenShift Developer Console for cluster
* Refresh cluster's state

![ screencast ](https://raw.githubusercontent.com/redhat-developer/vscode-openshift-tools/main/images/gif/crc-webview.gif)
![ screencast ](https://raw.githubusercontent.com/redhat-developer/vscode-openshift-tools/main/images/gif/crc-webview.gif)
2 changes: 1 addition & 1 deletion doc/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ use

# Running local OpenShift Cluster

## OpenShift Local (formerly Red Hat CodeReady Containers)
## OpenShift Local

1. Downloads are available at: https://developers.redhat.com/content-gateway/rest/mirror/pub/openshift-v4/clients/crc/
2. To use these binaries follow the instructions at https://console.redhat.com/openshift/install/crc/installer-provisioned to obtain the needed pull-secret.
Expand Down
File renamed without changes
1 change: 0 additions & 1 deletion src/webview/cluster/app/cluster.style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,6 @@ export default (theme: Theme) =>
cardBody: {
maxHeight: '15em',
overflow: 'hidden',
overflowY: 'scroll',
'&::-webkit-scrollbar': {
width: 0,
}
Expand Down
7 changes: 4 additions & 3 deletions src/webview/cluster/app/cluster.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,16 @@ import clusterStyle, { ClusterTheme } from './cluster.style';
import AddClusterView from './clusterView';
import OpenShiftLogo from './images/logo.png';
import AddSandboxView from './sandboxView';
import OpenShiftLocal from '../../../../images/openshift-local.png';

const useStyles = makeStyles(clusterStyle);

const clusterTypes = [
{
heading: 'Deploy it locally on your laptop',
description: 'Install on Laptop: Red Hat OpenShift Local (formerly Red Hat CodeReady Containers)',
description: 'Install on Laptop: Red Hat OpenShift Local',
smallInfo: 'Create a minimal OpenShift 4 cluster on your desktop/laptop for local development and testing.',
imageUrl: ['https://www.openshift.com/hubfs/images/icons/Icon-Red_Hat-Hardware-Laptop-A-Black-RGB.svg'],
imageUrl: [OpenShiftLocal],
urlAlt: 'crc',
redirectLink: '',
buttonText: 'Create/Refresh cluster',
Expand All @@ -30,7 +31,7 @@ const clusterTypes = [
heading: 'Launch Developer Sandbox',
description: 'Free access to the Developer Sandbox for Red Hat OpenShift',
smallInfo: 'If you are exploring how to run your code as containers in OpenShift, our free Developer Sandbox instantly gives you a way to try it out.',
imageUrl: ['https://assets.openshift.com/hubfs/images/logos/osh/Logo-Red_Hat-OpenShift-A-Standard-RGB.svg'],
imageUrl: ['https://www.redhat.com/rhdc/managed-files/Logo-Red_Hat-OpenShift-A-Standard-RGB.svg'],
urlAlt: 'dev sandbox',
redirectLink: '',
buttonText: 'Start your OpenShift experience',
Expand Down
4 changes: 2 additions & 2 deletions src/webview/welcome/app/welcomePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import OpenShiftLogo from '../../../../images/title/logo.svg';
import OpenShiftBranding from '../../../../images/welcome/OpenShift-Branding-box.png';
import CloudBranding from '../../../../images/welcome/cloud.svg';
import ComponentBranding from '../../../../images/welcome/component.png';
import DevfileBranding from '../../../../images/welcome/devfile.png';
import OpenShhiftLocal from '../../../../images/openshift-local.png';
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typo OpenShhiftLocal --> OpenShiftLocal

import MicrosoftLogo from '../../../../images/welcome/microsoft.svg';
import OdoLogo from '../../../../images/welcome/odo.png';
import { VSCodeMessage } from './vsCodeMessage';
Expand Down Expand Up @@ -363,7 +363,7 @@ export class Welcome extends React.Component<DefaultProps, {
</div>
<div className='section__brand__preview'
style={{ margin: '0rem' }}>
<img className='content__image__preview' src={DevfileBranding} />
<img className='content__image__preview' src={OpenShhiftLocal} />
</div>
</section>
<Stack direction='row' width='100%' alignItems='stretch' justifyContent='center' gap='1em 2em' margin='1em' padding='1em' flexWrap='wrap'>
Expand Down