@@ -31,6 +31,7 @@ It is available for install from the [JetBrains Marketplace](https://plugins.jet
3131 - Scale the replicated pods for deployments, deployment configs, replica/stateful sets or replication controllers
3232 - Describe pods similar to ` kubectl describe ` but formatting it as yaml for easy collapsing etc.
3333 - Listing several config files in the KUBECONFIG env variable
34+ - Instant display of labeled resources that match a given selector when editing YAML
3435
3536
3637## Features
@@ -77,8 +78,18 @@ For instance if you're editing a pod, the editor validates it by a kubernetes po
7778
7879![ editor schema] ( images/editor-schema.png )
7980
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 )
8190
91+
92+ #### Push (Save) to Cluster
8293User can push the local changes made to the cluster in order to update an existing resource or create a new resource.
8394The editor is saving the changes to the current context (cluster, namespace and user) that's defined in the kubeconfig.
8495There is a ` Push ` button available in the editor toolbar to make the action more discoverable.
0 commit comments