From 21cc78549dc70a8f52b2c65997337b6560bf0be4 Mon Sep 17 00:00:00 2001 From: Inaki Date: Mon, 10 Feb 2020 20:49:18 +0100 Subject: [PATCH] Update kubernetes.md --- docs/kubernetes.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/kubernetes.md b/docs/kubernetes.md index 7a39c6df..e29ca115 100644 --- a/docs/kubernetes.md +++ b/docs/kubernetes.md @@ -98,13 +98,14 @@ * [learnk8s.io: Load balancing and scaling long-lived connections in Kubernetes 🌟🌟🌟🌟🌟](https://learnk8s.io/kubernetes-long-lived-connections) * [itnext.io: Successful & Short Kubernetes Stories For DevOps Architects](https://itnext.io/successful-short-kubernetes-stories-for-devops-architects-677f8bfed803) * [**magalix.com: The Best Kubernetes Tutorials** 🌟🌟🌟](https://www.magalix.com/blog/the-best-kubernetes-tutorials) -* ``` - kind of a handy way to see all thing things you can affect with Kubernetes RBAC: - +* kind of a handy way to see all thing things you can affect with Kubernetes RBAC: + ``` kubectl get --raw /openapi/v2 | jq '.paths | keys[]' This will list all resources and sub resources that you can constrain with RBAC. If you want to see just subresources append | grep {name}/ - ``` + ``` +* [blog.alexellis.io: Get a LoadBalancer for your private Kubernetes cluster](https://blog.alexellis.io/ingress-for-your-local-kubernetes-cluster/) + ## Local Installers * [Minikube](https://github.com/kubernetes/minikube) A tool that makes it easy to run Kubernetes locally inside a Linux VM. It's aimed on users who want to just test it out or use it for development. It cannot spin up a production cluster, it's a one node machine with no high availability.