From 8554570864e3b578e9eb07f6196f93262ae58e87 Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Wed, 27 Mar 2024 14:30:23 +0100 Subject: [PATCH] Make bundle.deployment optional in the bundle schema --- bundle/config/bundle.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/config/bundle.go b/bundle/config/bundle.go index 21278151f91..6f991e56282 100644 --- a/bundle/config/bundle.go +++ b/bundle/config/bundle.go @@ -42,5 +42,5 @@ type Bundle struct { ComputeID string `json:"compute_id,omitempty"` // Deployment section specifies deployment related configuration for bundle - Deployment Deployment `json:"deployment"` + Deployment Deployment `json:"deployment,omitempty"` }