Skip to content

Commit d88c1a6

Browse files
committed
update to 0.0.22 release
1 parent de457dd commit d88c1a6

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22

3-
## 0.0.22 (May 27, 2019)
3+
## 0.0.22 (June 18, 2019)
4+
* [#888](https://github.com/redhat-developer/vscode-openshift-tools/pull/888) Prettify json in OpenShift Output Channel
5+
* [#882](https://github.com/redhat-developer/vscode-openshift-tools/pull/882) Add BuildConfig and Builds to Clusters View
6+
* [#835](https://github.com/redhat-developer/vscode-openshift-tools/pull/835) Provide keybinding for Login, push and refresh commands
7+
* [#873](https://github.com/redhat-developer/vscode-openshift-tools/pull/873) Hide session token when used for log in to the cluster
48

59
## 0.0.21 (May 16, 2019)
610
* Add dependency to [Kubernetes extension from Microsoft](https://marketplace.visualstudio.com/items?itemName=ms-kubernetes-tools.vscode-kubernetes-tools)

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
[![Build Status](https://travis-ci.org/redhat-developer/vscode-openshift-tools.svg?branch=master)](https://travis-ci.org/redhat-developer/vscode-openshift-tools)
44
[![Unit Tests Code Coverage](https://codecov.io/gh/redhat-developer/vscode-openshift-tools/branch/master/graph/badge.svg)](https://codecov.io/gh/redhat-developer/vscode-openshift-tools/branch/master/graph/badge.svg)
55
[![License](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://github.com/redhat-developer/vscode-openshift-tools/blob/master/README.md)
6-
[![Chat](https://img.shields.io/badge/chat-on%20mattermost-brightgreen.svg)](https://chat.openshift.io/developers/channels/adapters)
76
[![Visual Studio Marketplace](https://vsmarketplacebadge.apphb.com/version/redhat.vscode-openshift-connector.svg)](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-openshift-connector)
87

98

@@ -105,7 +104,7 @@ For detail analysis of how to setup and run local OpenShift Cluster using minish
105104

106105
This extension uses two CLI tools to interact with OpenShift cluster:
107106
* OKD CLI client tool - [oc](https://github.com/openshift/origin/releases)
108-
* OpenShift Do tool - [odo](https://github.com/openshift/odo/releases)
107+
* OpenShift Do tool - [odo](https://github.com/openshift/odo/releases/tag/v0.0.20)
109108

110109
> If `oc` and `odo` tools are located in a directory from `PATH` environment variable they will be used automatically.
111110
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.
@@ -135,7 +134,7 @@ Download the most recent `openshift-connector-<version>.vsix` file and install i
135134

136135
Feedback & Questions
137136
====================
138-
File a bug in [GitHub Issues](https://github.com/redhat-developer/vscode-openshift-tools/issues) or chat with us on [Mattermost](https://chat.openshift.io/developers/channels/adapters).
137+
If you discover an issue please file a bug and we will fix it as soon as possible. File a bug in [GitHub Issues](https://github.com/redhat-developer/vscode-openshift-tools/issues).
139138

140139
License
141140
=======

images/vscode-openshift-tools.gif

448 KB
Loading

src/k8s/deployment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export class DeploymentConfigNodeContributor implements ClusterExplorerV1.NodeCo
99

1010
async getChildren(parent: ClusterExplorerV1.ClusterExplorerNode | undefined): Promise<ClusterExplorerV1.Node[]> {
1111
const kubectl = await k8s.extension.kubectl.v1;
12-
if(kubectl.available) {
12+
if (kubectl.available) {
1313
const result = await kubectl.api.invokeCommand(`get build -o jsonpath="{range .items[?(.metadata.labels.buildconfig=='${(parent as any).name}')]}{.metadata.namespace}{','}{.metadata.name}{','}{.metadata.annotations.openshift\\.io/build\\.number}{\\"\\n\\"}{end}"`);
1414
const builds = result.stdout.split('\n')
1515
.filter((value) => value !== '')

0 commit comments

Comments
 (0)