Commands 'Get', 'Describe' and 'Delete' don't work for tree items created through ClusterExplorerV1.NodeContributor
See original GitHub issueUsing New API new kinds of resource can be contributed to the Clusters View. There are two way to contribute:
- Using factory method
clusterExplorer.api.nodeSources.resourceFolder
to create NodeContributor and then fluent API methodsif
andat
to place contributed nodes in tree; - Implementing NodeContributor interface directly
For the first method all commands for contributed tree item works as expected. For the second method commands from the subject fail in different ways:
- ‘Describe’ and ‘Delete’ produce messages
Get
runs command withdummy
resource ID in terminal
C:\Users\user1>kubectl get dummy -o wide
error: the server doesn't have a resource type "dummy"
C:\Users\user1>
Issue Analytics
- State:
- Created 4 years ago
- Comments:12
Top Results From Across the Web
[2.6] Unable to remove cluster #34650 - rancher ... - GitHub
Unable to delete downstream cluster is always reproducible with vsphere setups. Once your cluster is active, then delete it from the UI from...
Read more >Remove nodes from the cluster - Product documentation
You can remove unwanted nodes from a cluster, one node at a time. After you remove a node, you must also remove its...
Read more >Removing Kubernetes Components from Nodes - Rancher Docs
Learn about cluster cleanup when removing nodes from your Rancher-launched Kubernetes cluster. What is removed, how to do it manually.
Read more >Configuring cluster accounts in Active Directory - Microsoft Learn
Under Enter the object names to select, type the name of the user account that was created or obtained in step 1. If...
Read more >Cluster and Node Managment Commands - Apache Solr
A cluster is a set of Solr nodes operating in coordination with each other. These API commands work with a SolrCloud cluster at...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Okay, so the requirement is to present a
resourceFolder
style view of a set of resource nodes (e.g.BuildConfig
resources) with all the features built intoresourceFolder
, but to have additional nodes appear under each resource, instead of the resource being terminal. Let me take a look at that…@dgolovin I’m making progress on this but it’s taking a while to come up with a nice composable API (also I had to refactor the entire cluster explorer internals because it had reached the point where I could no longer follow them). I will hopefully have something to run past you soon but wanted to assure you that it’s not being left to slide!