@@ -31,6 +31,7 @@ It is available for install from the [JetBrains Marketplace](https://plugins.jet
31
31
- Scale the replicated pods for deployments, deployment configs, replica/stateful sets or replication controllers
32
32
- Describe pods similar to ` kubectl describe ` but formatting it as yaml for easy collapsing etc.
33
33
- Listing several config files in the KUBECONFIG env variable
34
+ - Instant display of labeled resources that match a given selector when editing YAML
34
35
35
36
36
37
## Features
@@ -77,8 +78,18 @@ For instance if you're editing a pod, the editor validates it by a kubernetes po
77
78
78
79
![ editor schema] ( images/editor-schema.png )
79
80
80
- #### Push (Save) to Cluster
81
+ #### Inline hints when editing
82
+ When editing a YAML manifest, you get instantly informed of the number of labeled resources that match your selector expression as you type.
83
+ Clicking the hint you get the details of the matching targets.
84
+ The opposite works too, of course: you get the matching selectors for your labels.
85
+ ![ hint matching labels] ( images/editor-labels-matching-selectors.png )
86
+
87
+ Base64 encoded values in secrets or configmaps can be edited transparently.
88
+ A hint displays the raw value, and a dialog allows you to provide it unencoded.
89
+ ![ hint matching labels] ( images/editor-bas64-encoded-value.png )
81
90
91
+
92
+ #### Push (Save) to Cluster
82
93
User can push the local changes made to the cluster in order to update an existing resource or create a new resource.
83
94
The editor is saving the changes to the current context (cluster, namespace and user) that's defined in the kubeconfig.
84
95
There is a ` Push ` button available in the editor toolbar to make the action more discoverable.
0 commit comments