Merge branch 'main' into gabe/probes
This commit is contained in:
commit
c074138cc6
10 changed files with 18 additions and 8 deletions
|
@ -3,7 +3,7 @@ appVersion: v2.8.0
|
||||||
kubeVersion: ">=1.23.0-0"
|
kubeVersion: ">=1.23.0-0"
|
||||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||||
name: argo-cd
|
name: argo-cd
|
||||||
version: 5.43.3
|
version: 5.43.4
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||||
sources:
|
sources:
|
||||||
|
@ -27,4 +27,4 @@ annotations:
|
||||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: fixed
|
- kind: fixed
|
||||||
description: add missing permissions to run actions
|
description: Rename comment of repositoryCredentials to credentialTemplates
|
||||||
|
|
|
@ -476,7 +476,7 @@ configs:
|
||||||
|
|
||||||
# -- Repositories list to be used by applications
|
# -- Repositories list to be used by applications
|
||||||
## Creates a secret for each key/value specified below to create repositories
|
## Creates a secret for each key/value specified below to create repositories
|
||||||
## Note: the last example in the list would use a repository credential template, configured under "configs.repositoryCredentials".
|
## Note: the last example in the list would use a repository credential template, configured under "configs.credentialTemplates".
|
||||||
repositories: {}
|
repositories: {}
|
||||||
# istio-helm-repo:
|
# istio-helm-repo:
|
||||||
# url: https://storage.googleapis.com/istio-prerelease/daily-build/master-latest-daily/charts
|
# url: https://storage.googleapis.com/istio-prerelease/daily-build/master-latest-daily/charts
|
||||||
|
|
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: v1.5.1
|
appVersion: v1.5.1
|
||||||
description: A Helm chart for Argo Rollouts
|
description: A Helm chart for Argo Rollouts
|
||||||
name: argo-rollouts
|
name: argo-rollouts
|
||||||
version: 2.31.5
|
version: 2.31.6
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
|
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
|
||||||
keywords:
|
keywords:
|
||||||
|
@ -19,4 +19,4 @@ annotations:
|
||||||
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- kind: added
|
- kind: added
|
||||||
description: Add CI example for extra objects
|
description: Add ability to set namespace on ServiceMonitor resource
|
||||||
|
|
|
@ -98,6 +98,7 @@ For full list of changes please check ArtifactHub [changelog].
|
||||||
| controller.metrics.serviceMonitor.additionalLabels | object | `{}` | Labels to be added to the ServiceMonitor |
|
| controller.metrics.serviceMonitor.additionalLabels | object | `{}` | Labels to be added to the ServiceMonitor |
|
||||||
| controller.metrics.serviceMonitor.enabled | bool | `false` | Enable a prometheus ServiceMonitor |
|
| controller.metrics.serviceMonitor.enabled | bool | `false` | Enable a prometheus ServiceMonitor |
|
||||||
| controller.metrics.serviceMonitor.metricRelabelings | list | `[]` | MetricRelabelConfigs to apply to samples before ingestion |
|
| controller.metrics.serviceMonitor.metricRelabelings | list | `[]` | MetricRelabelConfigs to apply to samples before ingestion |
|
||||||
|
| controller.metrics.serviceMonitor.namespace | string | `""` | Namespace to be used for the ServiceMonitor |
|
||||||
| controller.metrics.serviceMonitor.relabelings | list | `[]` | RelabelConfigs to apply to samples before scraping |
|
| controller.metrics.serviceMonitor.relabelings | list | `[]` | RelabelConfigs to apply to samples before scraping |
|
||||||
| controller.nodeSelector | object | `{}` | [Node selector] |
|
| controller.nodeSelector | object | `{}` | [Node selector] |
|
||||||
| controller.pdb.annotations | object | `{}` | Annotations to be added to controller [Pod Disruption Budget] |
|
| controller.pdb.annotations | object | `{}` | Annotations to be added to controller [Pod Disruption Budget] |
|
||||||
|
|
|
@ -3,7 +3,7 @@ apiVersion: monitoring.coreos.com/v1
|
||||||
kind: ServiceMonitor
|
kind: ServiceMonitor
|
||||||
metadata:
|
metadata:
|
||||||
name: {{ include "argo-rollouts.fullname" . }}
|
name: {{ include "argo-rollouts.fullname" . }}
|
||||||
namespace: {{ .Release.Namespace | quote }}
|
namespace: {{ default .Release.Namespace .Values.controller.metrics.serviceMonitor.namespace | quote }}
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/component: {{ .Values.controller.component }}
|
app.kubernetes.io/component: {{ .Values.controller.component }}
|
||||||
{{- include "argo-rollouts.labels" . | nindent 4 }}
|
{{- include "argo-rollouts.labels" . | nindent 4 }}
|
||||||
|
|
|
@ -132,6 +132,8 @@ controller:
|
||||||
serviceMonitor:
|
serviceMonitor:
|
||||||
# -- Enable a prometheus ServiceMonitor
|
# -- Enable a prometheus ServiceMonitor
|
||||||
enabled: false
|
enabled: false
|
||||||
|
# -- Namespace to be used for the ServiceMonitor
|
||||||
|
namespace: ""
|
||||||
# -- Labels to be added to the ServiceMonitor
|
# -- Labels to be added to the ServiceMonitor
|
||||||
additionalLabels: {}
|
additionalLabels: {}
|
||||||
# -- Annotations to be added to the ServiceMonitor
|
# -- Annotations to be added to the ServiceMonitor
|
||||||
|
|
|
@ -3,7 +3,7 @@ appVersion: v3.4.10
|
||||||
name: argo-workflows
|
name: argo-workflows
|
||||||
description: A Helm chart for Argo Workflows
|
description: A Helm chart for Argo Workflows
|
||||||
type: application
|
type: application
|
||||||
version: 0.32.3
|
version: 0.33.2
|
||||||
icon: https://argoproj.github.io/argo-workflows/assets/logo.png
|
icon: https://argoproj.github.io/argo-workflows/assets/logo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
sources:
|
sources:
|
||||||
|
|
|
@ -127,6 +127,7 @@ Fields to note:
|
||||||
| workflow.serviceAccount.create | bool | `false` | Specifies whether a service account should be created |
|
| workflow.serviceAccount.create | bool | `false` | Specifies whether a service account should be created |
|
||||||
| workflow.serviceAccount.labels | object | `{}` | Labels applied to created service account |
|
| workflow.serviceAccount.labels | object | `{}` | Labels applied to created service account |
|
||||||
| workflow.serviceAccount.name | string | `"argo-workflow"` | Service account which is used to run workflows |
|
| workflow.serviceAccount.name | string | `"argo-workflow"` | Service account which is used to run workflows |
|
||||||
|
| workflow.serviceAccount.pullSecrets | list | `[]` | Secrets with credentials to pull images from a private registry. Same format as `.Values.images.pullSecrets` |
|
||||||
|
|
||||||
### Workflow Controller
|
### Workflow Controller
|
||||||
|
|
||||||
|
|
|
@ -17,5 +17,9 @@ metadata:
|
||||||
annotations:
|
annotations:
|
||||||
{{- toYaml . | nindent 4 }}
|
{{- toYaml . | nindent 4 }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
{{- with $.Values.workflow.serviceAccount.pullSecrets }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml . | nindent 2 }}
|
||||||
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -54,6 +54,8 @@ workflow:
|
||||||
annotations: {}
|
annotations: {}
|
||||||
# -- Service account which is used to run workflows
|
# -- Service account which is used to run workflows
|
||||||
name: "argo-workflow"
|
name: "argo-workflow"
|
||||||
|
# -- Secrets with credentials to pull images from a private registry. Same format as `.Values.images.pullSecrets`
|
||||||
|
pullSecrets: []
|
||||||
rbac:
|
rbac:
|
||||||
# -- Adds Role and RoleBinding for the above specified service account to be able to run workflows.
|
# -- Adds Role and RoleBinding for the above specified service account to be able to run workflows.
|
||||||
# A Role and Rolebinding pair is also created for each namespace in controller.workflowNamespaces (see below)
|
# A Role and Rolebinding pair is also created for each namespace in controller.workflowNamespaces (see below)
|
||||||
|
@ -756,7 +758,7 @@ artifactRepository:
|
||||||
azure: {}
|
azure: {}
|
||||||
# endpoint: https://mystorageaccountname.blob.core.windows.net
|
# endpoint: https://mystorageaccountname.blob.core.windows.net
|
||||||
# container: my-container-name
|
# container: my-container-name
|
||||||
# blob: path/in/container
|
# blobNameFormat: path/in/container
|
||||||
## accountKeySecret is a secret selector.
|
## accountKeySecret is a secret selector.
|
||||||
## It references the k8s secret named 'my-azure-storage-credentials'.
|
## It references the k8s secret named 'my-azure-storage-credentials'.
|
||||||
## This secret is expected to have have the key 'account-access-key',
|
## This secret is expected to have have the key 'account-access-key',
|
||||||
|
|
Loading…
Reference in a new issue