Skip to content

Commit

Permalink
Update default allowedSourceRanges for zalando DBS (#24)
Browse files Browse the repository at this point in the history
* Update default allowedSourceRanges for zalando DBS

* Add package update workflow tasks
  • Loading branch information
teddyphreak authored Feb 28, 2023
1 parent 45dfe35 commit 788b15e
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 10 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ jobs:

steps:

- name: update package cache
run: sudo apt-get update

- name: set up quemu
uses: docker/setup-qemu-action@v2

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
runs-on: ubuntu-latest
steps:

- name: update package cache
run: sudo apt-get update

- name: check out the codebase
uses: actions/checkout@v2

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:

steps:

- name: update package cache
run: sudo apt-get update

- name: check out the codebase.
uses: actions/checkout@v2

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
runs-on: ubuntu-latest
steps:

- name: update package cache
run: sudo apt-get update

- name: checkout
uses: actions/checkout@v1
with:
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.4
version: 0.1.5

# 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.4
appVersion: 0.1.5
12 changes: 5 additions & 7 deletions charts/dataplane/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ util:
image:
repository: nephelaiio/dataplane-util
pullPolicy: IfNotPresent
tag: 0.1.4
tag: 0.1.5
resources: {}

cdc:
Expand Down Expand Up @@ -39,7 +39,7 @@ strimzi:
connect:
image:
repository: nephelaiio/dataplane-connect
tag: 0.1.4
tag: 0.1.5
replicas: 1
config:
group.id: connect-cluster
Expand Down Expand Up @@ -67,8 +67,7 @@ zalando:
instances: 2
volume: 10Gi
serviceAnnotations: {}
allowedSourceRanges:
- 127.0.0.1
allowedSourceRanges: 0.0.0.0/0

warehouse:
name: warehouse
Expand All @@ -77,8 +76,7 @@ zalando:
instances: 2
volume: 10Gi
serviceAnnotations: {}
allowedSourceRanges:
- 127.0.0.1
allowedSourceRanges: 0.0.0.0/0

metabase:

Expand All @@ -96,7 +94,7 @@ metabase:
image:
repository: nephelaiio/dataplane-util
pullPolicy: IfNotPresent
tag: 0.1.4
tag: 0.1.5
securityContext: {}

image:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dataplane"
version = "0.1.4"
version = "0.1.5"
description = ""
authors = ["Teodoro Cook <[email protected]>"]

Expand Down

0 comments on commit 788b15e

Please sign in to comment.