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/)