Skip to content

Instantly share code, notes, and snippets.

@vfarcic
Created December 9, 2020 22:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vfarcic/4b43a907ca78e59a019e40012ed8edd7 to your computer and use it in GitHub Desktop.
Save vfarcic/4b43a907ca78e59a019e40012ed8edd7 to your computer and use it in GitHub Desktop.
#######################################################################################
# All That Developers Need Is a Browser (or How To Be More Productive By Having Less) #
#######################################################################################
#################################################
# Creating a Production Development Environment #
#################################################
kubectl config view --flatten | base64
kubectl --namespace production \
get namespaces
kubectl --namespace production \
get pods
#############################################################
# Combining Development With Continuous Delivery And GitOps #
#############################################################
git add .
git commit -m "New title"
git push
kubectl --namespace production \
get pods
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment