From e21c194fc165f406d79e35caeb9cbe04a637a448 Mon Sep 17 00:00:00 2001 From: Inaki Date: Sun, 23 Feb 2020 13:25:07 +0100 Subject: [PATCH] Update kubernetes.md --- docs/kubernetes.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/kubernetes.md b/docs/kubernetes.md index e134cce2..6045c9de 100644 --- a/docs/kubernetes.md +++ b/docs/kubernetes.md @@ -57,6 +57,10 @@ * [blog.alexellis.io: Get a LoadBalancer for your private Kubernetes cluster](https://blog.alexellis.io/ingress-for-your-local-kubernetes-cluster/) * [itnext.io: K8s Vertical Pod Autoscaling ๐ŸŒŸ](https://itnext.io/k8s-vertical-pod-autoscaling-fd9e602cbf81) +* [share a configMap in kubernetes between namespaces](https://stackoverflow.com/questions/55515594/is-there-a-way-to-share-a-configmap-in-kubernetes-between-namespaces) + ``` + kubectl get configmap --namespace= --export -o yaml | sed "s///" | kubectl apply --namespace= -f - + ``` ## Kubernetes Tutorials * [katacoda.com ๐ŸŒŸ๐ŸŒŸ๐ŸŒŸ๐ŸŒŸ](https://www.katacoda.com/) Interactive Learning and Training Platform for Software Engineers @@ -124,6 +128,7 @@ * [murchie85.github.io: Installling minikube](https://murchie85.github.io/Kubernetes.html) * [store.docker.com: Docker Community Edition EDGE with kubernetes. Installing Kubernetes using the Docker Client](https://store.docker.com/editions/community/docker-ce-desktop-windows) Currently only available in **Edge** edition. * [medium.com: Local Kubernetes for Linuxโ€Šโ€”โ€ŠMiniKube vs MicroK8s](https://medium.com/containers-101/local-kubernetes-for-linux-minikube-vs-microk8s-1b2acad068d3) +* [itnext.io: Run Kubernetes On Your Machine](https://itnext.io/run-kubernetes-on-your-machine-7ee463af21a2) Several options to start playing with K8s in no time ## Production Cluster Installers