Tag: cluster

  • Kubernetes – LENS GUI

    Kubernetes – LENS GUI

    Still learning Kubernetes and having a difficult time with kubectl? Or do you just want a quick and fancy overview of your cluster(s)? In any case, I can warmly recommend the LENS Kubernetes GUI! Just go to File > Add Cluster and paste in your kubectl config (remember to double check the “server” attribute) and…

  • Kubernetes – Passbolt Kubernetes Deployment

    Kubernetes – Passbolt Kubernetes Deployment

    Passbolt is great. It provides a secure and very useful interface for password/manual secret storage. Both the Firefox addon and iOS App works great, and are easy to setup and use. The available documentation explains installation on most platforms, including Ubuntu and Docker, but no “basic” Kubernetes deployment. With that said, I am aware of…

  • Kubernetes – Port-Forward To Kubernetes Service

    Kubernetes – Port-Forward To Kubernetes Service

    Kubernetes service only available inside the cluster? Do you need to connect and test something? Port-forward from your client to the cluster! Only using kubectl. The syntax is as follows: So let’s say you want to connect to a MySQL Service only available in the cluster network. And the service is called “mysql-service”: The MySQL…

  • How To: Run a Command Quickly on Remote Server using SSH

    When working in a clustered Linux environment containing two or more servers, it is not uncommon to switch back and forth between the hosts. Even if it’s running one command. SSH is a powerful tool, it can do allot more than act as remote shell or tunnel traffic. One of those features is sending a…