intellij-kubernetes
intellij-kubernetes copied to clipboard
IntelliJ Kubernetes plugin
follows up #663 related to #852 **Steps:** 1. EXEC: open a new editor with the following content: ```json { "apiVersion": "v1", "kind": "Secret", "metadata": { "annotations": {}, "name": "mytest34e" },...
**Steps:** 1. EXEC: create a json file with the following content (generated by quarkus): ```json [ { "apiVersion" : "apps/v1", "kind" : "Deployment", "metadata" : { "annotations" : { "app.quarkus.io/commit-id"...
**Steps:** 1. EXEC: create a file with the following content: ```yaml --- # -------------------------- # PVC 1: Uses matchLabels # -------------------------- apiVersion: v1 kind: PersistentVolumeClaim metadata: name: pvc-labels spec: storageClassName:...
related to #483 We should collect the information if an editor is opened for a single resource or for a multi-resource document. This tells us how important the capability to...
Currently cluster resources are displayed as yaml that has values in quotes: ```yaml app.kubernetes.io/name: "openshift-quickstart" ``` Yaml values can be provided without quotes though: ```yaml app.kubernetes.io/name: openshift-quickstart ``` It would...
* #835 * #833 #832 "Open editor" is by far the most widely used feature. Pushing modifications isn't as popular though. This could indicate that users use editors to inspect...
Kubernetes resources can be [annotated](https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/) to configure and control behaviour. [Base annotations](https://kubernetes.io/docs/reference/labels-annotations-taints/) in kubernetes are an example for this. An example for this are [istio annotations](https://istio.io/latest/docs/reference/config/annotations/). It would be handy...
Currently one can only edit resources (or open in an editor) that are show in the resource tree. It would be nice to be able to search for resources by...
Currently one can only edit individual resources: select a pod in the resource tree, pick "Edit..." in the context menu. As soon as you select several resources, you dont have...
related to #162 You currently cannot watch 2+ contexts in parallel (which can be a problem though bcs too many watches eat memory, cpu etc.). * **Lens** lists all of...