-
Notifications
You must be signed in to change notification settings - Fork 59
Contribute to Kubernetes cloud explorer #2962
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
Contribute to Kubernetes cloud explorer #2962
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wording changes.
7538cf4
to
df71623
Compare
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #2962 +/- ##
==========================================
- Coverage 37.90% 37.63% -0.28%
==========================================
Files 61 62 +1
Lines 3841 3938 +97
Branches 744 755 +11
==========================================
+ Hits 1456 1482 +26
- Misses 2385 2456 +71
☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Tested in my local and it works as expected
@JessicaJHee Let's add tooltip for Developer Sandbox and OpenShift Local. |
Updates kubernetes tools cloud explorer with options to signup for Developer Sandbox and Local OpenShift
Signed-off-by: Denis Golovin [email protected]
Signed-off-by: Denis Golovin [email protected]
Signed-off-by: Denis Golovin [email protected]
df71623
to
23a2fe7
Compare
|
private buildOpenshiftLocalItem() { | ||
const openshiftLocalItem = new RedHatCloudItem('Openshift Local'); | ||
openshiftLocalItem.tooltip = 'Provision OpenShift 4 cluster to your local computer.'; | ||
openshiftLocalItem.iconPath = new vscode.ThemeIcon('symbol-folder'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JessicaJHee We should use the vm
icon here for OpenShift local.
const signupStatus = await RedHatTreeDataProvier.getSandboxSignupStatus(); | ||
const sandboxItem = new RedHatCloudItem('Developer Sandbox'); | ||
sandboxItem.tooltip = 'Get 30-days free access to a shared OpenShift and Kubernetes cluster.'; | ||
sandboxItem.iconPath = new vscode.ThemeIcon('vm'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JessicaJHee We should use the openshift logo
icon here instead of vm one.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change the icons for the cluster providers.
Signed-off-by: Jessica He <[email protected]>
23a2fe7
to
c9c6da1
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
Closes #2620