This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## Demo script to show how to leverage Azure DevOps CLI Extension to call DevOps REST API directly | |
## without the need for PAT token | |
# configuration | |
YOUR_AZURE_DEV_OPS_ORG='' | |
YOUR_AZURE_DEV_OPS_PROJECT_NAME='' | |
# Reverse Engineered this part by looking into Azure DevOps CLI Extension | |
# https://github.com/Azure/azure-devops-cli-extension/blob/8cf32a41126b2b66f130843d4d16de19290052b9/azure-devops/azext_devops/devops_sdk/client.py#L71 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd /workspaces | |
git clone https://github.com/derailed/k9s.git | |
cd k9s | |
make build && ./execs/k9s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-keygen -t rsa -f .ssh/id_rsa |