You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps.yaml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ appsInfo:
12
12
integration: Alertmanager can be activated to send alerts to configured receivers. It is configured by App Platform to use the global values found under settings/alerts. A team can override global settings to send alerts to their own endpoints.
Copy file name to clipboardExpand all lines: charts/argocd/README.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1100,6 +1100,7 @@ NAME: my-release
1100
1100
| repoServer.imagePullSecrets | list | `[]` (defaults to global.imagePullSecrets) | Secrets with credentials to pull images from a private registry |
1101
1101
| repoServer.initContainers | list | `[]` | Init containers to add to the repo server pods |
1102
1102
| repoServer.lifecycle | object | `{}` | Specify postStart and preStop lifecycle hooks for your argo-repo-server container |
1103
+
| repoServer.livenessProbe.enabled | bool | `true` | Enable Kubernetes liveness probe for Repo Server |
1103
1104
| repoServer.livenessProbe.failureThreshold | int | `3` | Minimum consecutive failures for the [probe] to be considered failed after having succeeded |
1104
1105
| repoServer.livenessProbe.initialDelaySeconds | int | `10` | Number of seconds after the container has started before [probe] is initiated |
1105
1106
| repoServer.livenessProbe.periodSeconds | int | `10` | How often (in seconds) to perform the [probe] |
@@ -1136,6 +1137,7 @@ NAME: my-release
1136
1137
| repoServer.podLabels | object | `{}` | Labels to be added to repo server pods |
1137
1138
| repoServer.priorityClassName | string | `""` (defaults to global.priorityClassName) | Priority class for the repo server pods |
1138
1139
| repoServer.rbac | list | `[]` | Repo server rbac rules |
1140
+
| repoServer.readinessProbe.enabled | bool | `true` | Enable Kubernetes readiness probe for Repo Server |
1139
1141
| repoServer.readinessProbe.failureThreshold | int | `3` | Minimum consecutive failures for the [probe] to be considered failed after having succeeded |
1140
1142
| repoServer.readinessProbe.initialDelaySeconds | int | `10` | Number of seconds after the container has started before [probe] is initiated |
1141
1143
| repoServer.readinessProbe.periodSeconds | int | `10` | How often (in seconds) to perform the [probe] |
@@ -1217,7 +1219,7 @@ NAME: my-release
1217
1219
| server.extensions.extensionList | list | `[]` (See [values.yaml]) | Extensions for Argo CD |
1218
1220
| server.extensions.image.imagePullPolicy | string | `""` (defaults to global.image.imagePullPolicy) | Image pull policy for extensions |
1219
1221
| server.extensions.image.repository | string | `"quay.io/argoprojlabs/argocd-extension-installer"` | Repository to use for extension installer image |
1220
-
| server.extensions.image.tag | string | `"v0.0.8"` | Tag to use for extension installer image |
1222
+
| server.extensions.image.tag | string | `"v0.0.9"` | Tag to use for extension installer image |
1221
1223
| server.extensions.resources | object | `{}` | Resource limits and requests for the argocd-extensions container |
1222
1224
| server.extraArgs | list | `[]` | Additional command line arguments to pass to Argo CD server |
1223
1225
| server.extraContainers | list | `[]` | Additional containers to be added to the server pod |
@@ -1272,6 +1274,7 @@ NAME: my-release
1272
1274
| server.ingressGrpc.tls | bool | `false` | Enable TLS configuration for the hostname defined at `server.ingressGrpc.hostname` |
1273
1275
| server.initContainers | list | `[]` | Init containers to add to the server pod |
1274
1276
| server.lifecycle | object | `{}` | Specify postStart and preStop lifecycle hooks for your argo-cd-server container |
Copy file name to clipboardExpand all lines: charts/argocd/templates/argocd-application-controller/servicemonitor.yaml
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
-
{{- if and (.Capabilities.APIVersions.Has "monitoring.coreos.com/v1") .Values.controller.metrics.enabled .Values.controller.metrics.serviceMonitor.enabled }}
2
-
apiVersion: monitoring.coreos.com/v1
1
+
{{- $apiVersion := include "argo-cd.apiVersions.monitoring" . }}
2
+
{{- if and (.Capabilities.APIVersions.Has $apiVersion) .Values.controller.metrics.enabled .Values.controller.metrics.serviceMonitor.enabled }}
Copy file name to clipboardExpand all lines: charts/argocd/templates/argocd-applicationset/servicemonitor.yaml
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
-
{{- if and (.Capabilities.APIVersions.Has "monitoring.coreos.com/v1") .Values.applicationSet.metrics.enabled .Values.applicationSet.metrics.serviceMonitor.enabled }}
2
-
apiVersion: monitoring.coreos.com/v1
1
+
{{- $apiVersion := include "argo-cd.apiVersions.monitoring" . }}
2
+
{{- if and (.Capabilities.APIVersions.Has $apiVersion) .Values.applicationSet.metrics.enabled .Values.applicationSet.metrics.serviceMonitor.enabled }}
Copy file name to clipboardExpand all lines: charts/argocd/templates/argocd-notifications/servicemonitor.yaml
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
-
{{- if and (.Capabilities.APIVersions.Has "monitoring.coreos.com/v1") .Values.notifications.enabled .Values.notifications.metrics.enabled .Values.notifications.metrics.serviceMonitor.enabled }}
2
-
apiVersion: monitoring.coreos.com/v1
1
+
{{- $apiVersion := include "argo-cd.apiVersions.monitoring" . }}
2
+
{{- if and (.Capabilities.APIVersions.Has $apiVersion) .Values.notifications.enabled .Values.notifications.metrics.enabled .Values.notifications.metrics.serviceMonitor.enabled }}
0 commit comments