Openstack Manual install Part 2 – Glance
In this video, we will install Glance an OpenStack component required for storing your images. Glance can utilize Ceph as a backend, and we want this setup, so there are some extra steps required.
In this video series, I try to challenge myself with the Advent of Code trials. Each solution will be published to Github, and I hope you will learn something from my coding mistakes and perhaps send some code my way on how you have done these challenges. I know by reading code, so this is…
This short promotes my video about the DNS TXT records required to deliver your emails to all email providers. If you send an …
We talk about the struggles I had with running inferences in Java using a Keras model in tensorflow. This is the train.py used in this example. import tensorflow as tf #import tensorflowjs as tfjs import os from datetime import datetime from tensorflow.keras.models import Sequential, Model from tensorflow.keras.layers import Conv2D, MaxPooling2D, BatchNormalization, Layer from tensorflow.keras.layers import…
In this video, I look into installing and enabling orchestration using cephadm. Then I will perform an automatic upgrade with cephadm. I talk about my findings and go through all the steps.
We look into how to set up WireGuard on a Linux system. In this case, we use Debian in order to create a tunnel between two nodes using WireGuard. The setup is quite easy because WireGuard has strong opinions about what should be available and that means that the setup doesn’t have that many things…
We look into scaling Kubernetes using a RabbitMQ queue or using horizontal autoscaling. There are guides for autoscaling using CPU, and I found a repository for RabbitMQ scaling. I will do the operations I’ve detailed in the git repository below.