The core deployments for yolokube that affect the whole cluster.
Find a file
2023-02-14 01:23:36 +01:00
argo fix https backend for svc/argocd-server 2023-02-12 21:22:56 +01:00
certbot rework core-deployments to use helm 🪖 2023-02-11 01:27:27 +01:00
examples fix https backend for svc/argocd-server 2023-02-12 21:22:56 +01:00
ingress rework core-deployments to use helm 🪖 2023-02-11 01:27:27 +01:00
storage rework core-deployments to use helm 🪖 2023-02-11 01:27:27 +01:00
tests add argocd 2023-02-12 20:36:55 +01:00
core-deployments.yaml argocd! 🦑 2023-02-14 01:23:36 +01:00
README.md add argocd 2023-02-12 20:36:55 +01:00
tests.yaml argocd! 🦑 2023-02-14 01:23:36 +01:00

core deployments

CNI

Add repo if not present already:

helm repo add cilium https://helm.cilium.io/

Install chart:

helm install cilium cilium/cilium --namespace=kube-system --set ipv4.enabled=true --set ipv6.enabled=true

ingress

Add repo if not present already:

helm repo add nginx-stable https://helm.nginx.com/stable

Install chart:

helm install nginx-ingress nginx-stable/nginx-ingress --namespace nginx --create-namespace -f ingress/values.yaml

certbot

Add CRDs:

kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.11.0/cert-manager.crds.yaml

Add repo if not present already:

helm repo add jetstack https://charts.jetstack.io

Install chart:

helm install certbot --namespace cert-manager --create-namespace --version v1.11.0 jetstack/cert-manager

Install ClusterIssuer:

kubectl apply -f certbot/clusterissuer.yaml

storage

Add repo if not present already:

helm repo add rook-release https://charts.rook.io/release

Install chart:

helm install --create-namespace --namespace rook-ceph rook-ceph rook-release/rook-ceph

Install chart:

helm install --create-namespace --namespace rook-ceph rook-ceph-cluster rook-release/rook-ceph-cluster -f storage/values.yaml

Install Ingress for Dashboard and the StorageClasses:

kubectl apply -f storage/dashboard.yaml -f storage/storageclass.yaml

argo cd

Add Namespace:

kubectl create namespace argocd

Add Argo CD:

kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml

tests

Install Test Deployments:

kubectl apply -f tests/test-ingress.yaml -f tests/test-storage.yaml