JBJm Bargallointestsqli.cat·Feb 27, 2024 · 1 min readBasic monitoringDo a basic monitoring of the cluster is a nice way to see cluster behaviour. To do that we need the cluster configuration yaml. We can find the file here: /etc/rancher/k3s k3s.yaml Several options to monitor the cluster: Ui: Lens desktop CLI: k9s00
JBJm Bargallointestsqli.cat·Feb 26, 2024 · 1 min readDocumenting the projectAfter some searching, i think the best way to create docs for the project is to use Mkdocs. The final result is similar to other well-known docs as the Kubernetes documentation. It is possible to follow the complete documentation of the project here:...00
JBJm Bargallointestsqli.cat·Feb 22, 2024 · 2 min readkubectl most common commandsHere are some of the most common kubectl commands : Cluster Status: kubectl cluster-info: Displays cluster info. kubectl get nodes: Lists nodes in the cluster and their status. kubectl get pods --all-namespaces: Lists all pods in all namespaces. ...00
JBJm Bargallointestsqli.cat·Feb 19, 2024 · 3 min readExpose pods: Creating Nodeport serviceNetworking in Kubernetes it´s not a simple matter but it is possible to advance a little beginning for a simple step: expose the pods, and make it accessible from a web browser. Pods with nginx servers created in the last article are in a subnet diff...00
JBJm Bargallointestsqli.cat·Feb 16, 2024 · 4 min readKubernetes NGINX Deployment using CLI and YAMLOverview: This will be a two-part write-up where we will first use the CLI to create a deployment that runs the NGINX image. We will display the details of the deployment, check logs, and then delete the deployment. In the section part, we will be cr...00