- Helm 3
- kubectl v1.19 or later
This script automates the process of creating a release branch from the develop
branch for multiple Bitbucket repositories. It ensures that a new branch is only created if it does not already exist.
- Reads a list of Bitbucket repository URLs from a file.
- Clones each repository (if not already cloned).
This file contains hidden or 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
Import-Module posh-git | |
Import-Module oh-my-posh | |
Import-Module PSReadLine | |
Set-PoshPrompt -Theme gmay_ashu | |
New-Alias kc kubectl | |
# Shows navigable menu of all options when hitting Tab | |
Set-PSReadLineKeyHandler -Key Tab -Function MenuComplete | |
# Autocompleteion for Arrow keys |
- Create Folder and Virtual environment
mkdir myproject
cd myproject
python -m venv venv
- Activate Virtual Environment
- Stop all containers:
docker stop $(docker ps -a -q)
- Remove all containers:
docker rm $(docker ps -a -q)
- Remove
<none>
images:
This file contains hidden or 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
for i in {1..10}; do echo && curl --ssl-no-revoke "https://www.google.com" && sleep 1; done | |
for i in $(seq 1 100); do curl -s -o /dev/null "http://localhost:8080"; done |