Post Summary: OpenShift
Author: Thomas Jungbauer
Published: 2023-03-20
( Lastmod: 2023-03-24 )
GitOps for application deployment and cluster configuration is a must-have I am trying to convince every customer to follow from the very beginning when starting the Kubernetes journey. For me, as more on the infrastructure side of things, I am more focused on the configuration of an environment.
Meaning, configuring a cluster, installing an operator etc.
In this article, I would like to share how I deal with cluster configuration when certain Kubernetes objects are dependent on each other and how to use Kubernetes but also Argo CD features to resolve these dependencies.
Read More Author: Thomas Jungbauer
Published: 2023-02-16
( Lastmod: 2023-02-17 )
Finally, after a long time on my backlog, I had some time to look into the Cert-Manager Operator and use this Operator to automatically issue new SSL certificates.
This article shall show step-by-step how to create a certificate request and use this certificate for a Route and access a service via your Browser.
I will focus on the technical part, using a given domain on AWS Route53.
Read More Author: Thomas Jungbauer
Published: 2022-11-04
( Lastmod: 2022-11-04 )
„If it is not in GitOps, it does not exist“ - However, managing objects partially only by Gitops was always an issue, since ArgoCD would like to manage the whole object. For example, when you tried to work with node labels and would like to manage them via Gitops, you would need to put the whole node object into ArgoCD. This is impractical since the node object is very complex and typically managed by the cluster.
There were 3rd party solutions (like the patch operator), that helped with this issue.
However, with the Kubernetes feature Server-Side Apply this problem is solved. Read further to see a working example of this feature.
Read More Author: Thomas Jungbauer
Published: 2022-08-16
( Lastmod: 2022-09-02 )
Sensitive information in OpenShift or Kubernetes is stored as a so-called Secret. The management of these Secrets is one of the most important questions,
when it comes to OpenShift. Secrets in Kubernetes are encoded in base64. This is not an encryption format.
Even if etcd is encrypted at rest, everybody can decode a given base64 string which is stored in the Secret.
For example: The string Thomas
encoded as base64 is VGhvbWFzCg==
. This is simply a masked plain text and it is not secure to share these values, especially not on Git.
To make your CI/CD pipelines or Gitops process secure, you need to think of a secure way to manage your Secrets. Thus, your Secret objects must be encrypted somehow. HashiCorp Vault is one option to achieve this requirement.
Read More Author: Toni Schmidbauer
Published: 2022-04-22
( Lastmod: 2022-05-02 )
This is my personal summary of experimenting with Red Hat's Multi Cloud Gateway (MCG) based on the upstream Noobaa project. MCG is part of Red Hat's OpenShift Data Foundation (ODF). ODF bundles the upstream projects Ceph and Noobaa.
Overview Noobaa, or the Multicloud Gateway (MCG), is a S3 based data federation tool. It allows you to use S3 backends from various sources and
sync replicate or simply use existing S3 buckets.
Read More Author: Thomas Jungbauer
Published: 2021-09-25
( Lastmod: 2021-09-25 )
Working with a GitOps approach is a good way to keep all configurations and settings versioned and in sync on Git. Sensitive data, such as passwords to a database connection, will quickly come around.
Obviously, it is not a idea to store clear text strings in a, maybe even public, Git repository. Therefore, all sensitive information should be stored in a secret object. The problem with secrets in Kubernetes is that they are actually not encrypted. Instead, strings are base64 encoded which can be decoded as well. Thats not good … it should not be possible to decrypt secured data. Sealed Secret will help here…
Read More Author: Thomas Jungbauer
Published: 2021-02-27
( Lastmod: 2021-08-14 )
In this blog post we would like to explore OpenShift / Kubernetes
block device handling. We try to answer the following questions:
Read More Author: Thomas Jungbauer
Published: 2021-01-27
( Lastmod: 2021-08-14 )
This quick post shall explain, without any fancy details, how to write an Operator based on Ansible. It is assumed that you know what purpose an Operator has.
As a short summary: Operators are a way to create custom controllers in OpenShift or Kubernetes. It watches for custom resource objects and creates the application based on the parameters in such custom resource object.
Often written in Go, the SDK supports Ansible, Helm and (new) Java as well.
Read More Author: Thomas Jungbauer
Published: 2020-12-10
( Lastmod: 2021-08-14 )
OpenShift comes per default with a static Grafana dashboard, which will present cluster metrics to cluster administrators. It is not possible to customize this Grafana instance.
However, many customers would like to create their own dashboards, their own monitoring and their own alerting while leveraging the possibilities of OpenShift at the same time and without installing a completely separated monitoring stack.
Read More Author: Thomas Jungbauer
Published: 2020-08-06
( Lastmod: 2021-08-14 )
Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes. GitOps itself uses Git pull request to manager infrastructure and application configuration.
Read More Author: Thomas Jungbauer
Published: 2020-04-16
( Lastmod: 2021-08-14 )
OpenShift Pipelines is a cloud-native, continuous integration and delivery (CI/CD) solution for building pipelines using Tekton. Tekton is a flexible, Kubernetes-native, open-source CI/CD framework that enables automating deployments across multiple platforms (Kubernetes, serverless, VMs, etc) by abstracting away the underlying details. [1]
Read More Author: Thomas Jungbauer
Published: 2020-04-01
( Lastmod: 2021-08-14 )
This is a list of useful oc and/or kubectl commands so they won’t be forgotton. No this is not a joke…
Read More