Skip to content

Commit

Permalink
Add argo-cd v2.5.2 manifests
Browse files Browse the repository at this point in the history
  • Loading branch information
posquit0 committed Nov 21, 2022
1 parent 29e113c commit 8ba52e1
Show file tree
Hide file tree
Showing 6 changed files with 11,156 additions and 1 deletion.
6 changes: 6 additions & 0 deletions addons/argo-cd/components/custom-tools/patch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ spec:
wget https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize/v4.4.0/kustomize_v4.4.0_linux_amd64.tar.gz -q -O - |tar -xz;
mv kustomize /custom-tools/kustomize_4.4.0;
chmod uog+x /custom-tools/kustomize_4.4.0;
wget https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize/v4.5.7/kustomize_v4.5.7_linux_amd64.tar.gz -q -O - |tar -xz;
mv kustomize /custom-tools/kustomize_4.5.7;
chmod uog+x /custom-tools/kustomize_4.5.7;
volumeMounts:
- mountPath: /custom-tools
name: custom-tools
Expand All @@ -35,6 +38,9 @@ spec:
- mountPath: /usr/local/bin/kustomize_4.4.0
name: custom-tools
subPath: kustomize_4.4.0
- mountPath: /usr/local/bin/kustomize_4.5.7
name: custom-tools
subPath: kustomize_4.5.7
volumes:
- name: custom-tools
emptyDir: {}
2 changes: 1 addition & 1 deletion addons/argo-cd/download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -euf -o pipefail


DOWNLOAD_URL="https://api.github.com/repos/argoproj/argo-cd/tarball"
DOWNLOAD_VERSION="v2.4.2"
DOWNLOAD_VERSION="v2.5.2"
DOWNLOAD_DIRECTORY="$DOWNLOAD_VERSION"

curl -Ls "$DOWNLOAD_URL/$DOWNLOAD_VERSION" -o argo-cd-$DOWNLOAD_VERSION.tar.gz
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ resources:
- service-monitor.argocd-metrics.yaml
- service-monitor.argocd-server-metrics.yaml
- service-monitor.argocd-repo-server-metrics.yaml
- service-monitor.argocd-applicationset-controller-metrics.yaml

namespace: default
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
apiVersion: monitoring.coreos.com/v1
kind: ServiceMonitor
metadata:
name: argocd-applicationset-controller-metrics
spec:
endpoints:
- port: metrics
selector:
matchLabels:
app.kubernetes.io/name: argocd-applicationset-controller
Loading

0 comments on commit 8ba52e1

Please sign in to comment.