diff --git a/stx/lib/stx/stx_control.py b/stx/lib/stx/stx_control.py index e302b71e..c580e150 100644 --- a/stx/lib/stx/stx_control.py +++ b/stx/lib/stx/stx_control.py @@ -64,6 +64,8 @@ class HandleControlTask: def finish_configure(self): '''Before starting, we need to finish the setup''' + max_cpus = os.environ['MINIKUBECPUS'] + projectname = self.stxconfig.getConfig('project', 'name') builder_uid = self.stxconfig.getConfig('builder', 'uid') builder_myuname = self.stxconfig.getConfig('builder', 'myuname') @@ -157,6 +159,7 @@ stx-pkgbuilder/configmap/') line = line.replace("@HOSTUSERNAME@", hostusername) line = line.replace("@CENGNURL@", cengnurl) line = line.replace("@OSTREE_OSNAME@", ostree_osname) + line = line.replace("@MAX_CPUS@", max_cpus) if sourceslist: line = line.replace("@fetch@", "true") line = line.replace("@SOURCESLIST@", sourceslist) diff --git a/stx/stx-build-tools-chart/stx-builder/configmap/localrc.sample b/stx/stx-build-tools-chart/stx-builder/configmap/localrc.sample index a4d63f1c..ac63742b 100644 --- a/stx/stx-build-tools-chart/stx-builder/configmap/localrc.sample +++ b/stx/stx-build-tools-chart/stx-builder/configmap/localrc.sample @@ -51,3 +51,5 @@ export REPOMGR_DEPLOY_URL=http://@PROJECT@-stx-repomgr:80/ export BUILDER_URL=http://@PROJECT@-stx-pkgbuilder:8080/pkgbuilder/ export OSTREE_OSNAME=@OSTREE_OSNAME@ + +export MAX_CPUS=@MAX_CPUS@