Skip to content

Commit

Permalink
Update python3.8 -> python3.9 and kubernetes 1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
angelbarrera92 committed Apr 26, 2021
1 parent dbd152a commit c9fcef4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
SHELL:=/bin/bash

PROJECTNAME=$(shell basename "$(PWD)")
CLUSTER_VERSION="1.18.8"
CLUSTER_VERSION="1.20.2"
KIND_CLUSTER_NAME="k8spin-operator"
PYTEST_PARAMS=""
TAG_VERSION="v1.1.0"
Expand Down Expand Up @@ -49,7 +49,7 @@ update: load

## test-e2e: End-to-End tests. Use `PYTEST_ADDOPTS=--keep-cluster make test-e2e` to keep cluster --workers auto could be added when we want multiple workers installing the package pytest-parallel
test-e2e: build
@virtualenv -p python3.8 .venv-test
@virtualenv -p python3.9 .venv-test
source .venv-test/bin/activate; \
pip install -r test/requirements.txt; \
pip install -e k8spin_common; \
Expand Down Expand Up @@ -101,7 +101,7 @@ lint:

## helm_chart_docs: Creates the Helm Chart Docs
helm_chart_docs:
@virtualenv -p python3.8 .venv-chart-docs
@virtualenv -p python3.9 .venv-chart-docs
source .venv-chart-docs/bin/activate; \
pip install frigate; \
frigate gen deployments/helm/k8spin-operator > deployments/helm/k8spin-operator/README.md;
Expand Down
2 changes: 1 addition & 1 deletion k8spin_common/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ help: Makefile

## install: Install the project
install:
@virtualenv -p python3.8 .venv
@virtualenv -p python3.9 .venv
source .venv/bin/activate; \
pip install -r requirements-dev.txt; \

Expand Down
2 changes: 1 addition & 1 deletion k8spin_operator/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ help: Makefile

## install: Install the project
install:
@virtualenv -p python3.8 .venv
@virtualenv -p python3.9 .venv
source .venv/bin/activate; \
pip install -r requirements-dev.txt; \
pip install -e ../k8spin_common; \
Expand Down
2 changes: 1 addition & 1 deletion k8spin_webhook/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ help: Makefile

## install: Install the project
install:
@virtualenv -p python3.8 .venv
@virtualenv -p python3.9 .venv
source .venv/bin/activate; \
pip install -r requirements-dev.txt; \
pip install -e ../k8spin_common; \
Expand Down

0 comments on commit c9fcef4

Please sign in to comment.