Skip to content

chore(chart-deps): update argocd to version 9.4.0#2904

Draft
svcAPLBot wants to merge 16 commits intomainfrom
ci-update-argocd-to-9.4.0
Draft

chore(chart-deps): update argocd to version 9.4.0#2904
svcAPLBot wants to merge 16 commits intomainfrom
ci-update-argocd-to-9.4.0

Conversation

@svcAPLBot
Copy link
Contributor

This PR updates the dependency argo-cd to version 9.4.0.

@svcAPLBot svcAPLBot added the chart-deps Auto generated helm chart dependencies label Feb 3, 2026
@svcAPLBot
Copy link
Contributor Author

Comparison of Helm chart templating output:



@@ spec.template.spec.containers.application-controller.image @@
! ± value change
- quay.io/argoproj/argocd:v3.2.6
+ quay.io/argoproj/argocd:v3.3.0


@@ spec.template.spec.containers.applicationset-controller.image @@
! ± value change
- quay.io/argoproj/argocd:v3.2.6
+ quay.io/argoproj/argocd:v3.3.0


















@@ spec.template.spec.containers.notifications-controller.image @@
! ± value change
- quay.io/argoproj/argocd:v3.2.6
+ quay.io/argoproj/argocd:v3.3.0





@@ spec.template.spec.containers.repo-server.image @@
! ± value change
- quay.io/argoproj/argocd:v3.2.6
+ quay.io/argoproj/argocd:v3.3.0

@@ spec.template.spec.initContainers.copyutil @@
! + one map entry added:
+ args:
+ - "/bin/cp --update=none /usr/local/bin/argocd /var/run/argocd/argocd && /bin/ln -s /var/run/argocd/argocd /var/run/argocd/argocd-cmp-server"

@@ spec.template.spec.initContainers.copyutil.command @@
! - four list entries removed:
- - /bin/cp
- - "--update=none"
- - /usr/local/bin/argocd
- - /var/run/argocd/argocd-cmp-server
! + two list entries added:
+ - sh
+ - "-c"

@@ spec.template.spec.initContainers.copyutil.image @@
! ± value change
- quay.io/argoproj/argocd:v3.2.6
+ quay.io/argoproj/argocd:v3.3.0










@@ spec.template.spec.containers.server.image @@
! ± value change
- quay.io/argoproj/argocd:v3.2.6
+ quay.io/argoproj/argocd:v3.3.0








@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   description: "Directory specifies path/directory specific options"
+   properties:
+     exclude:
+       type: string
+       description: "Exclude contains a glob pattern to match paths against that should be explicitly excluded from being used during manifest generation"
+     include:
+       type: string
+       description: "Include contains a glob pattern to match paths against that should be explicitly included during manifest generation"
+     jsonnet:
+       type: object
+       description: "Jsonnet holds options specific to Jsonnet"
+       properties:
+         extVars:
+           type: array
+           description: "ExtVars is a list of Jsonnet External Variables"
+           items:
+             type: object
+             description: "JsonnetVar represents a variable to be passed to jsonnet during manifest generation"
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           description: "Additional library search dirs"
+           items:
+             type: string
+         tlas:
+           type: array
+           description: "TLAS is a list of Jsonnet Top-level Arguments"
+           items:
+             type: object
+             description: "JsonnetVar represents a variable to be passed to jsonnet during manifest generation"
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+       description: "Recurse specifies whether to scan a directory recursively for manifests"
+ helm:
+   type: object
+   description: "Helm specifies helm specific options"
+   properties:
+     version:
+       type: string
+       description: "Version is the Helm version to use for templating (\"3\")"
+     passCredentials:
+       type: boolean
+       description: "PassCredentials pass credentials to all domains (Helm's --pass-credentials)"
+     values:
+       type: string
+       description: "Values specifies Helm values to be passed to helm template, typically defined as a block. ValuesObject takes precedence over Values, so use one or the other."
+     ignoreMissingValueFiles:
+       type: boolean
+       description: "IgnoreMissingValueFiles prevents helm template from failing when valueFiles do not exist locally by not appending them to helm template --values"
+     kubeVersion:
+       type: string
+       description: |
+         KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
+         uses the Kubernetes version of the target cluster.
+     namespace:
+       type: string
+       description: "Namespace is an optional namespace to template with. If left empty, defaults to the app's destination namespace."
+     valuesObject:
+       type: object
+       description: "ValuesObject specifies Helm values to be passed to helm template, defined as a map. This takes precedence over Values."
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+       description: "SkipCrds skips custom resource definition installation step (Helm's --skip-crds)"
+     releaseName:
+       type: string
+       description: "ReleaseName is the Helm release name to use. If omitted it will use the application name"
+     skipTests:
+       type: boolean
+       description: "SkipTests skips test manifest installation step (Helm's --skip-tests)."
+     skipSchemaValidation:
+       type: boolean
+       description: "SkipSchemaValidation skips JSON schema validation (Helm's --skip-schema-validation)"
+     valueFiles:
+       type: array
+       description: "ValuesFiles is a list of Helm value files to use when generating a template"
+       items:
+         type: string
+     apiVersions:
+       type: array
+       description: |
+         APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
+         Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
+       items:
+         type: string
+     fileParameters:
+       type: array
+       description: "FileParameters are file parameters to the helm template"
+       items:
+         type: object
+         description: "HelmFileParameter is a file parameter that's passed to helm template during manifest generation"
+         properties:
+           name:
+             type: string
+             description: "Name is the name of the Helm parameter"
+           path:
+             type: string
+             description: "Path is the path to the file containing the values for the Helm parameter"
+     parameters:
+       type: array
+       description: "Parameters is a list of Helm parameters which are passed to the helm template command upon manifest generation"
+       items:
+         type: object
+         description: "HelmParameter is a parameter that's passed to helm template during manifest generation"
+         properties:
+           name:
+             type: string
+             description: "Name is the name of the Helm parameter"
+           forceString:
+             type: boolean
+             description: "ForceString determines whether to tell Helm to interpret booleans and numbers as strings"
+           value:
+             type: string
+             description: "Value is the value for the Helm parameter"
+ kustomize:
+   type: object
+   description: "Kustomize specifies kustomize specific options"
+   properties:
+     version:
+       type: string
+       description: "Version controls which version of Kustomize to use for rendering manifests"
+     labelIncludeTemplates:
+       type: boolean
+       description: "LabelIncludeTemplates specifies whether to apply common labels to resource templates or not"
+     namespace:
+       type: string
+       description: "Namespace sets the namespace that Kustomize adds to all resources"
+     commonAnnotationsEnvsubst:
+       type: boolean
+       description: "CommonAnnotationsEnvsubst specifies whether to apply env variables substitution for annotation values"
+     nameSuffix:
+       type: string
+       description: "NameSuffix is a suffix appended to resources for Kustomize apps"
+     namePrefix:
+       type: string
+       description: "NamePrefix is a prefix appended to resources for Kustomize apps"
+     forceCommonAnnotations:
+       type: boolean
+       description: "ForceCommonAnnotations specifies whether to force applying common annotations to resources for Kustomize apps"
+     forceCommonLabels:
+       type: boolean
+       description: "ForceCommonLabels specifies whether to force applying common labels to resources for Kustomize apps"
+     ignoreMissingComponents:
+       type: boolean
+       description: "IgnoreMissingComponents prevents kustomize from failing when components do not exist locally by not appending them to kustomization file"
+     labelWithoutSelector:
+       type: boolean
+       description: "LabelWithoutSelector specifies whether to apply common labels to resource selectors or not"
+     kubeVersion:
+       type: string
+       description: |
+         KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
+         uses the Kubernetes version of the target cluster.
+     components:
+       type: array
+       description: "Components specifies a list of kustomize components to add to the kustomization before building"
+       items:
+         type: string
+     images:
+       type: array
+       description: "Images is a list of Kustomize image override specifications"
+       items:
+         type: string
+         description: "KustomizeImage represents a Kustomize image definition in the format [old_image_name=]<image_name>:<image_tag>"
+     apiVersions:
+       type: array
+       description: |
+         APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
+         Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
+       items:
+         type: string
+     commonLabels:
+       type: object
+       description: "CommonLabels is a list of additional labels to add to rendered manifests"
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       description: "CommonAnnotations is a list of additional annotations to add to rendered manifests"
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       description: "Patches is a list of Kustomize patches"
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       description: "Replicas is a list of Kustomize Replicas override specifications"
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+             description: "Name of Deployment or StatefulSet"
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             description: "Number of replicas"
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   description: "Plugin specifies config management plugin specific options"
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       description: "Env is a list of environment variable entries"
+       items:
+         type: object
+         description: "EnvEntry represents an entry in the application's environment"
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+             description: "Name is the name of the variable, usually expressed in uppercase"
+           value:
+             type: string
+             description: "Value is the value of the variable"
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+             description: "Name is the name identifying a parameter."
+           string:
+             type: string
+             description: "String_ is the value of a string type parameter."
+           array:
+             type: array
+             description: "Array is the value of an array type parameter."
+             items:
+               type: string
+           map:
+             type: object
+             description: "Map is the value of a map type parameter."
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.status.properties.sourceHydrator.properties.currentOperation.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   description: "Directory specifies path/directory specific options"
+   properties:
+     exclude:
+       type: string
+       description: "Exclude contains a glob pattern to match paths against that should be explicitly excluded from being used during manifest generation"
+     include:
+       type: string
+       description: "Include contains a glob pattern to match paths against that should be explicitly included during manifest generation"
+     jsonnet:
+       type: object
+       description: "Jsonnet holds options specific to Jsonnet"
+       properties:
+         extVars:
+           type: array
+           description: "ExtVars is a list of Jsonnet External Variables"
+           items:
+             type: object
+             description: "JsonnetVar represents a variable to be passed to jsonnet during manifest generation"
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           description: "Additional library search dirs"
+           items:
+             type: string
+         tlas:
+           type: array
+           description: "TLAS is a list of Jsonnet Top-level Arguments"
+           items:
+             type: object
+             description: "JsonnetVar represents a variable to be passed to jsonnet during manifest generation"
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+       description: "Recurse specifies whether to scan a directory recursively for manifests"
+ helm:
+   type: object
+   description: "Helm specifies helm specific options"
+   properties:
+     version:
+       type: string
+       description: "Version is the Helm version to use for templating (\"3\")"
+     passCredentials:
+       type: boolean
+       description: "PassCredentials pass credentials to all domains (Helm's --pass-credentials)"
+     values:
+       type: string
+       description: "Values specifies Helm values to be passed to helm template, typically defined as a block. ValuesObject takes precedence over Values, so use one or the other."
+     ignoreMissingValueFiles:
+       type: boolean
+       description: "IgnoreMissingValueFiles prevents helm template from failing when valueFiles do not exist locally by not appending them to helm template --values"
+     kubeVersion:
+       type: string
+       description: |
+         KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
+         uses the Kubernetes version of the target cluster.
+     namespace:
+       type: string
+       description: "Namespace is an optional namespace to template with. If left empty, defaults to the app's destination namespace."
+     valuesObject:
+       type: object
+       description: "ValuesObject specifies Helm values to be passed to helm template, defined as a map. This takes precedence over Values."
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+       description: "SkipCrds skips custom resource definition installation step (Helm's --skip-crds)"
+     releaseName:
+       type: string
+       description: "ReleaseName is the Helm release name to use. If omitted it will use the application name"
+     skipTests:
+       type: boolean
+       description: "SkipTests skips test manifest installation step (Helm's --skip-tests)."
+     skipSchemaValidation:
+       type: boolean
+       description: "SkipSchemaValidation skips JSON schema validation (Helm's --skip-schema-validation)"
+     valueFiles:
+       type: array
+       description: "ValuesFiles is a list of Helm value files to use when generating a template"
+       items:
+         type: string
+     apiVersions:
+       type: array
+       description: |
+         APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
+         Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
+       items:
+         type: string
+     fileParameters:
+       type: array
+       description: "FileParameters are file parameters to the helm template"
+       items:
+         type: object
+         description: "HelmFileParameter is a file parameter that's passed to helm template during manifest generation"
+         properties:
+           name:
+             type: string
+             description: "Name is the name of the Helm parameter"
+           path:
+             type: string
+             description: "Path is the path to the file containing the values for the Helm parameter"
+     parameters:
+       type: array
+       description: "Parameters is a list of Helm parameters which are passed to the helm template command upon manifest generation"
+       items:
+         type: object
+         description: "HelmParameter is a parameter that's passed to helm template during manifest generation"
+         properties:
+           name:
+             type: string
+             description: "Name is the name of the Helm parameter"
+           forceString:
+             type: boolean
+             description: "ForceString determines whether to tell Helm to interpret booleans and numbers as strings"
+           value:
+             type: string
+             description: "Value is the value for the Helm parameter"
+ kustomize:
+   type: object
+   description: "Kustomize specifies kustomize specific options"
+   properties:
+     version:
+       type: string
+       description: "Version controls which version of Kustomize to use for rendering manifests"
+     labelIncludeTemplates:
+       type: boolean
+       description: "LabelIncludeTemplates specifies whether to apply common labels to resource templates or not"
+     namespace:
+       type: string
+       description: "Namespace sets the namespace that Kustomize adds to all resources"
+     commonAnnotationsEnvsubst:
+       type: boolean
+       description: "CommonAnnotationsEnvsubst specifies whether to apply env variables substitution for annotation values"
+     nameSuffix:
+       type: string
+       description: "NameSuffix is a suffix appended to resources for Kustomize apps"
+     namePrefix:
+       type: string
+       description: "NamePrefix is a prefix appended to resources for Kustomize apps"
+     forceCommonAnnotations:
+       type: boolean
+       description: "ForceCommonAnnotations specifies whether to force applying common annotations to resources for Kustomize apps"
+     forceCommonLabels:
+       type: boolean
+       description: "ForceCommonLabels specifies whether to force applying common labels to resources for Kustomize apps"
+     ignoreMissingComponents:
+       type: boolean
+       description: "IgnoreMissingComponents prevents kustomize from failing when components do not exist locally by not appending them to kustomization file"
+     labelWithoutSelector:
+       type: boolean
+       description: "LabelWithoutSelector specifies whether to apply common labels to resource selectors or not"
+     kubeVersion:
+       type: string
+       description: |
+         KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
+         uses the Kubernetes version of the target cluster.
+     components:
+       type: array
+       description: "Components specifies a list of kustomize components to add to the kustomization before building"
+       items:
+         type: string
+     images:
+       type: array
+       description: "Images is a list of Kustomize image override specifications"
+       items:
+         type: string
+         description: "KustomizeImage represents a Kustomize image definition in the format [old_image_name=]<image_name>:<image_tag>"
+     apiVersions:
+       type: array
+       description: |
+         APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
+         Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
+       items:
+         type: string
+     commonLabels:
+       type: object
+       description: "CommonLabels is a list of additional labels to add to rendered manifests"
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       description: "CommonAnnotations is a list of additional annotations to add to rendered manifests"
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       description: "Patches is a list of Kustomize patches"
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       description: "Replicas is a list of Kustomize Replicas override specifications"
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+             description: "Name of Deployment or StatefulSet"
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             description: "Number of replicas"
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   description: "Plugin specifies config management plugin specific options"
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       description: "Env is a list of environment variable entries"
+       items:
+         type: object
+         description: "EnvEntry represents an entry in the application's environment"
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+             description: "Name is the name of the variable, usually expressed in uppercase"
+           value:
+             type: string
+             description: "Value is the value of the variable"
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+             description: "Name is the name identifying a parameter."
+           string:
+             type: string
+             description: "String_ is the value of a string type parameter."
+           array:
+             type: array
+             description: "Array is the value of an array type parameter."
+             items:
+               type: string
+           map:
+             type: object
+             description: "Map is the value of a map type parameter."
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.status.properties.sourceHydrator.properties.lastSuccessfulOperation.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   description: "Directory specifies path/directory specific options"
+   properties:
+     exclude:
+       type: string
+       description: "Exclude contains a glob pattern to match paths against that should be explicitly excluded from being used during manifest generation"
+     include:
+       type: string
+       description: "Include contains a glob pattern to match paths against that should be explicitly included during manifest generation"
+     jsonnet:
+       type: object
+       description: "Jsonnet holds options specific to Jsonnet"
+       properties:
+         extVars:
+           type: array
+           description: "ExtVars is a list of Jsonnet External Variables"
+           items:
+             type: object
+             description: "JsonnetVar represents a variable to be passed to jsonnet during manifest generation"
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           description: "Additional library search dirs"
+           items:
+             type: string
+         tlas:
+           type: array
+           description: "TLAS is a list of Jsonnet Top-level Arguments"
+           items:
+             type: object
+             description: "JsonnetVar represents a variable to be passed to jsonnet during manifest generation"
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+       description: "Recurse specifies whether to scan a directory recursively for manifests"
+ helm:
+   type: object
+   description: "Helm specifies helm specific options"
+   properties:
+     version:
+       type: string
+       description: "Version is the Helm version to use for templating (\"3\")"
+     passCredentials:
+       type: boolean
+       description: "PassCredentials pass credentials to all domains (Helm's --pass-credentials)"
+     values:
+       type: string
+       description: "Values specifies Helm values to be passed to helm template, typically defined as a block. ValuesObject takes precedence over Values, so use one or the other."
+     ignoreMissingValueFiles:
+       type: boolean
+       description: "IgnoreMissingValueFiles prevents helm template from failing when valueFiles do not exist locally by not appending them to helm template --values"
+     kubeVersion:
+       type: string
+       description: |
+         KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
+         uses the Kubernetes version of the target cluster.
+     namespace:
+       type: string
+       description: "Namespace is an optional namespace to template with. If left empty, defaults to the app's destination namespace."
+     valuesObject:
+       type: object
+       description: "ValuesObject specifies Helm values to be passed to helm template, defined as a map. This takes precedence over Values."
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+       description: "SkipCrds skips custom resource definition installation step (Helm's --skip-crds)"
+     releaseName:
+       type: string
+       description: "ReleaseName is the Helm release name to use. If omitted it will use the application name"
+     skipTests:
+       type: boolean
+       description: "SkipTests skips test manifest installation step (Helm's --skip-tests)."
+     skipSchemaValidation:
+       type: boolean
+       description: "SkipSchemaValidation skips JSON schema validation (Helm's --skip-schema-validation)"
+     valueFiles:
+       type: array
+       description: "ValuesFiles is a list of Helm value files to use when generating a template"
+       items:
+         type: string
+     apiVersions:
+       type: array
+       description: |
+         APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
+         Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
+       items:
+         type: string
+     fileParameters:
+       type: array
+       description: "FileParameters are file parameters to the helm template"
+       items:
+         type: object
+         description: "HelmFileParameter is a file parameter that's passed to helm template during manifest generation"
+         properties:
+           name:
+             type: string
+             description: "Name is the name of the Helm parameter"
+           path:
+             type: string
+             description: "Path is the path to the file containing the values for the Helm parameter"
+     parameters:
+       type: array
+       description: "Parameters is a list of Helm parameters which are passed to the helm template command upon manifest generation"
+       items:
+         type: object
+         description: "HelmParameter is a parameter that's passed to helm template during manifest generation"
+         properties:
+           name:
+             type: string
+             description: "Name is the name of the Helm parameter"
+           forceString:
+             type: boolean
+             description: "ForceString determines whether to tell Helm to interpret booleans and numbers as strings"
+           value:
+             type: string
+             description: "Value is the value for the Helm parameter"
+ kustomize:
+   type: object
+   description: "Kustomize specifies kustomize specific options"
+   properties:
+     version:
+       type: string
+       description: "Version controls which version of Kustomize to use for rendering manifests"
+     labelIncludeTemplates:
+       type: boolean
+       description: "LabelIncludeTemplates specifies whether to apply common labels to resource templates or not"
+     namespace:
+       type: string
+       description: "Namespace sets the namespace that Kustomize adds to all resources"
+     commonAnnotationsEnvsubst:
+       type: boolean
+       description: "CommonAnnotationsEnvsubst specifies whether to apply env variables substitution for annotation values"
+     nameSuffix:
+       type: string
+       description: "NameSuffix is a suffix appended to resources for Kustomize apps"
+     namePrefix:
+       type: string
+       description: "NamePrefix is a prefix appended to resources for Kustomize apps"
+     forceCommonAnnotations:
+       type: boolean
+       description: "ForceCommonAnnotations specifies whether to force applying common annotations to resources for Kustomize apps"
+     forceCommonLabels:
+       type: boolean
+       description: "ForceCommonLabels specifies whether to force applying common labels to resources for Kustomize apps"
+     ignoreMissingComponents:
+       type: boolean
+       description: "IgnoreMissingComponents prevents kustomize from failing when components do not exist locally by not appending them to kustomization file"
+     labelWithoutSelector:
+       type: boolean
+       description: "LabelWithoutSelector specifies whether to apply common labels to resource selectors or not"
+     kubeVersion:
+       type: string
+       description: |
+         KubeVersion specifies the Kubernetes API version to pass to Helm when templating manifests. By default, Argo CD
+         uses the Kubernetes version of the target cluster.
+     components:
+       type: array
+       description: "Components specifies a list of kustomize components to add to the kustomization before building"
+       items:
+         type: string
+     images:
+       type: array
+       description: "Images is a list of Kustomize image override specifications"
+       items:
+         type: string
+         description: "KustomizeImage represents a Kustomize image definition in the format [old_image_name=]<image_name>:<image_tag>"
+     apiVersions:
+       type: array
+       description: |
+         APIVersions specifies the Kubernetes resource API versions to pass to Helm when templating manifests. By default,
+         Argo CD uses the API versions of the target cluster. The format is [group/]version/kind.
+       items:
+         type: string
+     commonLabels:
+       type: object
+       description: "CommonLabels is a list of additional labels to add to rendered manifests"
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       description: "CommonAnnotations is a list of additional annotations to add to rendered manifests"
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       description: "Patches is a list of Kustomize patches"
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       description: "Replicas is a list of Kustomize Replicas override specifications"
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+             description: "Name of Deployment or StatefulSet"
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             description: "Number of replicas"
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   description: "Plugin specifies config management plugin specific options"
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       description: "Env is a list of environment variable entries"
+       items:
+         type: object
+         description: "EnvEntry represents an entry in the application's environment"
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+             description: "Name is the name of the variable, usually expressed in uppercase"
+           value:
+             type: string
+             description: "Value is the value of the variable"
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+             description: "Name is the name identifying a parameter."
+           string:
+             type: string
+             description: "String_ is the value of a string type parameter."
+           array:
+             type: array
+             description: "Array is the value of an array type parameter."
+             items:
+               type: string
+           map:
+             type: object
+             description: "Map is the value of a map type parameter."
+             additionalProperties:
+               type: string


@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.clusterDecisionResource.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.clusters.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.git.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.list.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.matrix.properties.generators.items.properties.clusterDecisionResource.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.matrix.properties.generators.items.properties.clusters.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.matrix.properties.generators.items.properties.git.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.matrix.properties.generators.items.properties.list.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.matrix.properties.generators.items.properties.plugin.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.matrix.properties.generators.items.properties.pullRequest.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.matrix.properties.generators.items.properties.scmProvider.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.matrix.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.merge.properties.generators.items.properties.clusterDecisionResource.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.merge.properties.generators.items.properties.clusters.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.merge.properties.generators.items.properties.git.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.merge.properties.generators.items.properties.list.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.merge.properties.generators.items.properties.plugin.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.merge.properties.generators.items.properties.pullRequest.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.merge.properties.generators.items.properties.scmProvider.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.merge.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.plugin.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.pullRequest.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.generators.items.properties.scmProvider.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.template.properties.spec.properties.sourceHydrator.properties.drySource.properties @@
! + four map entries added:
+ directory:
+   type: object
+   properties:
+     exclude:
+       type: string
+     include:
+       type: string
+     jsonnet:
+       type: object
+       properties:
+         extVars:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+         libs:
+           type: array
+           items:
+             type: string
+         tlas:
+           type: array
+           items:
+             type: object
+             required:
+             - name
+             - value
+             properties:
+               name:
+                 type: string
+               code:
+                 type: boolean
+               value:
+                 type: string
+     recurse:
+       type: boolean
+ helm:
+   type: object
+   properties:
+     version:
+       type: string
+     passCredentials:
+       type: boolean
+     values:
+       type: string
+     ignoreMissingValueFiles:
+       type: boolean
+     kubeVersion:
+       type: string
+     namespace:
+       type: string
+     valuesObject:
+       type: object
+       x-kubernetes-preserve-unknown-fields: true
+     skipCrds:
+       type: boolean
+     releaseName:
+       type: string
+     skipTests:
+       type: boolean
+     skipSchemaValidation:
+       type: boolean
+     valueFiles:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     fileParameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           path:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           forceString:
+             type: boolean
+           value:
+             type: string
+ kustomize:
+   type: object
+   properties:
+     version:
+       type: string
+     labelIncludeTemplates:
+       type: boolean
+     namespace:
+       type: string
+     commonAnnotationsEnvsubst:
+       type: boolean
+     nameSuffix:
+       type: string
+     namePrefix:
+       type: string
+     forceCommonAnnotations:
+       type: boolean
+     forceCommonLabels:
+       type: boolean
+     ignoreMissingComponents:
+       type: boolean
+     labelWithoutSelector:
+       type: boolean
+     kubeVersion:
+       type: string
+     components:
+       type: array
+       items:
+         type: string
+     images:
+       type: array
+       items:
+         type: string
+     apiVersions:
+       type: array
+       items:
+         type: string
+     commonLabels:
+       type: object
+       additionalProperties:
+         type: string
+     commonAnnotations:
+       type: object
+       additionalProperties:
+         type: string
+     patches:
+       type: array
+       items:
+         type: object
+         properties:
+           options:
+             type: object
+             additionalProperties:
+               type: boolean
+           patch:
+             type: string
+           path:
+             type: string
+           target:
+             type: object
+             properties:
+               name:
+                 type: string
+               version:
+                 type: string
+               annotationSelector:
+                 type: string
+               group:
+                 type: string
+               kind:
+                 type: string
+               labelSelector:
+                 type: string
+               namespace:
+                 type: string
+     replicas:
+       type: array
+       items:
+         type: object
+         required:
+         - count
+         - name
+         properties:
+           name:
+             type: string
+           count:
+             anyOf:
+             - type: integer
+             - type: string
+             x-kubernetes-int-or-string: true
+ plugin:
+   type: object
+   properties:
+     name:
+       type: string
+     env:
+       type: array
+       items:
+         type: object
+         required:
+         - name
+         - value
+         properties:
+           name:
+             type: string
+           value:
+             type: string
+     parameters:
+       type: array
+       items:
+         type: object
+         properties:
+           name:
+             type: string
+           string:
+             type: string
+           array:
+             type: array
+             items:
+               type: string
+           map:
+             type: object
+             additionalProperties:
+               type: string


@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.clusterResourceBlacklist.items.description @@
! ± value change in multiline text (one insert, one deletion)
- GroupKind specifies a Group and a Kind, but does not force a version.  This is useful for identifying
- concepts during lookup stages without having partially valid types
+ ClusterResourceRestrictionItem is a cluster resource that is restricted by the project's whitelist or blacklist

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.clusterResourceBlacklist.items.properties @@
! + one map entry added:
+ name:
+   type: string
+   description: |
+     Name is the name of the restricted resource. Glob patterns using Go's filepath.Match syntax are supported.
+     Unlike the group and kind fields, if no name is specified, all resources of the specified group/kind are matched.

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.clusterResourceWhitelist.items.description @@
! ± value change in multiline text (one insert, one deletion)
- GroupKind specifies a Group and a Kind, but does not force a version.  This is useful for identifying
- concepts during lookup stages without having partially valid types
+ ClusterResourceRestrictionItem is a cluster resource that is restricted by the project's whitelist or blacklist

@@ spec.versions.v1alpha1.schema.openAPIV3Schema.properties.spec.properties.clusterResourceWhitelist.items.properties @@
! + one map entry added:
+ name:
+   type: string
+   description: |
+     Name is the name of the restricted resource. Glob patterns using Go's filepath.Match syntax are supported.
+     Unlike the group and kind fields, if no name is specified, all resources of the specified group/kind are matched.


@@ spec.template.spec.containers.redis.image @@
! ± value change
- ecr-public.aws.com/docker/library/redis:8.2.2-alpine
+ ecr-public.aws.com/docker/library/redis:8.2.3-alpine




@@ spec.template.spec.containers.secret-init.image @@
! ± value change
- quay.io/argoproj/argocd:v3.2.6
+ quay.io/argoproj/argocd:v3.3.0





@@ data.core.yaml @@
! ± value change in multiline text (one insert, one deletion)
  adminApps:
  - deps:
    - prometheus
    ingress:
  
  [250 lines unchanged)]
  
      repo: https://github.com/prometheus/alertmanager
      title: Alertmanager
    argocd:
      about: Argo CD is a declarative, GitOps continuous delivery tool for Kubernetes.
-     appVersion: 3.2.6
+     appVersion: 3.3.0
      dependencies: None
      integration: Argo CD is configured by App Platform to use the SSO provided by
        keycloak, and maps App Platform groups to Argo CD roles. The otomi-admin role
        is made super admin within Argo CD. The team-admin role has access to Argo CD
  
  [467 lines unchanged)]
  
      svc: tekton-dashboard
      type: public
    name: tekton
    ownHost: true



Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

chart-deps Auto generated helm chart dependencies

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant