Argocd With Kind  [draft]

Introduction In this tutorial, I will show you how to install Argo CD locally on Kali Linux using a Kind environment. Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes, which simplifies managing and deploying applications. Prerequisites Before you begin, ensure you have the following: A system running Kali Linux or any other Linux distribution. Kubernetes in Docker (Kind) installed and configured on your Kali Linux system. A foundational understanding of Linux, Kubernetes, and Argo CD....

October 10, 2024 · Marcin M

Deploying PrestaShop with NGINX and SSL on AWS EKS  [draft]

This is a file that contains cmd i run in terminal Update kubeconfig aws eks update-kubeconfig --region eu-central-1 --name myr-eks Aws get user, to check if the user is the one we expect aws iam get-user Verify Configuration kubectl get nodes Add & update Helm Repo helm repo add jetstack https://charts.jetstack.io && helm repo update Install cert-manager helm install cert-manager jetstack/cert-manager --namespace cert-manager --create-namespace -f oc-cert-manager-values.yaml Expected output for cluster-issuers...

September 26, 2024 · Marcin M

How to Install Docker Desktop on Kali Linux  [draft]

Prerequisites Check the requirements for installing Docker Desktop before you can proceed. 1. Update your system packages sudo apt update 2. Install required packages sudo apt -y install apt-transport-https ca-certificates curl software-properties-common 3. Download Docker GPG Key curl -fsSL https://download.docker.com/linux/debian/gpg | \ sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/docker-archive-keyring.gpg 4. Add Docker Repository echo \ "deb [arch=amd64] https://download.docker.com/linux/debian bullseye stable" | \ sudo tee /etc/apt/sources.list.d/docker.list 5. Update your system packages again sudo apt update 6....

November 6, 2023 · Marcin M

How to Install Mariadb + Phpmyadmin With Docker-Compose  [draft]

How to install mariadb + phpmyadmin with docker-compose Running web applications, such as Django , requires the use of a database management system. While many Django tutorials recommend using PostgreSQL , I have found that using the combination of MariaDB and phpMyAdmin is very user-friendly for managing your database. Although there are many tutorials available, some of them are outdated. Therefore, I have put together a quick guide to help you get started....

March 24, 2023 · Marcin M