From 3b3991dac6bff44755dc2183e5d03fe7f9df336a Mon Sep 17 00:00:00 2001 From: kirangodishala Date: Thu, 19 Sep 2024 23:24:41 +0530 Subject: [PATCH] doc(changelog): Add changelog for https://github.com/spinnaker/orca/pull/4781. --- .../releases/next-release-preview/index.md | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/content/en/docs/releases/next-release-preview/index.md b/content/en/docs/releases/next-release-preview/index.md index 1a24913e..67f7e56c 100644 --- a/content/en/docs/releases/next-release-preview/index.md +++ b/content/en/docs/releases/next-release-preview/index.md @@ -39,6 +39,37 @@ controller: #### Orca Updates Orca's SavePipelineTask to support bulk saves using the updated functionality in the front50 bulk save endpoint. +With https://github.com/spinnaker/orca/pull/4781, keys from the stage context's outputs section can now be removed (there by reducing the context size significantly). +At present the following tasks support this feature: +* PromoteManifestKatoOutputsTask +* WaitOnJobCompletionTask +* ResolveDeploySourceManifestTask +* BindProducedArtifactsTask + +Here is a sample configuration to exclude some of the keys from the above tasks: +```yaml +tasks: + clouddriver: + promoteManifestKatoOutputsTask: + excludeKeysFromOutputs: + - outputs.createdArtifacts + - outputs.manifests + - outputs.boundArtifacts + waitOnJobCompletionTask: + excludeKeysFromOutputs: + - jobStatus + - completionDetails + resolveDeploySourceManifestTask: + excludeKeysFromOutputs: + - manifests + - requiredArtifacts + - optionalArtifacts + core: + bindProducedArtifactsTask: + excludeKeysFromOutputs: + - artifacts +``` + #### Front50 Batch update operation in front50 is now atomic. Deserialization issues are addressed.