diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cbe0563..c226a98c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [1.3.11] + +* Enable Non-Interactive InspektorGadget Commands like Top, Profile and Snapshot. +* Enable ChatGPT review pipeline for the repo. + +Thank you so much to @rzhang628, @peterbom, @qike-ms, @gambtho, @squillace, @mauriciovasquezbernal and @blanquicet. + ## [1.3.10] * Enable deploy/undeploy inspektor gadget. diff --git a/README.md b/README.md index fe1af719..77b4e129 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ * Run Managed Cluster Operations from your AKS cluster * Run Kubernetes API Health Endpoints * Deploy and Undeploy InspektorGadget +* Enable Non-Interactive InspektorGadget Commands like Top, Profile and Snapshot ## Installation @@ -43,8 +44,11 @@ Once you successfully log in with your Azure Account, you can view all AKS clust ![Cloud explorer extension menu](resources/right-click-inspektor-gadget.png) +![Cloud explorer extension menu](resources/right-click-inspektor-gadget-command.png) + ![Cloud explorer extension menu](resources/right-click-subscription.png) + ### Merge into Kubeconfig Right click on your AKS cluster and click on **Merge into Kubeconfig** to add the selected AKS cluster to the kubeconfig file. @@ -166,6 +170,10 @@ Right click on your AKS cluster and click on **Kubernetes API Health Endpoints** Right click on your AKS cluster and click on **Inspektor Gadget** to easily deploy gadget into your cluster. User can easily one-click deploy and undeploy gadget from this feature. +### Profile, Top and Snapshot Inspektor Gadget Commands + +After successfully deploying Inspektor Gadget, right-click on your AKS cluster and select **Inspektor Gadget** and choose **Gadget Commands** to easily use non-interactive Top, Profile or Snapshot commands for your cluster. + ## Telemetry This extension collects telemetry data to help us build a better experience for building applications with Azure Kubernetes Service and VS Code. We only collect the following data: diff --git a/package-lock.json b/package-lock.json index aa62dc5e..c47b3c43 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-aks-tools", - "version": "1.3.10", + "version": "1.3.11", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "vscode-aks-tools", - "version": "1.3.10", + "version": "1.3.11", "license": "MIT", "dependencies": { "@azure/arm-authorization": "^8.4.1", diff --git a/package.json b/package.json index cb5f64d0..50e13843 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-aks-tools", "displayName": "Azure Kubernetes Service", "description": "Display Azure Kubernetes Services within VS Code", - "version": "1.3.10", + "version": "1.3.11", "aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217", "publisher": "ms-kubernetes-tools", "icon": "resources/aks-tools.png", diff --git a/resources/right-click-inspektor-gadget-command.png b/resources/right-click-inspektor-gadget-command.png new file mode 100644 index 00000000..bba13e61 Binary files /dev/null and b/resources/right-click-inspektor-gadget-command.png differ