Merge branch 'main' into feature/depracate
* main: feat(argo-cd): Upgrade Argo CD to 2.10.0 (#2476)
This commit is contained in:
commit
413c0b3830
9 changed files with 374 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
apiVersion: v2
|
||||
appVersion: v2.9.6
|
||||
appVersion: v2.10.0
|
||||
kubeVersion: ">=1.23.0-0"
|
||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||
name: argo-cd
|
||||
|
|
|
@ -89,6 +89,18 @@ spec:
|
|||
name: argocd-cm
|
||||
key: timeout.hard.reconciliation
|
||||
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
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
@ -203,6 +215,18 @@ spec:
|
|||
name: argocd-cmd-params-cm
|
||||
key: otlp.address
|
||||
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
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
@ -221,6 +245,24 @@ spec:
|
|||
name: argocd-cmd-params-cm
|
||||
key: controller.kubectl.parallelism.limit
|
||||
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 }}
|
||||
envFrom:
|
||||
{{- toYaml . | nindent 10 }}
|
||||
|
|
|
@ -196,6 +196,12 @@ spec:
|
|||
name: argocd-cmd-params-cm
|
||||
key: applicationsetcontroller.allowed.scm.providers
|
||||
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 }}
|
||||
envFrom:
|
||||
{{- toYaml . | nindent 12 }}
|
||||
|
|
|
@ -91,6 +91,12 @@ spec:
|
|||
key: application.namespaces
|
||||
name: argocd-cmd-params-cm
|
||||
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 }}
|
||||
envFrom:
|
||||
{{- toYaml . | nindent 12 }}
|
||||
|
|
|
@ -193,6 +193,18 @@ spec:
|
|||
name: argocd-cmd-params-cm
|
||||
key: otlp.address
|
||||
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
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
@ -241,6 +253,18 @@ spec:
|
|||
key: reposerver.enable.git.submodule
|
||||
name: argocd-cmd-params-cm
|
||||
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 }}
|
||||
- name: HELM_CACHE_HOME
|
||||
value: /helm-working-dir
|
||||
|
|
|
@ -279,6 +279,18 @@ spec:
|
|||
name: argocd-cmd-params-cm
|
||||
key: otlp.address
|
||||
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
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
@ -291,6 +303,18 @@ spec:
|
|||
name: argocd-cmd-params-cm
|
||||
key: server.enable.proxy.extension
|
||||
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
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
|
|
@ -330,6 +330,12 @@ spec:
|
|||
description: CommonLabels is a list of additional labels
|
||||
to add to rendered manifests
|
||||
type: object
|
||||
components:
|
||||
description: Components specifies a list of kustomize
|
||||
components to add to the kustomization before building
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
description: ForceCommonAnnotations specifies whether
|
||||
to force applying common annotations to resources for
|
||||
|
@ -658,6 +664,12 @@ spec:
|
|||
description: CommonLabels is a list of additional labels
|
||||
to add to rendered manifests
|
||||
type: object
|
||||
components:
|
||||
description: Components specifies a list of kustomize
|
||||
components to add to the kustomization before building
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
description: ForceCommonAnnotations specifies whether
|
||||
to force applying common annotations to resources
|
||||
|
@ -1103,6 +1115,12 @@ spec:
|
|||
description: CommonLabels is a list of additional labels to
|
||||
add to rendered manifests
|
||||
type: object
|
||||
components:
|
||||
description: Components specifies a list of kustomize components
|
||||
to add to the kustomization before building
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
description: ForceCommonAnnotations specifies whether to force
|
||||
applying common annotations to resources for Kustomize apps
|
||||
|
@ -1421,6 +1439,12 @@ spec:
|
|||
description: CommonLabels is a list of additional labels
|
||||
to add to rendered manifests
|
||||
type: object
|
||||
components:
|
||||
description: Components specifies a list of kustomize components
|
||||
to add to the kustomization before building
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
description: ForceCommonAnnotations specifies whether to
|
||||
force applying common annotations to resources for Kustomize
|
||||
|
@ -1892,6 +1916,12 @@ spec:
|
|||
description: CommonLabels is a list of additional labels
|
||||
to add to rendered manifests
|
||||
type: object
|
||||
components:
|
||||
description: Components specifies a list of kustomize
|
||||
components to add to the kustomization before building
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
description: ForceCommonAnnotations specifies whether
|
||||
to force applying common annotations to resources
|
||||
|
@ -2224,6 +2254,12 @@ spec:
|
|||
description: CommonLabels is a list of additional
|
||||
labels to add to rendered manifests
|
||||
type: object
|
||||
components:
|
||||
description: Components specifies a list of kustomize
|
||||
components to add to the kustomization before building
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
description: ForceCommonAnnotations specifies whether
|
||||
to force applying common annotations to resources
|
||||
|
@ -2700,6 +2736,13 @@ spec:
|
|||
description: CommonLabels is a list of additional
|
||||
labels to add to rendered manifests
|
||||
type: object
|
||||
components:
|
||||
description: Components specifies a list of kustomize
|
||||
components to add to the kustomization before
|
||||
building
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
description: ForceCommonAnnotations specifies
|
||||
whether to force applying common annotations
|
||||
|
@ -3049,6 +3092,13 @@ spec:
|
|||
description: CommonLabels is a list of additional
|
||||
labels to add to rendered manifests
|
||||
type: object
|
||||
components:
|
||||
description: Components specifies a list of
|
||||
kustomize components to add to the kustomization
|
||||
before building
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
description: ForceCommonAnnotations specifies
|
||||
whether to force applying common annotations
|
||||
|
@ -3513,6 +3563,12 @@ spec:
|
|||
description: CommonLabels is a list of additional
|
||||
labels to add to rendered manifests
|
||||
type: object
|
||||
components:
|
||||
description: Components specifies a list of kustomize
|
||||
components to add to the kustomization before building
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
description: ForceCommonAnnotations specifies whether
|
||||
to force applying common annotations to resources
|
||||
|
@ -3855,6 +3911,13 @@ spec:
|
|||
description: CommonLabels is a list of additional
|
||||
labels to add to rendered manifests
|
||||
type: object
|
||||
components:
|
||||
description: Components specifies a list of kustomize
|
||||
components to add to the kustomization before
|
||||
building
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
description: ForceCommonAnnotations specifies whether
|
||||
to force applying common annotations to resources
|
||||
|
@ -4341,6 +4404,12 @@ spec:
|
|||
description: CommonLabels is a list of additional
|
||||
labels to add to rendered manifests
|
||||
type: object
|
||||
components:
|
||||
description: Components specifies a list of kustomize
|
||||
components to add to the kustomization before building
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
description: ForceCommonAnnotations specifies whether
|
||||
to force applying common annotations to resources
|
||||
|
@ -4683,6 +4752,13 @@ spec:
|
|||
description: CommonLabels is a list of additional
|
||||
labels to add to rendered manifests
|
||||
type: object
|
||||
components:
|
||||
description: Components specifies a list of kustomize
|
||||
components to add to the kustomization before
|
||||
building
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
description: ForceCommonAnnotations specifies whether
|
||||
to force applying common annotations to resources
|
||||
|
|
|
@ -255,6 +255,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -465,6 +469,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -834,6 +842,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -1044,6 +1056,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -1417,6 +1433,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -1627,6 +1647,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -1980,6 +2004,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -2190,6 +2218,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -2567,6 +2599,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -2777,6 +2813,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -3146,6 +3186,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -3356,6 +3400,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -3729,6 +3777,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -3939,6 +3991,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -4292,6 +4348,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -4502,6 +4562,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -4865,6 +4929,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -5075,6 +5143,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -5618,6 +5690,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -5828,6 +5904,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -6366,6 +6446,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -6576,6 +6660,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -6943,6 +7031,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -7153,6 +7245,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -7530,6 +7626,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -7740,6 +7840,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -8109,6 +8213,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -8319,6 +8427,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -8692,6 +8804,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -8902,6 +9018,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -9255,6 +9375,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -9465,6 +9589,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -9828,6 +9956,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -10038,6 +10170,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -10581,6 +10717,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -10791,6 +10931,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -11329,6 +11473,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -11539,6 +11687,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -11910,6 +12062,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -12120,6 +12276,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -12480,6 +12640,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -12690,6 +12854,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -13233,6 +13401,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -13443,6 +13615,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -13981,6 +14157,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -14191,6 +14371,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -14633,6 +14817,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -14843,6 +15031,10 @@ spec:
|
|||
additionalProperties:
|
||||
type: string
|
||||
type: object
|
||||
components:
|
||||
items:
|
||||
type: string
|
||||
type: array
|
||||
forceCommonAnnotations:
|
||||
type: boolean
|
||||
forceCommonLabels:
|
||||
|
@ -15002,6 +15194,8 @@ spec:
|
|||
- metadata
|
||||
- spec
|
||||
type: object
|
||||
templatePatch:
|
||||
type: string
|
||||
required:
|
||||
- generators
|
||||
- template
|
||||
|
|
Loading…
Reference in a new issue