$ gcloud auth login$ gcloud container clusters get-credentials kubeernetes --zone us-central1-a --project camel-knative| 406234789 | |
| 885052789 | |
| 887641399 |
| <!-- Copy-paste in your Readme.md file --> | |
| <a href = "https://github.com/Tanu-N-Prabhu/Python/graphs/contributors"> | |
| <img src = "https://contrib.rocks/image?repo = GitHub_username/repository_name"/> | |
| </a> | |
| Made with [contributors-img](https://contrib.rocks). |
| git remote add <other-fork-alias> <other-fork-URL> | |
| git checkout <branch> | |
| git fetch <other-fork-alias> | |
| git cherry-pick <commit-hash> | |
| git push <your-fork-alias> | |
| git remote remove <other-fork-alias> | |
| git remote -v |
| minikube stop; minikube delete && | |
| docker stop $(docker ps -aq) && | |
| rm -rf ~/.kube ~/.minikube && | |
| sudo rm -rf /usr/local/bin/localkube /usr/local/bin/minikube && | |
| launchctl stop '*kubelet*.mount' && | |
| launchctl stop localkube.service && | |
| launchctl disable localkube.service && | |
| sudo rm -rf /etc/kubernetes/ && | |
| docker system prune -af --volumes |
| #!/bin/bash | |
| # | |
| # DESCRIPTION: | |
| # | |
| # Set the bash prompt according to: | |
| # * the active virtualenv | |
| # * the branch of the current git/mercurial repository | |
| # * the return value of the previous command | |
| # | |
| # USAGE: |
| # display VPC ID, CIDR Block and Name | |
| aws ec2 --output text --query 'Vpcs[*].{VpcId:VpcId,Name:Tags[?Key==`Name`].Value|[0],CidrBlock:CidrBlock}' describe-vpcs |
| node { | |
| echo 'Results included as an inline comment exactly how they are returned as of Jenkins 2.121, with $BUILD_NUMBER = 1' | |
| echo 'No quotes, pipeline command in single quotes' | |
| sh 'echo $BUILD_NUMBER' // 1 | |
| echo 'Double quotes are silently dropped' | |
| sh 'echo "$BUILD_NUMBER"' // 1 | |
| echo 'Even escaped with a single backslash they are dropped' | |
| sh 'echo \"$BUILD_NUMBER\"' // 1 | |
| echo 'Using two backslashes, the quotes are preserved' | |
| sh 'echo \\"$BUILD_NUMBER\\"' // "1" |
| ### Generic Dockerfile demonstrating good practices | |
| ### Imports | |
| # Bad-ish, we do not need Ubuntu for this, nor do we want latest if we are using in a build system, predictable is better | |
| FROM ubuntu:latest | |
| # Better, using a small image since our app has no dependency on Ubuntu | |
| FROM alpine:3.3 |
| #!/bin/bash | |
| # Source arguments from Ansible | |
| # These are passed into the module as $1 with a key=value format | |
| # Sourcing this file sets the variables defined in the Ansible module | |
| # Note that variables that are unused in the module are silently ignored | |
| source $1 | |
| # Helper function to fail the module with the specified error | |
| # This can accept $@ in printf for the full error |