From 15225b3bfe162ff8fb0743eef954d98e91ace5f2 Mon Sep 17 00:00:00 2001 From: Inaki Fernandez Date: Mon, 4 May 2020 20:52:37 +0200 Subject: [PATCH] code block fixed 2 --- docs/kubernetes.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/kubernetes.md b/docs/kubernetes.md index a997d1e8..d0ae26f9 100644 --- a/docs/kubernetes.md +++ b/docs/kubernetes.md @@ -68,17 +68,17 @@ * [itnext.io: Successful & Short Kubernetes Stories For DevOps Architects](https://itnext.io/successful-short-kubernetes-stories-for-devops-architects-677f8bfed803) * kind of a handy way to see all thing things you can affect with Kubernetes RBAC. This will list all resources and sub resources that you can constrain with RBAC. If you want to see just subresources append "| grep {name}/": - ```bash - kubectl get --raw /openapi/v2 | jq '.paths | keys[]' - ``` +```bash +kubectl get --raw /openapi/v2 | jq '.paths | keys[]' +``` * [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) - ```bash - kubectl get configmap --namespace= --export -o yaml | sed "s///" | kubectl apply --namespace= -f - - ``` +```bash +kubectl get configmap --namespace= --export -oyaml | sed "s///" | kubectl apply --namespace=-f - +``` * [medium.com: kubernetes Pod Priority and Preemption](https://medium.com/@mohaamer5/kubernetes-pod-priority-and-preemption-943c58aee07d) * [returngis.net: Pruebas de vida de nuestros contenedores en Kubernetes](https://www.returngis.net/2020/02/pruebas-de-vida-de-nuestros-contenedores-en-kubernetes/)