diff --git a/README.md b/README.md index 2b6ada504..d474460cf 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,9 @@ It is available for install from the [JetBrains Marketplace](https://plugins.jet - Edit Kubernetes resource manifests and apply them to your cluster - View Kubernetes and OpenShift clusters in an explorer tree view - Tree View supports dynamic update of K8s resources - - Allow Push and Pull Feature to keep the editor in sync with the Kubernetes resource - - Support Creation and Deletion of new Kubernetes resources on Cluster + - Push and Pull Feature to keep the editor in sync with the Kubernetes resource + - Allows users to Push multiple resources in an editor to create several resources at once. + - Support Creation and Deletion of Kubernetes resources on Cluster - Navigate into Kubernetes workloads, services, pods and nodes - Switching contexts and namespaces within Kubernetes - Follow logs from the connected cluster resource @@ -79,7 +80,7 @@ There is a `Push` button available in the editor toolbar to make the action more ![editor toolbar push](images/editor-toolbar-push.png) Alternatively the editor notifies you whenever you may push your content to the cluster. -Clicking the "Push" link in the editor notification saves your editor to the cluster. +Clicking the `Push` link in the editor notification saves your file changes on to the cluster. ![editor push](images/editor-push.png) @@ -88,16 +89,10 @@ The new resource will then appear in the resource tree that's displayed in our t #### Pull (Load) from Cluster -The editor also notifies you if your resource has changed on the cluster. -The notification informs you of a newer version that is available on the cluster and allows you to `Pull` it into your editor. +You can `Pull` the resource from the cluster into the local file opened in the editor. +Clicking on the `Pull` icon in the toolbar replaces the content of your local file in the editor with the version that exists on the cluster. -![editor pulled](images/editor-pulled.png) - -Competing changes in your editor and on the cluster get notified with 2 options: -You can either overwrite the cluster by pushing the editor to the cluster. -Alternatively you can replace your local version with the one on the cluster and pull it. - -![editor pull or push](images/editor-pull-push.png) +![editor pull](images/editor-toolbar-pull.png) #### Diff diff --git a/gradle.properties b/gradle.properties index 511f5dff5..41872a5d6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,7 +2,7 @@ ideaVersion=IC-2021.1 # build number ranges # https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html sinceIdeaBuild=221 -projectVersion=0.8.2-SNAPSHOT +projectVersion=1.0.0 jetBrainsToken=invalid jetBrainsChannel=stable intellijPluginVersion=1.13.2 diff --git a/images/editor-push.gif b/images/editor-push.gif index 2186e93f5..68d360d3b 100644 Binary files a/images/editor-push.gif and b/images/editor-push.gif differ diff --git a/images/editor-toolbar-pull.png b/images/editor-toolbar-pull.png new file mode 100644 index 000000000..2c15cb151 Binary files /dev/null and b/images/editor-toolbar-pull.png differ diff --git a/images/editor-toolbar-push.png b/images/editor-toolbar-push.png index ae805091c..1151f365a 100644 Binary files a/images/editor-toolbar-push.png and b/images/editor-toolbar-push.png differ diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index 570f92c33..ccf840d41 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -10,6 +10,12 @@ 1.0.0 +

0.8.1