Skip to content

Commit b960c67

Browse files
chaged the image path and removed (formerly Red Hat CodeReady Containers) text (#4318)
Signed-off-by: msivasubramaniaan <[email protected]>
1 parent 51329fd commit b960c67

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

README.crc-workflow.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from `OpenShift: Application Explorer` view title.
77
![ addcluster ](https://raw.githubusercontent.com/redhat-developer/vscode-openshift-tools/main/images/add-cluster.gif)
88

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

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

24-
![ screencast ](https://raw.githubusercontent.com/redhat-developer/vscode-openshift-tools/main/images/gif/crc-webview.gif)
24+
![ screencast ](https://raw.githubusercontent.com/redhat-developer/vscode-openshift-tools/main/images/gif/crc-webview.gif)

doc/development.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ use
7979

8080
# Running local OpenShift Cluster
8181

82-
## OpenShift Local (formerly Red Hat CodeReady Containers)
82+
## OpenShift Local
8383

8484
1. Downloads are available at: https://developers.redhat.com/content-gateway/rest/mirror/pub/openshift-v4/clients/crc/
8585
2. To use these binaries follow the instructions at https://console.redhat.com/openshift/install/crc/installer-provisioned to obtain the needed pull-secret.
File renamed without changes.

src/webview/cluster/app/cluster.style.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,6 @@ export default (theme: Theme) =>
181181
cardBody: {
182182
maxHeight: '15em',
183183
overflow: 'hidden',
184-
overflowY: 'scroll',
185184
'&::-webkit-scrollbar': {
186185
width: 0,
187186
}

src/webview/cluster/app/cluster.tsx

+4-3
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@ import clusterStyle, { ClusterTheme } from './cluster.style';
1212
import AddClusterView from './clusterView';
1313
import OpenShiftLogo from './images/logo.png';
1414
import AddSandboxView from './sandboxView';
15+
import OpenShiftLocal from '../../../../images/openshift-local.png';
1516

1617
const useStyles = makeStyles(clusterStyle);
1718

1819
const clusterTypes = [
1920
{
2021
heading: 'Deploy it locally on your laptop',
21-
description: 'Install on Laptop: Red Hat OpenShift Local (formerly Red Hat CodeReady Containers)',
22+
description: 'Install on Laptop: Red Hat OpenShift Local',
2223
smallInfo: 'Create a minimal OpenShift 4 cluster on your desktop/laptop for local development and testing.',
23-
imageUrl: ['https://www.openshift.com/hubfs/images/icons/Icon-Red_Hat-Hardware-Laptop-A-Black-RGB.svg'],
24+
imageUrl: [OpenShiftLocal],
2425
urlAlt: 'crc',
2526
redirectLink: '',
2627
buttonText: 'Create/Refresh cluster',
@@ -30,7 +31,7 @@ const clusterTypes = [
3031
heading: 'Launch Developer Sandbox',
3132
description: 'Free access to the Developer Sandbox for Red Hat OpenShift',
3233
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.',
33-
imageUrl: ['https://assets.openshift.com/hubfs/images/logos/osh/Logo-Red_Hat-OpenShift-A-Standard-RGB.svg'],
34+
imageUrl: ['https://www.redhat.com/rhdc/managed-files/Logo-Red_Hat-OpenShift-A-Standard-RGB.svg'],
3435
urlAlt: 'dev sandbox',
3536
redirectLink: '',
3637
buttonText: 'Start your OpenShift experience',

src/webview/welcome/app/welcomePage.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import OpenShiftLogo from '../../../../images/title/logo.svg';
1616
import OpenShiftBranding from '../../../../images/welcome/OpenShift-Branding-box.png';
1717
import CloudBranding from '../../../../images/welcome/cloud.svg';
1818
import ComponentBranding from '../../../../images/welcome/component.png';
19-
import DevfileBranding from '../../../../images/welcome/devfile.png';
19+
import OpenShhiftLocal from '../../../../images/openshift-local.png';
2020
import MicrosoftLogo from '../../../../images/welcome/microsoft.svg';
2121
import OdoLogo from '../../../../images/welcome/odo.png';
2222
import { VSCodeMessage } from './vsCodeMessage';
@@ -363,7 +363,7 @@ export class Welcome extends React.Component<DefaultProps, {
363363
</div>
364364
<div className='section__brand__preview'
365365
style={{ margin: '0rem' }}>
366-
<img className='content__image__preview' src={DevfileBranding} />
366+
<img className='content__image__preview' src={OpenShhiftLocal} />
367367
</div>
368368
</section>
369369
<Stack direction='row' width='100%' alignItems='stretch' justifyContent='center' gap='1em 2em' margin='1em' padding='1em' flexWrap='wrap'>

0 commit comments

Comments
 (0)