Skip to content

Commit 34747b1

Browse files
authored
Merge pull request #7 from gitops-bridge-dev/blake-review
do not output addon
2 parents f233aa8 + 38c84e6 commit 34747b1

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

pulumi/bootstrap.sh

+8-8
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ helm repo add argo https://argoproj.github.io/argo-helm || true
99
helm repo update
1010
helm upgrade --install argocd argo/argo-cd --namespace argocd --create-namespace --wait
1111

12-
kubectl create secret generic private-repo-creds -n argocd \
13-
--from-literal=username=REPLACE_USERNAME \
14-
--from-literal=password=$GITHUB_TOKEN \
15-
--from-literal=type=git \
16-
--from-literal=url=https://github.com/csantanapr/gitopscon-2024-na-demo-carlos \
17-
--dry-run=client -o yaml | \
18-
sed "s/namespace: argocd/namespace: argocd\n labels:\n argocd.argoproj.io\/secret-type: repository/" | \
19-
kubectl apply -f -
12+
# kubectl create secret generic private-repo-creds -n argocd \
13+
# --from-literal=username=REPLACE_USERNAME \
14+
# --from-literal=password=$GITHUB_TOKEN \
15+
# --from-literal=type=git \
16+
# --from-literal=url=https://github.com/REPLACE_FORK/gitopscon-2024-na-demo \
17+
# --dry-run=client -o yaml | \
18+
# sed "s/namespace: argocd/namespace: argocd\n labels:\n argocd.argoproj.io\/secret-type: repository/" | \
19+
# kubectl apply -f -
2020

2121
sleep 60
2222
# Deploy Application Set

pulumi/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ const eksCluster = new eks.Cluster(`${stackName}-cluster`, {
121121
// }]
122122
})
123123

124-
const example = new aws.eks.Addon("eks-pod-identity-agent", {
124+
new aws.eks.Addon("eks-pod-identity-agent", {
125125
clusterName: eksCluster.eksCluster.name,
126126
addonName: "eks-pod-identity-agent",
127127
});

0 commit comments

Comments
 (0)