Category: Tutorials

  • Docker – Simple Registry Web UI With Docker-Registry-UI From Joxit

    Docker – Simple Registry Web UI With Docker-Registry-UI From Joxit

    Hosting your own Docker registry is great, it’s just that… It’s pretty anonymous. You don’t really get to see how many images you have, or their tags, or image digests etc. Unless you want to send manual GET requests via CURL, you can use joxit/docker-registry-ui. Add the following to “ui service” to your existing registry…

  • Kubernetes – Useful Network Policy Generator

    Kubernetes – Useful Network Policy Generator

    Kubernetes policy’s are hard, wouldn’t it be awesome if there were some graphical tool to visualize a new policy? Wait, there is! The editor is available at: https://editor.cilium.io/ Firewall, ish 👾

  • 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…

  • CURL Print Only Header

    CURL Print Only Header

    Sometimes you need to debug, or test, some web-server and you only need to read the response header from your request. Curling and scrolling, or curling and less:ing… nah. All you need to remember is -sIX GET: Example output: Watch your head(er) 👾