Add Pod label configuration for argocd-applicationset (#906)
Signed-off-by: Petr Drastil <petr.drastil@gmail.com>
This commit is contained in:
parent
81ec515e54
commit
91d2a56ca8
4 changed files with 9 additions and 2 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
name: argocd-applicationset
|
name: argocd-applicationset
|
||||||
description: A Helm chart for installing ArgoCD ApplicationSet
|
description: A Helm chart for installing ArgoCD ApplicationSet
|
||||||
type: application
|
type: application
|
||||||
version: 1.3.1
|
version: 1.4.0
|
||||||
appVersion: "v0.2.0"
|
appVersion: "v0.2.0"
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argocd-applicationset.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argocd-applicationset.readthedocs.io/en/stable/assets/logo.png
|
||||||
|
@ -14,4 +14,4 @@ maintainers:
|
||||||
- name: maruina
|
- name: maruina
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Changed]: Update README and convert it to helm-docs"
|
- "[Added]: Configuration for Pod labels"
|
||||||
|
|
|
@ -79,6 +79,7 @@ kubectl apply -k https://github.com/argoproj-labs/applicationset.git/manifests/c
|
||||||
| nameOverride | string | `""` | Provide a name in place of `argocd-applicationset` |
|
| nameOverride | string | `""` | Provide a name in place of `argocd-applicationset` |
|
||||||
| nodeSelector | object | `{}` | [Node selector](https://kubernetes.io/docs/user-guide/node-selection/) |
|
| nodeSelector | object | `{}` | [Node selector](https://kubernetes.io/docs/user-guide/node-selection/) |
|
||||||
| podAnnotations | object | `{}` | Annotations for the controller pods |
|
| podAnnotations | object | `{}` | Annotations for the controller pods |
|
||||||
|
| podLabels | object | `{}` | Labels for the controller pods |
|
||||||
| podSecurityContext | object | `{}` | Pod Security Context |
|
| podSecurityContext | object | `{}` | Pod Security Context |
|
||||||
| priorityClassName | string | `""` | If specified, indicates the pod's priority. If not specified, the pod priority will be default or zero if there is no default. |
|
| priorityClassName | string | `""` | If specified, indicates the pod's priority. If not specified, the pod priority will be default or zero if there is no default. |
|
||||||
| rbac.pspEnabled | bool | `true` | Enable Pod Security Policy |
|
| rbac.pspEnabled | bool | `true` | Enable Pod Security Policy |
|
||||||
|
|
|
@ -17,6 +17,9 @@ spec:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
labels:
|
labels:
|
||||||
{{- include "argo-applicationset.selectorLabels" . | nindent 8 }}
|
{{- include "argo-applicationset.selectorLabels" . | nindent 8 }}
|
||||||
|
{{- with .Values.podLabels }}
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
spec:
|
spec:
|
||||||
{{- with .Values.imagePullSecrets }}
|
{{- with .Values.imagePullSecrets }}
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
|
|
|
@ -50,6 +50,9 @@ serviceAccount:
|
||||||
# -- Annotations for the controller pods
|
# -- Annotations for the controller pods
|
||||||
podAnnotations: {}
|
podAnnotations: {}
|
||||||
|
|
||||||
|
# -- Labels for the controller pods
|
||||||
|
podLabels: {}
|
||||||
|
|
||||||
rbac:
|
rbac:
|
||||||
# -- Enable Pod Security Policy
|
# -- Enable Pod Security Policy
|
||||||
pspEnabled: true
|
pspEnabled: true
|
||||||
|
|
Loading…
Reference in a new issue