From 5de9ed95d6584e16c36527fc4b3c76a148d0f6e7 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 | 24 +++++++++++++++++++ 1 file changed, 24 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..180d290e 100644 --- a/content/en/docs/releases/next-release-preview/index.md +++ b/content/en/docs/releases/next-release-preview/index.md @@ -39,6 +39,30 @@ controller: #### Orca Updates Orca's SavePipelineTask to support bulk saves using the updated functionality in the front50 bulk save endpoint. +Some of the keys from the stage context's outputs section can now be removed (there by reducing the context size significantly) using the below configuration: +```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.