One of the most frequent questions in modern DevOps world is how to promote software from Development environment all the way to Production – via Test, UAT, Staging and other lower level environment if applicable. The challenge here is two-fold: Below I will show how we manage the above with Reliza Hub. This will be… Continue reading How To Promote Software to Production with Reliza Hub
Reliza CD Tutorial: Deploying on Kubernetes
This tutorial describes Reliza CD – agent that connects Kubernetes clusters to Reliza Hub and allows to deploy software from the hub. This post continues my previous tutorial on Reliza Hub Ephemerals – but here I describe how to configure Persistent instances rather than ephemerals. Much of the same setup as in the Ephemeral tutorial… Continue reading Reliza CD Tutorial: Deploying on Kubernetes
How To Spin Helm Ephemerals with Reliza Hub: Tutorial
Here I will show how to configure Self-Serviced Ephemeral Instances for Helm projects with Reliza Hub. This is going to be a complete end-to-end tutorial. I will use Rebom project as an example and use GitHub Actions as our CI platform – although any other CI may be used in practice. Note that any Kubernetes… Continue reading How To Spin Helm Ephemerals with Reliza Hub: Tutorial
How To Convert Kubernetes YAML to Helm
And Why Helm is Actually a Light-Weight Approach to Kubernetes deployment Recently I saw several comments on various forums suggesting that Helm is a heavy-weight approach. Instead, people were resorting to using plain YAML applied via Kubectl and trying to use sed for modifications. In some cases they were going towards Kustomize even though Helm… Continue reading How To Convert Kubernetes YAML to Helm
GitOps for Ephemerals is a Mess
I was working with Ephemeral instances for quite some time now. At this point I believe a different solution rather than pure GitOps is needed for them to operate efficiently. I’ll give some explanation below. I What are Ephemerals? Currently in DevOps / SRE, we define 2 types of Deployment instances: Persistent Instances and Ephemerals.… Continue reading GitOps for Ephemerals is a Mess
On Feature Flags
Feature flags seem to be recurrent topic in few recent conversations I had. More so, misconceptions about them seem to be one of the major obstacles on the road to adoption of Trunk Based Development. Foreword – Context GitFlow is dead, long live Trunk Based Development. This is no longer a secret. If you want… Continue reading On Feature Flags
Helm Chart for ECR Login on Kubernetes
Unlike other Docker registries, ECR is a bit of a pain to work with. The usual authentication process with ECR goes as following: 1. Get your IAM account with ECR permissions (pull, or push, or both) – and obtain ID and Key for this account. 2. Using AWS CLI and IAM credentials obtain login and… Continue reading Helm Chart for ECR Login on Kubernetes
In Love With Ukraine
Here is a short summary of my thoughts on what’s happening and some possible actions around it, presented in bullet points. Just for the background – I’m a Jew, born in Russia, moved to Canada almost 15 years ago (left Russia for political reasons). My first education is in Journalism, which included a lot of… Continue reading In Love With Ukraine
DevOps Via Negativa
I have finally finished reading “Antifragile” by Nassim Taleb and while this is a great book in general, a lot of things about Via Negativa resonated with me in regards to the DevOps field specifically. In short, Via Negativa is a way to achieve things by not doing something, rather than by doing. Below are… Continue reading DevOps Via Negativa
Jenkins Builds with Kaniko and Reliza: Tutorial
Here I would like to present complete tutorial how we integrate Jenkins kaniko builds with Reliza Hub. As a base I will use my toy project – Mafia game. Specifically, we would use UI project to do the builds – Mafia Vue. Quick summary of what we are going to do in the course of… Continue reading Jenkins Builds with Kaniko and Reliza: Tutorial