Skip to content

Commit 8b9fcd0

Browse files
authored
Fix: J2 issue in gitlab CI/CD - Attempt2 (#905)
* wip * Add csi-s3 and have portainer use it * Change request @Hrytsuk 1GB max portainer volume size * Fix wrong filename * Fix registry local deploy * Traefik local deployment fixes * Fix local deployment graylog provisioning * Fix j2, double venv * Add python version * Idempotency for admin-panels * Remove faulty command * Local deploy fixes * Clean Up Local Minio * Remove unused code * Update Minio * minorfix --------- Co-authored-by: Dustin Kaiser <[email protected]>
1 parent 8ea92d7 commit 8b9fcd0

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,14 @@ down-maintenance: ## Stop the maintenance mode
7171
fi \
7272
,)
7373

74+
.PHONY: venv
75+
venv: .venv ## Creates a python virtual environment with dev tools (pip, pylint, ...)
76+
.venv:
77+
@python3 -m venv .venv
78+
@.venv/bin/pip3 install --upgrade pip wheel setuptools
79+
@.venv/bin/pip3 install typer
80+
@echo "To activate the venv, execute 'source .venv/bin/activate'"
81+
7482
# Misc: info & clean
7583
.PHONY: info info-vars info-local
7684
info: ## Displays some important info

0 commit comments

Comments
 (0)