ArgoCD+Terraform=EKS
CI/CD - Continues Deployment using ArgoCD, Terraform to AWS EKS cluster

Prerequisites
Deployment Steps
Last updated
CI/CD - Continues Deployment using ArgoCD, Terraform to AWS EKS cluster

Last updated
eksctl create cluster -f eks_cluster_dev.yamleksctl create cluster -f eks_cluster_prod.yamlcd cluster_conf
eksctl create cluster -f eks_cluster_dev.yamlaws eks update-kubeconfig --name devcd terraform
terraform init
terraform plan
terraform applykubectl get secret -n argocd argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -dcd terraform
mkdir keys
cd keys && ssh-keygen
<output: > Generating public/private rsa key pair.
Enter file in which to save the key (/Users/serg/.ssh/id_rsa): argocd
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in argocd
Your public key has been saved in argocd.pub
......cd keys && cat argocd.pub