Featured image of post IOT: Traefik Reverse Proxy for HTTPS Connection to Docker Containers

IOT: Traefik Reverse Proxy for HTTPS Connection to Docker Containers

In your IOT home network, several applications are provided as Docker containers. Typically, containers expose a port on its host. To access the applications, you type in the IP address of the host and its exposed ports. This is ok if you have just one or two applications, but soon it will be hard to remember all the ports, and you are still using unencrypted HTTP which is not ideal when you use a WiFi connection to access the applications.

Featured image of post IOT Stack on Raspberry Pi: Full Upgrade Procedure

IOT Stack on Raspberry Pi: Full Upgrade Procedure

My Raspberry PI based IOT stack, introduced in an [earlier article](https://admantium.com/blog/iot01_installing_iot_stack/), is productive and online for more than one year. It’s time to make a full upgrade of the operating system, the Docker containers, and all associated configurations.

Featured image of post Kubernetes with Red Hat Open Shift

Kubernetes with Red Hat Open Shift

OpenShift is platform for running containerized application workloads. It’s been in development for over 10 years, and the recent version supports Kubernetes as the default orchestration mode.

Featured image of post Kubernetes with Amazon Elastic Kubernetes Service

Kubernetes with Amazon Elastic Kubernetes Service

There are several options to roll your own Kubernetes cluster. In addition to provisioning on managed infrastructure, you can also create a managed cluster that is integrated with a particular cloud environment, enabling you to use other services and concepts from the cloud environment.

Featured image of post Kubernetes with Kubeadm: Fully Automated Installation with Terraform

Kubernetes with Kubeadm: Fully Automated Installation with Terraform

Kubeadm is a Kubernetes distribution that provides all customization options that you can think of: container runtime, container network interface, cluster storage and ingress. You can configure all these aspects of your cluster but have to understand the individual options and their setup as well. For a complete overview about this remarkable distribution, see my [previous article](https://admantium.com/blog/kube08_kubeadm/).

Featured image of post Kubernetes Installation Tutorial: Kubespray

Kubernetes Installation Tutorial: Kubespray

The Kubespray distribution brings the power of Ansible for configuration, setup, and maintenance of a Kubernetes cluster. Starting from an inventory file, you define which nodes are part of the cluster and which role they should play. Then, additional configuration files fine-tune the settings of the various Kubernetes components. By applying the playbook - Ansible jargon for the installation/setup scripts that consume your configuration - the desired state is manifested on the target server. Using Kubespray means to manifest your cluster as true Infrastructure as code: All subsequent runs lead to the very same desired state.

Featured image of post Kubernetes with Kubeadm: Cluster Installation from Scratch

Kubernetes with Kubeadm: Cluster Installation from Scratch

Kubeadm is a Kubernetes distribution that provides all customization options that you can think of: container runtime, container network interface, cluster storage and ingress. You can configure all these aspects of your cluster, but have to understand the individual options and their setup as well. For a complete overview about this remarkable distribution, see my [previous article](https://admantium.com/blog/kube08_kubeadm/).

Featured image of post Kubernetes Cluster Installation: K3S

Kubernetes Cluster Installation: K3S

There are several Kubernetes distributions. A remarkable simple on is K3S, a lightweight distribution with a small CPU/memory footprint that can run on anything from cloud vm, bare metal to IOT edge devices, including a raspberry Pi. This is achieved because K3S comes bundled as a single binary with all K3S components and using an embedded SQL lite database. Read more about K3S in my [previous article](https://admantium.com/blog/kube06_k3s_distribution/).