Skip to content

Commit

Permalink
builder: rename gpg_key field to gpgkey for repos
Browse files Browse the repository at this point in the history
We decided to do this late change to Cloud API in order to keep the field name
same for all the APIs:

osbuild/osbuild-composer#2479

I strongly believe that gpgkeys are not used in any of the current koji-osbuild
deployments yet so this change should be safe.
  • Loading branch information
ondrejbudai committed Mar 25, 2022
1 parent 11b618b commit 069ecdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/builder/osbuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def as_dict(self, arch: str = ""):
"rhsm": self.rhsm
}
if self.gpgkey:
res["gpg_key"] = self.gpgkey
res["gpgkey"] = self.gpgkey
res["check_gpg"] = True
if self.package_sets:
res["package_sets"] = self.package_sets
Expand Down

0 comments on commit 069ecdc

Please sign in to comment.