Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge changes from branch 0.0.21 to master #857

Merged
merged 5 commits into from
May 16, 2019
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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## 0.0.21 (May 16, 2019)
* Add dependency to [Kubernetes extension from Microsoft](https://marketplace.visualstudio.com/items?itemName=ms-kubernetes-tools.vscode-kubernetes-tools)
* Extend Kubernetes Clusters tree view
* [#853](https://github.com/redhat-developer/vscode-openshift-tools/issues/853) Show OpenShift icon for OpenShift clusters
* [#851](https://github.com/redhat-developer/vscode-openshift-tools/issues/851) Show OpenShift resources
* Projects
* Templates
* Deployment Configs
* Image Streams
* Routes
* [#852](https://github.com/redhat-developer/vscode-openshift-tools/issues/852) Add `Use Project` command for switching between Projects

## 0.0.20 (May 2, 2019)
* URL management for a component in Application Explorer
* Showcase URL names as child nodes inside a component in Application Explorer
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,13 +101,24 @@ For detail analysis of how to setup and run local OpenShift Cluster using minish

### Dependencies

#### CLI Tools

This extension uses two CLI tools to interact with OpenShift cluster:
* OKD CLI client tool - [oc](https://github.com/openshift/origin/releases)
* OpenShift Do tool - [odo](https://github.com/openshift/odo/releases)

> If `oc` and `odo` tools are located in a directory from `PATH` environment variable they will be used automatically.
The extension will detect these dependencies and prompt the user to install if they are missing or have not supported version - choose `Download & Install` when you see an notification for the missing tool.

#### Extensions

This extension depends on Kubernetes Extension form Microsoft which is going to be installed automatically along with OpenShift Connector Extension. Latter is using Kubernetes Extension public API to show
OpenShift specific resources like Projects, Routes, Deployment Configs, Image Streams and Templates in Kubernetes Clusters View. Those resources are visible only for OpenShift clusters.

OpenShift Connector extension also provides ```Use Project``` command to switch between OpenShift Projects in Kubernetes Clusters View.

![ useproject ](https://raw.githubusercontent.com/redhat-developer/vscode-openshift-tools/master/images/use-project.png)

**NOTE:** This extension is in Preview mode. The extension support for OpenShift is strictly experimental - assumptions may break, commands and behavior may change!

## Release notes
Expand Down
Binary file added images/use-project.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
67 changes: 21 additions & 46 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 14 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-openshift-connector",
"displayName": "OpenShift Connector",
"description": "Interacting with Red Hat OpenShift clusters and providing a streamlined developer experience using Visual Studio Code",
"version": "0.0.20",
"version": "0.0.21",
"license": "MIT",
"publisher": "redhat",
"author": "Red Hat",
Expand All @@ -27,6 +27,7 @@
"icon": "images/openshift_extension.png",
"activationEvents": [
"onView:openshiftProjectExplorer",
"onView:extension.vsKubernetesExplorer",
"onCommand:openshift.about",
"onCommand:openshift.output",
"onCommand:openshift.openshiftConsole.palette",
Expand Down Expand Up @@ -337,6 +338,11 @@
"command": "openshift.service.delete.palette",
"title": "Delete Service",
"category": "OpenShift"
},
{
"command": "openshift.useProject",
"title": "Use Project",
"category": "OpenShift"
}
],
"viewsContainers": {
Expand Down Expand Up @@ -594,6 +600,10 @@
"command": "openshift.url.open",
"when": "view == openshiftProjectExplorer && viewItem == component_route",
"group": "inline"
},
{
"command": "openshift.useProject",
"when": "viewItem =~ /\\.openshift\\.inactiveProject/i"
}
]
},
Expand Down Expand Up @@ -658,7 +668,6 @@
"tmp": "0.0.33",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"vscode": "1.1.33",
"walker": "^1.0.7"
},
"dependencies": {
Expand All @@ -678,7 +687,9 @@
"shelljs": "^0.8.3",
"string-format": "^2.0.0",
"targz": "^1.0.1",
"vscode": "^1.1.33",
"unzip-stream": "^0.3.0",
"validator": "^10.11.0"
"validator": "^10.11.0",
"vscode-kubernetes-tools-api": "0.0.7"
}
}
Loading