Fixed issue with missing variables affecting deployments on Podman (#338)

This commit is contained in:
lasztoth 2022-10-15 03:06:51 +02:00 committed by GitHub
parent 97eb17784d
commit 5ccacd8a16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -95,10 +95,12 @@ class BaseCrawlManager(ABC):
# Create Config Map
await self._create_config_map(
crawlconfig,
USER_ID=str(crawlconfig.userid),
STORE_PATH=storage_path,
STORE_FILENAME=out_filename,
STORAGE_NAME=storage_name,
USER_ID=str(crawlconfig.userid),
ARCHIVE_ID=str(crawlconfig.aid),
CRAWL_CONFIG_ID=str(crawlconfig.id),
PROFILE_FILENAME=profile_filename,
)