So, hier mal die Anleitung. Natürlich ist das Ganze noch experimentell und es kann schnell mal wieder sein, dass ein Update wieder was kaputt macht oder Amazon womöglich etwas änd...
Continue reading...Step By Step: Run Local Kubernetes Cluster, Change Source Code, and Test
Source: https://dzone.com/articles/easy-step-by-step-local-kubernetes-source-code-cha
Kubernetes is a big project with many contributors. Unfortunately, to contribute the bootstrap for compiling and testing the code with an actual kubernetes server
up is not easy. The documentation is comple...
Universal update guide for Gitlab patch versions
Source: https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/update/patch_versions.md
Select Version to Install
Make sure you view this update guide from the tag (version) of GitLab you would like to install. In most cases this should be the highest numbered production tag (without rc in it)...
Continue reading...One liner to stop / remove all of Docker containers
docker stop $(docker ps -a -q) docker rm $(docker ps -a -q)