Skip to content

Commit 8ba52e1

Browse files
committed
Add argo-cd v2.5.2 manifests
1 parent 29e113c commit 8ba52e1

File tree

6 files changed

+11156
-1
lines changed

6 files changed

+11156
-1
lines changed

addons/argo-cd/components/custom-tools/patch.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ spec:
2020
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;
2121
mv kustomize /custom-tools/kustomize_4.4.0;
2222
chmod uog+x /custom-tools/kustomize_4.4.0;
23+
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;
24+
mv kustomize /custom-tools/kustomize_4.5.7;
25+
chmod uog+x /custom-tools/kustomize_4.5.7;
2326
volumeMounts:
2427
- mountPath: /custom-tools
2528
name: custom-tools
@@ -35,6 +38,9 @@ spec:
3538
- mountPath: /usr/local/bin/kustomize_4.4.0
3639
name: custom-tools
3740
subPath: kustomize_4.4.0
41+
- mountPath: /usr/local/bin/kustomize_4.5.7
42+
name: custom-tools
43+
subPath: kustomize_4.5.7
3844
volumes:
3945
- name: custom-tools
4046
emptyDir: {}

addons/argo-cd/download.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -euf -o pipefail
44

55

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

1010
curl -Ls "$DOWNLOAD_URL/$DOWNLOAD_VERSION" -o argo-cd-$DOWNLOAD_VERSION.tar.gz

addons/argo-cd/resources/service-monitors/kustomization.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ resources:
55
- service-monitor.argocd-metrics.yaml
66
- service-monitor.argocd-server-metrics.yaml
77
- service-monitor.argocd-repo-server-metrics.yaml
8+
- service-monitor.argocd-applicationset-controller-metrics.yaml
89

910
namespace: default
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
apiVersion: monitoring.coreos.com/v1
2+
kind: ServiceMonitor
3+
metadata:
4+
name: argocd-applicationset-controller-metrics
5+
spec:
6+
endpoints:
7+
- port: metrics
8+
selector:
9+
matchLabels:
10+
app.kubernetes.io/name: argocd-applicationset-controller

0 commit comments

Comments
 (0)