2 min read
When you have an application installed using helm, you can upgrade it by using helm upgrade:
helm upgrade -f pet2cattle_values.yaml pet2cattle .
If we need to keep track of all the upgrades we are making to this application, we can rely on helm to keep this data
01/01/2021
Read more...3 min read
kubectl get has an option to be able to sort it's output by any numeric or string field using it's JSON path. Let's take a look on how to do so:
31/12/2020
Read more...4 min read
minikube has many built-in applications and services that may be easily deployed by just enabling them. We can get a list using minikube addons list
30/12/2020
Read more...4 min read
Using kubectl api-resources we will get a list of available objects in out kubernetes cluster including:
29/12/2020
Read more...2 min read
It is quite common to have have several remote repositories, let's see how to merge a change to a branch on a remote that collides with one of our local branches.
28/12/2020
Read more...