organize kube chapters

This commit is contained in:
2023-01-28 19:37:30 +01:00
parent 70aaff09a8
commit 52bb84cfa2
5 changed files with 25 additions and 25 deletions

View File

@ -1,5 +1,5 @@
---
title: "Setup a HA Kubernetes cluster Part II - Cluster initialization, GitOps way"
title: "Setup a HA Kubernetes cluster Part II - Cluster initialization with Terraform"
date: 2022-12-09
description: "Follow this opinionated guide as starter-kit for your own Kubernetes platform..."
tags: ["kubernetes", "terraform", "hetzner", "k3s", "gitops"]
@ -16,4 +16,4 @@ Build your self-hosted Kubernetes cluster and be free from any SaaS solutions by
## 1st check ✅
We now have a working cluster, let's install [a load balanced ingress controller for external access through SSL]({{< ref "/posts/12-build-your-kubernetes-cluster-part-3" >}}).
We now have a working cluster, let's install [a load balanced ingress controller for external access through SSL]({{< ref "/posts/12-build-your-kubernetes-cluster-part-3" >}}) and proper HA storage.

View File

@ -1,8 +1,8 @@
---
title: "Setup a HA Kubernetes cluster Part III - Ingress & storages with NFS & S3"
title: "Setup a HA Kubernetes cluster Part III - Ingress & HA storage"
date: 2022-12-10
description: "Follow this opinionated guide as starter-kit for your own Kubernetes platform..."
tags: ["kubernetes", "traefik", "cert-manager", "nfs", "minio"]
tags: ["kubernetes", "traefik", "cert-manager", "longhorn", "minio", "s3"]
draft: true
---
@ -17,4 +17,4 @@ Build your self-hosted Kubernetes cluster and be free from any SaaS solutions by
## 2nd check ✅
Our cluster is now perfectly securely accessible from outside with minimal setup needed for any new apps. Persistence is insured by NFS provisioner and S3 app. The next important part is now to have a [working database for real world apps]({{< ref "/posts/13-build-your-kubernetes-cluster-part-4" >}}).
Our cluster is now perfectly securely accessible from outside with minimal setup needed for any new apps. Persistence is insured by Longhorn with replicated storage and Minio for S3 needs. The next important part is now to have a [working database for real world apps]({{< ref "/posts/13-build-your-kubernetes-cluster-part-4" >}}).

View File

@ -1,5 +1,5 @@
---
title: "Setup a HA Kubernetes cluster Part IV - Databases & backups"
title: "Setup a HA Kubernetes cluster Part IV - Databases with HA & backups"
date: 2022-12-11
description: "Follow this opinionated guide as starter-kit for your own Kubernetes platform..."
tags: ["kubernetes", "mysql", "postgresql", "minio", "restic"]
@ -18,4 +18,4 @@ Build your self-hosted Kubernetes cluster and be free from any SaaS solutions by
## 3rd check ✅
Databases are ready to be consumed by any apps. In real world situation, we should have a full monitoring suite, see [next part]({{< ref "/posts/14-build-your-kubernetes-cluster-part-5" >}}) for complete monitoring and logging stack.
Databases are ready to be consumed by any apps ! Go [next part]({{< ref "/posts/14-build-your-kubernetes-cluster-part-5" >}}) to finally use our cluster with some real apps, including some well known low-code tools !

View File

@ -1,8 +1,8 @@
---
title: "Setup a HA Kubernetes cluster Part V - Monitoring Stack"
date: 2022-12-12
title: "Setup a HA Kubernetes cluster Part V - Installing some apps & NoCode tools"
date: 2022-12-13
description: "Follow this opinionated guide as starter-kit for your own Kubernetes platform..."
tags: ["kubernetes", "prometheus", "loki", "grafana"]
tags: ["kubernetes", "nocode", "nocodb", "n8n", "redmine", "analytics", "umami"]
draft: true
---
@ -10,12 +10,12 @@ draft: true
Build your self-hosted Kubernetes cluster and be free from any SaaS solutions by following this opinionated guide 🎉
{{< /lead >}}
1. Add monitor-01
2. Prometheus Stack
3. Loki / Promtail
4. Grafana
5. Services Monitor & Dashboards
1. Build and deploy simple blog
2. Analytics with Umami
3. Redmine
4. NocoDB
5. n8n
## 4th check ✅
## 5th check ✅
We now have a full monitoring suite ! Go [next part]({{< ref "/posts/15-build-your-kubernetes-cluster-part-6" >}}) to finally use our cluster with some real apps, including some well known low-code tools !
We now have testing proper app deployment in a GitOps way. In real world situation, we should have a full monitoring suite, see [next part]({{< ref "/posts/15-build-your-kubernetes-cluster-part-6" >}}) for complete monitoring and logging stack.

View File

@ -1,8 +1,8 @@
---
title: "Setup a HA Kubernetes cluster Part V - Monitoring Stack"
date: 2022-12-13
date: 2022-12-12
description: "Follow this opinionated guide as starter-kit for your own Kubernetes platform..."
tags: ["kubernetes", "nocode", "nocodb", "n8n", "redmine", "analytics", "umami"]
tags: ["kubernetes", "prometheus", "loki", "grafana"]
draft: true
---
@ -10,12 +10,12 @@ draft: true
Build your self-hosted Kubernetes cluster and be free from any SaaS solutions by following this opinionated guide 🎉
{{< /lead >}}
1. Build and deploy simple blog
2. Analytics with Umami
3. Redmine
4. NocoDB
5. n8n
1. Add monitor-01
2. Prometheus Stack
3. Loki / Promtail
4. Grafana
5. Services Monitor & Dashboards
## 5th check ✅
## 4th check ✅
We now have a full monitoring suite ! Go [next part]({{< ref "/posts/16-build-your-kubernetes-cluster-part-7" >}}) if you want a complete CI suite for apps building.