We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f371e9b + 3239812 commit 0443ceeCopy full SHA for 0443cee
kolla/image/build.py
@@ -681,6 +681,12 @@ def __init__(self, conf):
681
"due to lack of packages for other architectures.")
682
sys.exit(1)
683
684
+ if self.install_type == 'binary':
685
+ LOG.info("Building binary images is now deprecated. Consider "
686
+ "switching to source ones.")
687
+ LOG.info("Build will continue in 5 seconds.")
688
+ time.sleep(5)
689
+
690
self.image_prefix = self.base + '-' + self.install_type + '-'
691
if self.conf.infra_rename:
692
self.infra_image_prefix = self.base + '-infra-'
0 commit comments