From e3e71f01bf84b8d7a4af70356be255c195e0f48f Mon Sep 17 00:00:00 2001 From: Achilleas Koutsou Date: Tue, 29 Nov 2022 14:59:22 +0100 Subject: [PATCH] cmd/gen-manifests: add package-sets to repo config Was missing the package sets key from the repo config struct, which means that the option was being ignored and wasn't being serialised into the test manifest either. --- cmd/gen-manifests/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/gen-manifests/main.go b/cmd/gen-manifests/main.go index 8f92cd9b1..2df3dae00 100644 --- a/cmd/gen-manifests/main.go +++ b/cmd/gen-manifests/main.go @@ -46,6 +46,7 @@ type repository struct { RHSM bool `json:"rhsm,omitempty"` MetadataExpire string `json:"metadata_expire,omitempty"` ImageTypeTags []string `json:"image_type_tags,omitempty"` + PackageSets []string `json:"package-sets,omitempty"` } type ostreeOptions struct {