Home
DevJiny
Cancel

Datadog on Kubernetes

Datadog Document Link https://docs.datadoghq.com/containers/kubernetes/installation/?tab=helm&tabs=null Basic values https://github.com/DataDog/helm-charts/blob/main/examples/datadog/agent_...

ArgoCD 설치

Argocd 설치 https://argo-cd.readthedocs.io/en/stable/getting_started/ $ kubectl create namespace argocd $ kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manife...

EKS Fargate Cluster with Ingress ALB

설치 $ brew install awscli $ brew install eksctl $ brew install helm AWS CLI Login $ aws configure AWS Access Key ID [None]: xxx AWS Secret Access Key [None]: xxx Default region name [None]: ap-n...

Kubernetes Cluster의 Master Node에 Pod Deploy 하기

Preface 기본적으로 Kubernetes Master Node에는 Pod가 Deploy 되지 않는다. (보안상의 이유로) 만약, Master Node (Control Plane)에 Pod를 Deploy 하고자 한다면, 아래와 같이 실행 한다. $ kubectl taint nodes --all node-role.kubernetes.io/mast...