You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
resource: platform_gitops_applicationset: Fix list generator serialization. Elements are now properly included (base64-encoded) in create/update requests instead of sending an empty list.
3
+
Added missing fields for helm source in schema used for applicationset, this prevented creating applicaitonset with helm source configured.
4
+
Fixed issue with perpetual diff for cluster generator.
5
+
Fixed issue with list generator not being properly propageted to appset k8s manifest ( element array wasnt actually passed )
6
+
Fixed issue with files and directories field for git generator, similar it wasn propagated to appsets k8s manifest.
Copy file name to clipboardExpand all lines: docs/resources/platform_gitops_applications.md
+18-17Lines changed: 18 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -141,6 +141,7 @@ Optional:
141
141
142
142
-`destination` (Block List) Information about the GitOps application's destination. (see [below for nested schema](#nestedblock--application--spec--destination))
143
143
-`project` (String) The ArgoCD project name corresponding to this GitOps application. Value must match mappings of ArgoCD projects to harness project.
144
+
-`revision_history_limit` (String) Revision history limit for the application.
144
145
-`source` (Block List, Max: 1) Contains all information about the source of the GitOps application. (see [below for nested schema](#nestedblock--application--spec--source))
145
146
-`sources` (Block List) List of sources for the GitOps application. Multi Source support (see [below for nested schema](#nestedblock--application--spec--sources))
146
147
-`sync_policy` (Block List, Max: 1) Controls when a sync will be performed in response to updates in git. (see [below for nested schema](#nestedblock--application--spec--sync_policy))
@@ -316,9 +317,10 @@ Optional:
316
317
317
318
-`chart` (String) Helm chart name, and must be specified for the GitOps applications sourced from a helm repo.
318
319
-`directory` (Block List) Options for applications of type plain YAML or Jsonnet. (see [below for nested schema](#nestedblock--application--spec--sources--directory))
319
-
-`helm` (Block List) Holds helm specific options. (see [below for nested schema](#nestedblock--application--spec--sources--helm))
320
+
-`helm` (Block List, Max: 1) Helm specific options. (see [below for nested schema](#nestedblock--application--spec--sources--helm))
320
321
-`ksonnet` (Block List) Ksonnet specific options. (see [below for nested schema](#nestedblock--application--spec--sources--ksonnet))
321
322
-`kustomize` (Block List) Options specific to a GitOps application source specific to Kustomize. (see [below for nested schema](#nestedblock--application--spec--sources--kustomize))
323
+
-`name` (String) Name is used to refer to a source and is displayed in the UI. It is used in multi-source Applications.
322
324
-`path` (String) Directory path within the git repository, and is only valid for the GitOps applications sourced from git.
323
325
-`plugin` (Block List) Options specific to config management plugins. (see [below for nested schema](#nestedblock--application--spec--sources--plugin))
324
326
-`ref` (String) Reference name to be used in other source spec, used for multi-source applications.
@@ -369,34 +371,35 @@ Optional:
369
371
370
372
Optional:
371
373
372
-
-`file_parameters` (Block List) File parameters to the helm template. (see [below for nested schema](#nestedblock--application--spec--sources--helm--file_parameters))
373
-
-`ignore_missing_value_files` (Boolean) Prevents 'helm template' from failing when value_files do not exist locally.
374
-
-`parameters` (Block List) List of helm parameters which are passed to the helm template command upon manifest generation. (see [below for nested schema](#nestedblock--application--spec--sources--helm--parameters))
375
-
-`pass_credentials` (Boolean) Indicates if to pass credentials to all domains (helm's --pass-credentials)
376
-
-`release_name` (String) Helm release name to use. If omitted it will use the GitOps application name.
377
-
-`skip_crds` (Boolean) Indicates if to skip CRDs during helm template. Corresponds to helm --skip-crds
374
+
-`file_parameters` (Block List) File parameters for the helm template. (see [below for nested schema](#nestedblock--application--spec--sources--helm--file_parameters))
375
+
-`ignore_missing_value_files` (Boolean) Prevents 'helm template' from failing when `value_files` do not exist locally by not appending them to 'helm template --values'.
376
+
-`parameters` (Block List) Helm parameters which are passed to the helm template command upon manifest generation. (see [below for nested schema](#nestedblock--application--spec--sources--helm--parameters))
377
+
-`pass_credentials` (Boolean) If true then adds '--pass-credentials' to Helm commands to passcredentials to all domains.
378
+
-`release_name` (String) Helm release name. If omitted it will use the application name.
0 commit comments