feat(argo-cd): Upgrade Argo CD to 2.10.0 (#2476)
* chore(argo-cd): Update dependency argoproj/argo-cd to v2.10.0 * Apply automatic changes Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update CRDs to v2.10.0 Signed-off-by: Petr Drastil <petr.drastil@gmail.com> * Add variables for new features Signed-off-by: Petr Drastil <petr.drastil@gmail.com> * Fix version in Chart.yaml Signed-off-by: Petr Drastil <petr.drastil@gmail.com> --------- Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Signed-off-by: Petr Drastil <petr.drastil@gmail.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <renovate[bot]@users.noreply.github.com>
This commit is contained in:
parent
5da598289d
commit
0b79f5e5c1
9 changed files with 377 additions and 5 deletions
|
@ -1,9 +1,9 @@
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: v2.9.6
|
appVersion: v2.10.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.54.0
|
version: 5.55.0
|
||||||
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:
|
||||||
|
@ -26,5 +26,5 @@ annotations:
|
||||||
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
|
||||||
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: changed
|
||||||
description: Add Probes for redis
|
description: Upgrade argo-cd to v2.10.0
|
||||||
|
|
|
@ -122,6 +122,18 @@ spec:
|
||||||
name: argocd-cm
|
name: argocd-cm
|
||||||
key: timeout.hard.reconciliation
|
key: timeout.hard.reconciliation
|
||||||
optional: true
|
optional: true
|
||||||
|
- name: ARGOCD_RECONCILIATION_JITTER
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
key: timeout.reconciliation.jitter
|
||||||
|
name: argocd-cm
|
||||||
|
optional: true
|
||||||
|
- name: ARGOCD_REPO_ERROR_GRACE_PERIOD_SECONDS
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: argocd-cmd-params-cm
|
||||||
|
key: controller.repo.error.grace.period.seconds
|
||||||
|
optional: true
|
||||||
- name: ARGOCD_APPLICATION_CONTROLLER_REPO_SERVER
|
- name: ARGOCD_APPLICATION_CONTROLLER_REPO_SERVER
|
||||||
valueFrom:
|
valueFrom:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
|
@ -236,6 +248,18 @@ spec:
|
||||||
name: argocd-cmd-params-cm
|
name: argocd-cmd-params-cm
|
||||||
key: otlp.address
|
key: otlp.address
|
||||||
optional: true
|
optional: true
|
||||||
|
- name: ARGOCD_APPLICATION_CONTROLLER_OTLP_INSECURE
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: argocd-cmd-params-cm
|
||||||
|
key: otlp.insecure
|
||||||
|
optional: true
|
||||||
|
- name: ARGOCD_APPLICATION_CONTROLLER_OTLP_HEADERS
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: argocd-cmd-params-cm
|
||||||
|
key: otlp.headers
|
||||||
|
optional: true
|
||||||
- name: ARGOCD_APPLICATION_NAMESPACES
|
- name: ARGOCD_APPLICATION_NAMESPACES
|
||||||
valueFrom:
|
valueFrom:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
|
@ -254,6 +278,24 @@ spec:
|
||||||
name: argocd-cmd-params-cm
|
name: argocd-cmd-params-cm
|
||||||
key: controller.kubectl.parallelism.limit
|
key: controller.kubectl.parallelism.limit
|
||||||
optional: true
|
optional: true
|
||||||
|
- name: ARGOCD_K8SCLIENT_RETRY_MAX
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: argocd-cmd-params-cm
|
||||||
|
key: controller.k8sclient.retry.max
|
||||||
|
optional: true
|
||||||
|
- name: ARGOCD_K8SCLIENT_RETRY_BASE_BACKOFF
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: argocd-cmd-params-cm
|
||||||
|
key: controller.k8sclient.retry.base.backoff
|
||||||
|
optional: true
|
||||||
|
- name: ARGOCD_APPLICATION_CONTROLLER_SERVER_SIDE_DIFF
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: argocd-cmd-params-cm
|
||||||
|
key: controller.diff.server.side
|
||||||
|
optional: true
|
||||||
{{- with .Values.controller.envFrom }}
|
{{- with .Values.controller.envFrom }}
|
||||||
envFrom:
|
envFrom:
|
||||||
{{- toYaml . | nindent 10 }}
|
{{- toYaml . | nindent 10 }}
|
||||||
|
|
|
@ -210,6 +210,12 @@ spec:
|
||||||
name: argocd-cmd-params-cm
|
name: argocd-cmd-params-cm
|
||||||
key: applicationsetcontroller.allowed.scm.providers
|
key: applicationsetcontroller.allowed.scm.providers
|
||||||
optional: true
|
optional: true
|
||||||
|
- name: ARGOCD_APPLICATIONSET_CONTROLLER_ENABLE_SCM_PROVIDERS
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: argocd-cmd-params-cm
|
||||||
|
key: applicationsetcontroller.enable.scm.providers
|
||||||
|
optional: true
|
||||||
{{- with .Values.applicationSet.extraEnvFrom }}
|
{{- with .Values.applicationSet.extraEnvFrom }}
|
||||||
envFrom:
|
envFrom:
|
||||||
{{- toYaml . | nindent 12 }}
|
{{- toYaml . | nindent 12 }}
|
||||||
|
|
|
@ -91,6 +91,12 @@ spec:
|
||||||
key: application.namespaces
|
key: application.namespaces
|
||||||
name: argocd-cmd-params-cm
|
name: argocd-cmd-params-cm
|
||||||
optional: true
|
optional: true
|
||||||
|
- name: ARGOCD_NOTIFICATION_CONTROLLER_SELF_SERVICE_NOTIFICATION_ENABLED
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
key: notificationscontroller.selfservice.enabled
|
||||||
|
name: argocd-cmd-params-cm
|
||||||
|
optional: true
|
||||||
{{- with .Values.notifications.extraEnvFrom }}
|
{{- with .Values.notifications.extraEnvFrom }}
|
||||||
envFrom:
|
envFrom:
|
||||||
{{- toYaml . | nindent 12 }}
|
{{- toYaml . | nindent 12 }}
|
||||||
|
|
|
@ -201,6 +201,18 @@ spec:
|
||||||
name: argocd-cmd-params-cm
|
name: argocd-cmd-params-cm
|
||||||
key: otlp.address
|
key: otlp.address
|
||||||
optional: true
|
optional: true
|
||||||
|
- name: ARGOCD_REPO_SERVER_OTLP_INSECURE
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: argocd-cmd-params-cm
|
||||||
|
key: otlp.insecure
|
||||||
|
optional: true
|
||||||
|
- name: ARGOCD_REPO_SERVER_OTLP_HEADERS
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: argocd-cmd-params-cm
|
||||||
|
key: otlp.headers
|
||||||
|
optional: true
|
||||||
- name: ARGOCD_REPO_SERVER_MAX_COMBINED_DIRECTORY_MANIFESTS_SIZE
|
- name: ARGOCD_REPO_SERVER_MAX_COMBINED_DIRECTORY_MANIFESTS_SIZE
|
||||||
valueFrom:
|
valueFrom:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
|
@ -249,6 +261,18 @@ spec:
|
||||||
key: reposerver.enable.git.submodule
|
key: reposerver.enable.git.submodule
|
||||||
name: argocd-cmd-params-cm
|
name: argocd-cmd-params-cm
|
||||||
optional: true
|
optional: true
|
||||||
|
- name: ARGOCD_GIT_LS_REMOTE_PARALLELISM_LIMIT
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
key: reposerver.git.lsremote.parallelism.limit
|
||||||
|
name: argocd-cmd-params-cm
|
||||||
|
optional: true
|
||||||
|
- name: ARGOCD_GIT_REQUEST_TIMEOUT
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
key: reposerver.git.request.timeout
|
||||||
|
name: argocd-cmd-params-cm
|
||||||
|
optional: true
|
||||||
{{- if .Values.repoServer.useEphemeralHelmWorkingDir }}
|
{{- if .Values.repoServer.useEphemeralHelmWorkingDir }}
|
||||||
- name: HELM_CACHE_HOME
|
- name: HELM_CACHE_HOME
|
||||||
value: /helm-working-dir
|
value: /helm-working-dir
|
||||||
|
|
|
@ -287,6 +287,18 @@ spec:
|
||||||
name: argocd-cmd-params-cm
|
name: argocd-cmd-params-cm
|
||||||
key: otlp.address
|
key: otlp.address
|
||||||
optional: true
|
optional: true
|
||||||
|
- name: ARGOCD_SERVER_OTLP_INSECURE
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: argocd-cmd-params-cm
|
||||||
|
key: otlp.insecure
|
||||||
|
optional: true
|
||||||
|
- name: ARGOCD_SERVER_OTLP_HEADERS
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: argocd-cmd-params-cm
|
||||||
|
key: otlp.headers
|
||||||
|
optional: true
|
||||||
- name: ARGOCD_APPLICATION_NAMESPACES
|
- name: ARGOCD_APPLICATION_NAMESPACES
|
||||||
valueFrom:
|
valueFrom:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
|
@ -299,6 +311,18 @@ spec:
|
||||||
name: argocd-cmd-params-cm
|
name: argocd-cmd-params-cm
|
||||||
key: server.enable.proxy.extension
|
key: server.enable.proxy.extension
|
||||||
optional: true
|
optional: true
|
||||||
|
- name: ARGOCD_K8SCLIENT_RETRY_MAX
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: argocd-cmd-params-cm
|
||||||
|
key: server.k8sclient.retry.max
|
||||||
|
optional: true
|
||||||
|
- name: ARGOCD_K8SCLIENT_RETRY_BASE_BACKOFF
|
||||||
|
valueFrom:
|
||||||
|
configMapKeyRef:
|
||||||
|
name: argocd-cmd-params-cm
|
||||||
|
key: server.k8sclient.retry.base.backoff
|
||||||
|
optional: true
|
||||||
- name: ARGOCD_API_CONTENT_TYPES
|
- name: ARGOCD_API_CONTENT_TYPES
|
||||||
valueFrom:
|
valueFrom:
|
||||||
configMapKeyRef:
|
configMapKeyRef:
|
||||||
|
|
|
@ -330,6 +330,12 @@ spec:
|
||||||
description: CommonLabels is a list of additional labels
|
description: CommonLabels is a list of additional labels
|
||||||
to add to rendered manifests
|
to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
description: Components specifies a list of kustomize
|
||||||
|
components to add to the kustomization before building
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
description: ForceCommonAnnotations specifies whether
|
description: ForceCommonAnnotations specifies whether
|
||||||
to force applying common annotations to resources for
|
to force applying common annotations to resources for
|
||||||
|
@ -658,6 +664,12 @@ spec:
|
||||||
description: CommonLabels is a list of additional labels
|
description: CommonLabels is a list of additional labels
|
||||||
to add to rendered manifests
|
to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
description: Components specifies a list of kustomize
|
||||||
|
components to add to the kustomization before building
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
description: ForceCommonAnnotations specifies whether
|
description: ForceCommonAnnotations specifies whether
|
||||||
to force applying common annotations to resources
|
to force applying common annotations to resources
|
||||||
|
@ -1103,6 +1115,12 @@ spec:
|
||||||
description: CommonLabels is a list of additional labels to
|
description: CommonLabels is a list of additional labels to
|
||||||
add to rendered manifests
|
add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
description: Components specifies a list of kustomize components
|
||||||
|
to add to the kustomization before building
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
description: ForceCommonAnnotations specifies whether to force
|
description: ForceCommonAnnotations specifies whether to force
|
||||||
applying common annotations to resources for Kustomize apps
|
applying common annotations to resources for Kustomize apps
|
||||||
|
@ -1421,6 +1439,12 @@ spec:
|
||||||
description: CommonLabels is a list of additional labels
|
description: CommonLabels is a list of additional labels
|
||||||
to add to rendered manifests
|
to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
description: Components specifies a list of kustomize components
|
||||||
|
to add to the kustomization before building
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
description: ForceCommonAnnotations specifies whether to
|
description: ForceCommonAnnotations specifies whether to
|
||||||
force applying common annotations to resources for Kustomize
|
force applying common annotations to resources for Kustomize
|
||||||
|
@ -1892,6 +1916,12 @@ spec:
|
||||||
description: CommonLabels is a list of additional labels
|
description: CommonLabels is a list of additional labels
|
||||||
to add to rendered manifests
|
to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
description: Components specifies a list of kustomize
|
||||||
|
components to add to the kustomization before building
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
description: ForceCommonAnnotations specifies whether
|
description: ForceCommonAnnotations specifies whether
|
||||||
to force applying common annotations to resources
|
to force applying common annotations to resources
|
||||||
|
@ -2224,6 +2254,12 @@ spec:
|
||||||
description: CommonLabels is a list of additional
|
description: CommonLabels is a list of additional
|
||||||
labels to add to rendered manifests
|
labels to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
description: Components specifies a list of kustomize
|
||||||
|
components to add to the kustomization before building
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
description: ForceCommonAnnotations specifies whether
|
description: ForceCommonAnnotations specifies whether
|
||||||
to force applying common annotations to resources
|
to force applying common annotations to resources
|
||||||
|
@ -2700,6 +2736,13 @@ spec:
|
||||||
description: CommonLabels is a list of additional
|
description: CommonLabels is a list of additional
|
||||||
labels to add to rendered manifests
|
labels to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
description: Components specifies a list of kustomize
|
||||||
|
components to add to the kustomization before
|
||||||
|
building
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
description: ForceCommonAnnotations specifies
|
description: ForceCommonAnnotations specifies
|
||||||
whether to force applying common annotations
|
whether to force applying common annotations
|
||||||
|
@ -3049,6 +3092,13 @@ spec:
|
||||||
description: CommonLabels is a list of additional
|
description: CommonLabels is a list of additional
|
||||||
labels to add to rendered manifests
|
labels to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
description: Components specifies a list of
|
||||||
|
kustomize components to add to the kustomization
|
||||||
|
before building
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
description: ForceCommonAnnotations specifies
|
description: ForceCommonAnnotations specifies
|
||||||
whether to force applying common annotations
|
whether to force applying common annotations
|
||||||
|
@ -3513,6 +3563,12 @@ spec:
|
||||||
description: CommonLabels is a list of additional
|
description: CommonLabels is a list of additional
|
||||||
labels to add to rendered manifests
|
labels to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
description: Components specifies a list of kustomize
|
||||||
|
components to add to the kustomization before building
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
description: ForceCommonAnnotations specifies whether
|
description: ForceCommonAnnotations specifies whether
|
||||||
to force applying common annotations to resources
|
to force applying common annotations to resources
|
||||||
|
@ -3855,6 +3911,13 @@ spec:
|
||||||
description: CommonLabels is a list of additional
|
description: CommonLabels is a list of additional
|
||||||
labels to add to rendered manifests
|
labels to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
description: Components specifies a list of kustomize
|
||||||
|
components to add to the kustomization before
|
||||||
|
building
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
description: ForceCommonAnnotations specifies whether
|
description: ForceCommonAnnotations specifies whether
|
||||||
to force applying common annotations to resources
|
to force applying common annotations to resources
|
||||||
|
@ -4341,6 +4404,12 @@ spec:
|
||||||
description: CommonLabels is a list of additional
|
description: CommonLabels is a list of additional
|
||||||
labels to add to rendered manifests
|
labels to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
description: Components specifies a list of kustomize
|
||||||
|
components to add to the kustomization before building
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
description: ForceCommonAnnotations specifies whether
|
description: ForceCommonAnnotations specifies whether
|
||||||
to force applying common annotations to resources
|
to force applying common annotations to resources
|
||||||
|
@ -4683,6 +4752,13 @@ spec:
|
||||||
description: CommonLabels is a list of additional
|
description: CommonLabels is a list of additional
|
||||||
labels to add to rendered manifests
|
labels to add to rendered manifests
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
description: Components specifies a list of kustomize
|
||||||
|
components to add to the kustomization before
|
||||||
|
building
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
description: ForceCommonAnnotations specifies whether
|
description: ForceCommonAnnotations specifies whether
|
||||||
to force applying common annotations to resources
|
to force applying common annotations to resources
|
||||||
|
|
|
@ -255,6 +255,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -465,6 +469,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -834,6 +842,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -1044,6 +1056,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -1417,6 +1433,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -1627,6 +1647,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -1980,6 +2004,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -2190,6 +2218,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -2567,6 +2599,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -2777,6 +2813,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -3146,6 +3186,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -3356,6 +3400,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -3729,6 +3777,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -3939,6 +3991,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -4292,6 +4348,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -4502,6 +4562,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -4865,6 +4929,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -5075,6 +5143,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -5618,6 +5690,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -5828,6 +5904,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -6366,6 +6446,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -6576,6 +6660,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -6943,6 +7031,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -7153,6 +7245,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -7530,6 +7626,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -7740,6 +7840,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -8109,6 +8213,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -8319,6 +8427,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -8692,6 +8804,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -8902,6 +9018,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -9255,6 +9375,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -9465,6 +9589,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -9828,6 +9956,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -10038,6 +10170,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -10581,6 +10717,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -10791,6 +10931,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -11329,6 +11473,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -11539,6 +11687,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -11910,6 +12062,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -12120,6 +12276,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -12480,6 +12640,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -12690,6 +12854,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -13233,6 +13401,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -13443,6 +13615,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -13981,6 +14157,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -14191,6 +14371,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -14633,6 +14817,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -14843,6 +15031,10 @@ spec:
|
||||||
additionalProperties:
|
additionalProperties:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
|
components:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
forceCommonAnnotations:
|
forceCommonAnnotations:
|
||||||
type: boolean
|
type: boolean
|
||||||
forceCommonLabels:
|
forceCommonLabels:
|
||||||
|
@ -15002,6 +15194,8 @@ spec:
|
||||||
- metadata
|
- metadata
|
||||||
- spec
|
- spec
|
||||||
type: object
|
type: object
|
||||||
|
templatePatch:
|
||||||
|
type: string
|
||||||
required:
|
required:
|
||||||
- generators
|
- generators
|
||||||
- template
|
- template
|
||||||
|
|
Loading…
Reference in a new issue