From 38c84e6212502ea03346e7a4074fb623a64b1a5e Mon Sep 17 00:00:00 2001 From: Carlos Santana Date: Wed, 3 Apr 2024 22:30:02 -0400 Subject: [PATCH] do not output addon Signed-off-by: Carlos Santana --- pulumi/bootstrap.sh | 16 ++++++++-------- pulumi/src/index.ts | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pulumi/bootstrap.sh b/pulumi/bootstrap.sh index ba6a16f..cadc520 100755 --- a/pulumi/bootstrap.sh +++ b/pulumi/bootstrap.sh @@ -9,14 +9,14 @@ helm repo add argo https://argoproj.github.io/argo-helm || true helm repo update helm upgrade --install argocd argo/argo-cd --namespace argocd --create-namespace --wait -kubectl create secret generic private-repo-creds -n argocd \ - --from-literal=username=REPLACE_USERNAME \ - --from-literal=password=$GITHUB_TOKEN \ - --from-literal=type=git \ - --from-literal=url=https://github.com/csantanapr/gitopscon-2024-na-demo-carlos \ - --dry-run=client -o yaml | \ - sed "s/namespace: argocd/namespace: argocd\n labels:\n argocd.argoproj.io\/secret-type: repository/" | \ - kubectl apply -f - +# kubectl create secret generic private-repo-creds -n argocd \ +# --from-literal=username=REPLACE_USERNAME \ +# --from-literal=password=$GITHUB_TOKEN \ +# --from-literal=type=git \ +# --from-literal=url=https://github.com/REPLACE_FORK/gitopscon-2024-na-demo \ +# --dry-run=client -o yaml | \ +# sed "s/namespace: argocd/namespace: argocd\n labels:\n argocd.argoproj.io\/secret-type: repository/" | \ +# kubectl apply -f - sleep 60 # Deploy Application Set diff --git a/pulumi/src/index.ts b/pulumi/src/index.ts index f7aad2e..1f63c74 100644 --- a/pulumi/src/index.ts +++ b/pulumi/src/index.ts @@ -121,7 +121,7 @@ const eksCluster = new eks.Cluster(`${stackName}-cluster`, { // }] }) -const example = new aws.eks.Addon("eks-pod-identity-agent", { +new aws.eks.Addon("eks-pod-identity-agent", { clusterName: eksCluster.eksCluster.name, addonName: "eks-pod-identity-agent", });