Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Commit

Permalink
update valid-subscription in csv
Browse files Browse the repository at this point in the history
  • Loading branch information
Ximinhan committed Sep 8, 2022
1 parent b0bc443 commit 5fadc9f
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions doozerlib/olm/bundle.py
Expand Up @@ -254,7 +254,14 @@ def replace_image_references_by_sha_on_bundle_manifests(self):
contents = self.find_and_replace_image_references_by_sha(f.read())
f.seek(0)
f.truncate()
f.write(contents)
if "clusterserviceversion.yaml" in file:
if not self.valid_subscription_label:
raise ValueError("missing valid-subscription-label in operator config")
yml_content = yaml.safe_load(contents)
yml_content['metadata']['annotations']['operators.openshift.io/valid-subscription'] = self.valid_subscription_label
f.write(yaml.dump(yml_content))
else:
f.write(contents)

def generate_bundle_annotations(self):
"""Create an annotations YAML file for the bundle, using info extracted from operator's
Expand Down Expand Up @@ -570,17 +577,13 @@ def operator_framework_tags(self):
if self.runtime.group_config.operator_channel_stable == 'default':
override_default = stable_channel

if not self.valid_subscription_label:
raise ValueError("missing valid-subscription-label in operator config")

return {
'operators.operatorframework.io.bundle.channel.default.v1': override_default,
'operators.operatorframework.io.bundle.channels.v1': override_channel,
'operators.operatorframework.io.bundle.manifests.v1': 'manifests/',
'operators.operatorframework.io.bundle.mediatype.v1': 'registry+v1',
'operators.operatorframework.io.bundle.metadata.v1': 'metadata/',
'operators.operatorframework.io.bundle.package.v1': self.package,
'operators.openshift.io/valid-subscription': self.valid_subscription_label,
}

@property
Expand Down

0 comments on commit 5fadc9f

Please sign in to comment.