Skip to content

Commit

Permalink
Retiring deploy-to-azure extension bridge commands. (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tatsinnit authored Mar 11, 2022
1 parent 2a0a972 commit ee560e1
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 123 deletions.
10 changes: 0 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
* Add AKS clusters to kubeconfig
* Perform AKS Diagnostics checks on your AKS cluster
* Run AKS Periscope within VS Code
* Configure a Continous Integration / Continous Deployment ( CI/CD ) Pipeline targetting AKS cluster from within VSCode
* Browse to all Continous Integration / Continous Deployment ( CI/CD ) Pipelines targetting AKS cluster
* Install Azure Service Operator on your AKS cluster
* Create GitHub Starter Workflow from your AKS cluster

Expand Down Expand Up @@ -82,14 +80,6 @@ Running the AKS Periscope requires you to have a storage account associated with

For more information on Diagnostics settings, visit [Create diagnostic settings to send platform logs and metics to different destinations](https://docs.microsoft.com/azure/azure-monitor/platform/diagnostic-settings).

### Configure CI/CD Workflow

Right click on your AKS cluster and click on **Configure CI/CD Workflow** to create a Continous Integration / Continous Deployment (CI/CD) pipeline targetting your cluster. This will use [Deploy to Azure](https://marketplace.visualstudio.com/items?itemName=ms-vscode-deploy-azure.azure-deploy) VSCode extension and have a guided experience to generate a YAML file defining the build and deploy process.

### Browse CI/CD Workflows

Right click on your AKS cluster and click on **Browse CI/CD Workflows** to view details of all existing Continous Integration / Continous Deployment (CI/CD) pipelines that are configured against your cluster.

### Install Azure Service Operator

Right click on your AKS cluster and click on **Install Azure Service Operator** to easily deploy the latest version of Azure Service Operator (ASO) on your AKS cluster and provision and connect applications to Azure resources within Kubernetes. When you select this option, you'll be prompted for a service principal for ASO to use when performing Azure resource operations. This service principal must have appropriate permissions (typically Contributor at suitable scope). Fill out the service principal details and click **Submit** to kick off the installation of Azure Service Operator.
Expand Down
26 changes: 0 additions & 26 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,6 @@
"command": "aks.periscope",
"title": "Run AKS Periscope"
},
{
"command": "azure-deploy.configureCicdPipeline",
"title": "Configure CI/CD Workflow"
},
{
"command": "azure-deploy.browseCicdPipeline",
"title": "Browse CI/CD Workflows"
},
{
"command": "aks.installAzureServiceOperator",
"title": "Install Azure Service Operator"
Expand All @@ -80,14 +72,6 @@
{
"command": "aks.selectSubscriptions",
"when": "never"
},
{
"command": "azure-deploy.configureCicdPipeline",
"when": "never"
},
{
"command": "azure-deploy.browseCicdPipeline",
"when": "never"
}
],
"view/item/context": [
Expand All @@ -107,16 +91,6 @@
"when": "view == kubernetes.cloudExplorer && viewItem =~ /aks\\.cluster/i",
"group": "8@2"
},
{
"command": "azure-deploy.browseCicdPipeline",
"when": "view == kubernetes.cloudExplorer && viewItem =~ /aks\\.cluster/i",
"group": "9@2"
},
{
"command": "azure-deploy.configureCicdPipeline",
"when": "view == kubernetes.cloudExplorer && viewItem =~ /aks\\.cluster/i",
"group": "9@1"
},
{
"command": "aks.installAzureServiceOperator",
"when": "view == kubernetes.cloudExplorer && viewItem =~ /aks\\.cluster/i"
Expand Down
26 changes: 0 additions & 26 deletions src/commands/deployAzurePipeline/browsePipeline.ts

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 0 additions & 4 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ import networkAndConnectivityDiagnostics from './commands/networkAndConnectivity
import periscope from './commands/periscope/periscope';
import * as clusters from './commands/utils/clusters';
import { Reporter, reporter } from './commands/utils/reporter';
import { browsePipeline } from './commands/deployAzurePipeline/browsePipeline';
import { configurePipeline } from './commands/deployAzurePipeline/configureCicdPipeline/configurePipeline';
import installAzureServiceOperator from './commands/azureServiceOperators/installAzureServiceOperator';
import { AzureServiceBrowser } from './commands/azureServiceOperators/ui/azureservicebrowser';
import { setAssetContext } from './assets';
Expand Down Expand Up @@ -37,8 +35,6 @@ export async function activate(context: vscode.ExtensionContext) {
registerCommandWithTelemetry('aks.selectSubscriptions', selectSubscriptions);
registerCommandWithTelemetry('aks.networkAndConnectivityDiagnostics', networkAndConnectivityDiagnostics);
registerCommandWithTelemetry('aks.periscope', periscope);
registerCommandWithTelemetry('azure-deploy.configureCicdPipeline', configurePipeline);
registerCommandWithTelemetry('azure-deploy.browseCicdPipeline', browsePipeline);
registerCommandWithTelemetry('aks.installAzureServiceOperator', installAzureServiceOperator );
registerCommandWithTelemetry('aks.configureStarterWorkflow', configureStarterWorkflow );
registerCommandWithTelemetry('aks.aksCRUDDiagnostics', aksCRUDDiagnostics );
Expand Down

0 comments on commit ee560e1

Please sign in to comment.