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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ OpenShift Connector extension provides an end-to-end developer experience for Re
- Developers can easily create, deploy and live debug container applications running on OpenShift.
- Create [devfile](https://devfile.io/docs/devfile/2.1.0/user-guide/) based components directly from DefaultRegistry View
- Follow logs for the deployed applications on OpenShift
- Run local instance of OpenShift 4.11.1 using [OpenShift Local](https://crc.dev/crc/) directly from IDE
- Run local instance of OpenShift 4.11.3 using [OpenShift Local](https://crc.dev/crc/) directly from IDE
- Connect & Provision free [Developer Sandbox for Red Hat OpenShift](https://developers.redhat.com/developer-sandbox) instance from IDE

### Demo: https://www.youtube.com/watch?v=HEsYgDqD1rM
Expand Down
4 changes: 2 additions & 2 deletions src/webview/cluster/app/clusterView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ function getSteps() {
// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
export default function addClusterView(props) {
const classes = useStyles();
const crcLatest = '2.8.0';
const crcOpenShift = '4.11.1';
const crcLatest = '2.9.0';
const crcOpenShift = '4.11.3';
const [fileName, setBinaryPath] = React.useState('');
const [pullSecretPath, setSecret] = React.useState('');
const [cpuSize, setCpuSize] = React.useState(crcDefaults.DefaultCPUs);
Expand Down