Skip to content

Commit

Permalink
Fix poetry install errors (#49)
Browse files Browse the repository at this point in the history
* Fix poetry install errors

* Bump release version

* Update dependencies
  • Loading branch information
teddyphreak authored Aug 14, 2023
1 parent 590c16b commit 4e74198
Show file tree
Hide file tree
Showing 7 changed files with 611 additions and 644 deletions.
2 changes: 2 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[flake8]
max-line-length = 120
5 changes: 4 additions & 1 deletion .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,13 @@ jobs:
with:
python-version: '3.x'

- name: install package prerequisites
run: sudo apt-get install -y postgresql-common libpq-dev

- name: install poetry
run: pip3 install poetry

- name: install pips
- name: install dependencies
run: poetry install

- name: install make
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ kubectl:
@KUBECONFIG=$(EPHEMERAL_DIR)/config kubectl $(filter-out $@,$(MAKECMDGOALS))

poetry:
@poetry install --only dev --no-root
@poetry install --no-root

pagila:
@PGPASSWORD=$(PAGILA_PASS) psql -h $(PAGILA_HOST) -U $(PAGILA_USER) -d $(PAGILA_DB) $(filter-out $@,$(MAKECMDGOALS))
Expand Down
4 changes: 2 additions & 2 deletions charts/dataplane/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.19
version: 0.1.20

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 0.1.19
appVersion: 0.1.20
6 changes: 3 additions & 3 deletions charts/dataplane/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ util:
image:
repository: nephelaiio/dataplane-util
pullPolicy: IfNotPresent
tag: dataplane-0.1.19
tag: dataplane-0.1.20
resources: {}

cdc:
Expand Down Expand Up @@ -49,7 +49,7 @@ strimzi:
connect:
image:
repository: nephelaiio/dataplane-connect
tag: dataplane-0.1.19
tag: dataplane-0.1.20
replicas: 1
config:
group.id: connect-cluster
Expand Down Expand Up @@ -104,7 +104,7 @@ metabase:
image:
repository: nephelaiio/dataplane-util
pullPolicy: IfNotPresent
tag: dataplane-0.1.19
tag: dataplane-0.1.20
securityContext: {}

image:
Expand Down
Loading

0 comments on commit 4e74198

Please sign in to comment.