Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/argocd-apps/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: v2
name: argocd-app
description: A Helm chart for applications using ArgoCD
version: 1.0.1-delta
version: 1.0.3
8 changes: 7 additions & 1 deletion charts/argocd-apps/Values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ main:
maxReplicaCount:
cpuUtilizationPercentage:
memoryUtilizationPercentage:
# Revision history limit for the deployment. This is the number of old ReplicaSets to retain
# Set to 0 to disable revision history. If not set, defaults to 3
revisionHistoryLimit : 5
worker:
name:
enabled:
Expand All @@ -51,4 +54,7 @@ worker:
minReplicaCount:
maxReplicaCount:
cpuUtilizationPercentage:
memoryUtilizationPercentage:
memoryUtilizationPercentage:
# Revision history limit for the deployment. This is the number of old ReplicaSets to retain
# Set to 0 to disable revision history. If not set, defaults to 3
revisionHistoryLimit : 5
1 change: 1 addition & 0 deletions charts/argocd-apps/templates/frontend-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ metadata:
operator.1password.io/item-path: "vaults/EnvironmentVariables/items/{{ $.Values.project }}-{{ $.Values.environment }}"
ad.datadoghq.com/{{ .Values.main.name }}.logs: "[{\"source\": \"{{ .Values.main.type }}\"}]"
spec:
revisionHistoryLimit: {{ .Values.main.revisionHistoryLimit | default 5 }}
replicas: {{ .Values.main.replicaCount }}
selector:
matchLabels:
Expand Down
1 change: 1 addition & 0 deletions charts/argocd-apps/templates/worker-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ metadata:
operator.1password.io/item-path: "vaults/EnvironmentVariables/items/{{ $.Values.project }}-{{ $.Values.environment }}"
ad.datadoghq.com/{{ .Values.worker.name }}.logs: "[{\"source\": \"{{ .Values.worker.type }}\"}]"
spec:
revisionHistoryLimit: {{ .Values.worker.revisionHistoryLimit | default 5 }}
replicas: {{ .Values.worker.replicaCount }}
selector:
matchLabels:
Expand Down