Posts
Kafka Listeners
Kafka Listeners
· ☕ 7 min read · ✍️ Brett Johnson
Kafka Listeners Kafka uses three settings to configure how client can connect to brokers within a cluster; lister.security.protocol.map, listeners and advertised.listeners. This page demonstrate how to configure Kafka to for different client connectivity scenarios. Before looking at different scenarios, let’s go through how to configure Kafka listeners. Configuring Listeners The listener configuration is a comma separated list that defines what interfaces, ports and associated security protocols Kafka will use to listen for client connections.

Integrating Argo Workflows and Events
Integrating Argo Workflows and Events
· ☕ 9 min read · ✍️ Brett Johnson
This post demonstrates how to use Argo Events and Argo Workflows to achieve event driven workflow execution. Event based architectures are a key part of building solutions where the individual components are decoupled, the line of responsibility for the action which created an event stops at point of generating the event, what happens next is a problem for another system. Core Components This section provides a quick overview of the core components for Argo Events and Argo Workflows.

ArgoCD - An overview
ArgoCD - An overview
· ☕ 5 min read · ✍️ Brett Johnson
What is ArgoCD ArgoCD is a Continuous Delivery (CD) tool for Kubernetes, which applies manifests stored in Git repositories or Helm charts to Kubernetes clusters. Built on the GitOps model, ArgoCD uses the source repositories as the source of truth; this means that manifests and charts pulled from source repositories represent the true intended state. The GitOps model also means that the source control platform tracks changes to the desired state.

Operator SDK Part 2
Operator SDK Part 2
· ☕ 6 min read · ✍️ Brett Johnson
Feature image source This post continues from Operator SDK Part1 and looks at building the operators container image and running the operator. Building the Operator Container An operator container image contains the operator runtime for the type of operator and your business logic. The command make docker-build IMG=$IMG_NAME:TAG creates the operator container image using a Dockerfile in the projects root directory. The initialization process generates the Dockerfile based on the type of operator.

Operator SDK Part 1
Operator SDK Part 1
· ☕ 14 min read · ✍️ Brett Johnson
Feature image source The Operator-SDK is a command-line tool used by operator developers to build, test and package their operators. The SDK assists developers transform application business logic into a package which extends the Kubernetes API. Initializing a new project You need to provide the SDK with some necessary information to initialize the scaffolding for a new project. The initialization command is; operator-SDK init --domain $DOMAIN --plugin $PLUGIN. Parameters --domain sets the domain for API resources that this operator will create on the cluster.

Kubernetes Operator Framework
Kubernetes Operator Framework
· ☕ 3 min read · ✍️ Brett Johnson
Development and management of Kubernetes native applications is a difficult task with a steep learning curve. The operator framework aims to reduce the complexity by pooling shared expertise into a single project and standardize application packaging. Consumers benefit from operators’ automated operations, making it easier to keep their applications up to date and secure. The 3 Pillars Three pillars underpin the operator framework. The section below provides an overview of each pillar, and follow-up posts will cover each one in more detail.

Introduction to Kubernetes Operators
Introduction to Kubernetes Operators
· ☕ 4 min read · ✍️ Brett Johnson
This article is the first in a new series where I’ll attempt to explain Kubernetes Operators and how to build them in a concise and easy to digest manner. What is an operator? An operator is one or more custom resources and a control loop process which runs inside a pod on a Kubernetes cluster. What does an operator do? An operator manages a Kubernetes native application’s lifecycle by extending the Kubernetes API using custom resources (CR’s) specific to the application.

Network Policy Deep Drive P1 - Default policies
Network Policy Deep Drive P1 - Default policies
· ☕ 5 min read · ✍️ Brett Johnson
This is the first part of a series of posts which will look into different types of network policies and create conflicting rules to observe the outcome. Tests in this series of posts have been performed using Minikube with the Cilium CNI, using a different CNI may change the observed results. Demo environment The Kubernetes environment used for this post will start with the following: 2 Namespaces np-deepdive-one np-deepdive-two 2 types of pods Web to test ingress policies BusyBox to perform the tests from A service for the web pod Additional objects will be created through out the examples.

Network Policies
Network Policies
· ☕ 5 min read · ✍️ Brett Johnson
Kubernetes network policies allow platform consumers to restrict layer 3 and 4 network traffic. All ingress and egress traffic is permitted (default-allow) for namespaces without network policies in place. When at least one network policy exists, any traffic that does not match the specified rules is dropped (default-block). It is essential to be mindful of the default allow state when providing a Kubernetes service to users as it could impact platform and service design decisions.

First Week and Red Hat
First Week and Red Hat
· ☕ 3 min read · ✍️ Brett Johnson
I have just completed my first week as a Senior Consultant at Red Hat, and I’d like to what I’ve learnt about working for a company with an ‘open-source business model’. This post intends to share something I found interesting and not to market a company or employer. InterLock-Down My first week at Red Hat aligned with an internal event called ‘InterLock’, or for 2020 ‘InterLock Down’; this event allowed me to learn about the Red Hat ANZ business and people involved.

Kubernetes Configmaps
Kubernetes Configmaps
· ☕ 7 min read · ✍️ Brett Johnson
ConfigMaps enable decoupling of application configuration settings and a pod, improving workload portability. ConfigMaps are a key/value store for non-sensitive information such as; command line argument values, environment-specific strings and URL’s. Do not use ConfigMaps to store sensitive or encrypted data; instead, use secrets for this use case. You can create a ConfigMap by using the command kubectl create configmap [NAME] [DATA], where data is entered as literal values or read from a file.

Schedulers
Schedulers
· ☕ 2 min read · ✍️ Brett Johnson
Pods are not assigned to any node when they are first created; it is the job of the scheduler to assign the pod to a node. A scheduler watches the apiServer for pods that have no value in the spec.nodeName field. The scheduler finds the most suitable node for a pod-based on the podSpec and node statistics. After finding a suitable node, the scheduler sends an event to the apiServer, assigning the pod to the node.

Namespace LimitRange
Namespace LimitRange
· ☕ 8 min read · ✍️ Brett Johnson
A LimitRange object is used by cluster administrators to set default request and limit values for containers within a namespace. And minimum and maximum values for containers and pods within a namespace. If you’re unfamiliar with container requests and limits within Kubernetes; click here. Configuration a containers requests and limits setting is a well documented best practice. Cluster administrators use LimitRange objects to ensure that containers within a namespace align to this best practice.