add argocd

This commit is contained in:
2025-07-28 15:49:10 -05:00
parent fb9370f20e
commit a839fb6db6
8 changed files with 448 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
---
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
metadata:
name: cluster-autoscaler
resources:
- ../../base
patches:
- patch: |
apiVersion: apps/v1
kind: Deployment
metadata:
name: cluster-autoscaler
namespace: kube-system
spec:
template:
spec:
containers:
- name: cluster-autoscaler
command:
- ./cluster-autoscaler
- --v=4
- --stderrthreshold=info
- --cloud-provider=aws
- --skip-nodes-with-local-storage=false
- --expander=least-waste
- --node-group-auto-discovery=asg:tag=k8s.io/cluster-autoscaler/enabled,k8s.io/cluster-autoscaler/eks1-devel
env:
- name: AWS_REGION
value: us-east-1
- patch: |
apiVersion: v1
kind: ServiceAccount
metadata:
annotations:
eks.amazonaws.com/role-arn: arn:aws:iam::273729230602:role/eks1-devel-cluster-autoscaler
name: cluster-autoscaler
namespace: kube-system