Skip to content

Commit 882302b

Browse files
authored
chore: update examples (numaproj#132)
Signed-off-by: a3hadi <[email protected]>
1 parent 897ebc4 commit 882302b

File tree

14 files changed

+18
-19
lines changed

14 files changed

+18
-19
lines changed

examples/map/flatmap/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.PHONY: image
22
image:
3-
docker build -t "quay.io/numaio/numaflow-python/map-flatmap:v0.5.0" .
3+
docker build -t "quay.io/numaio/numaflow-python/map-flatmap:v0.6.0" .
44
# Github CI runner uses platform linux/amd64. If your local environment don't, the image built by command above might not work
55
# under the CI E2E test environment.
66
# To build an image that supports multiple platforms(linux/amd64,linux/arm64) and push to quay.io, use the following command

examples/map/flatmap/pipeline.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
- name: flatmap
1616
udf:
1717
container:
18-
image: "quay.io/numaio/numaflow-python/map-flatmap:v0.7.0"
18+
image: "quay.io/numaio/numaflow-python/map-flatmap:v0.6.0"
1919
env:
2020
- name: PYTHONDEBUG
2121
value: "true"

examples/map/flatmap/pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@ authors = ["Numaflow developers"]
66

77
[tool.poetry.dependencies]
88
python = "~3.10"
9-
pynumaflow = "~0.7.0"
10-
9+
pynumaflow = { git = "https://github.com/numaproj/numaflow-python.git", rev = "897ebc49ca3db21bd9eeb91b09c9607e910d6776" }
1110

1211
[tool.poetry.dev-dependencies]
1312

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.PHONY: image
22
image:
3-
docker build -t "quay.io/numaio/numaflow-python/map-flatmap-stream:v0.6.1" .
3+
docker build -t "quay.io/numaio/numaflow-python/map-flatmap-stream:v0.6.0" .
44
# Github CI runner uses platform linux/amd64. If your local environment don't, the image built by command above might not work
55
# under the CI E2E test environment.
66
# To build an image that supports multiple platforms(linux/amd64,linux/arm64) and push to quay.io, use the following command
77
# docker buildx build -t "quay.io/numaio/numaflow-python/map-flatmap-stream:latest" --platform linux/amd64,linux/arm64 . --push
8-
# If command failed, refer to https://billglover.me/notes/build-multi-arch-docker-images/ to fix
8+
# If command failed, refer to https://billglover.me/notes/build-multi-arch-docker-images/ to fix

examples/mapstream/flatmap_stream/pipeline.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ spec:
2020
readBatchSize: 1
2121
udf:
2222
container:
23-
image: "quay.io/numaio/numaflow-python/map-flatmap-stream:v0.6.1"
23+
image: "quay.io/numaio/numaflow-python/map-flatmap-stream:v0.6.0"
2424
imagePullPolicy: Always
2525
env:
2626
- name: PYTHONDEBUG

examples/mapstream/flatmap_stream/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Numaflow developers"]
66

77
[tool.poetry.dependencies]
88
python = "~3.10"
9-
pynumaflow = "~0.7.0"
9+
pynumaflow = { git = "https://github.com/numaproj/numaflow-python.git", rev = "897ebc49ca3db21bd9eeb91b09c9607e910d6776" }
1010

1111
[tool.poetry.dev-dependencies]
1212

examples/sink/log/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.PHONY: image
22
image:
3-
docker build -t "quay.io/numaio/numaflow-python/sink-log:v0.7.0" .
3+
docker build -t "quay.io/numaio/numaflow-python/sink-log:v0.6.0" .
44
# Github CI runner uses platform linux/amd64. If your local environment don't, the image built by command above might not work
55
# under the CI E2E test environment.
66
# To build an image that supports multiple platforms(linux/amd64,linux/arm64) and push to quay.io, use the following command
77
# docker buildx build -t "quay.io/numaio/numaflow-python/sink-log:latest" --platform linux/amd64,linux/arm64 . --push
8-
# If command failed, refer to https://billglover.me/notes/build-multi-arch-docker-images/ to fix
8+
# If command failed, refer to https://billglover.me/notes/build-multi-arch-docker-images/ to fix

examples/sink/log/pipeline-numaflow.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ spec:
2121
args:
2222
- python
2323
- example.py
24-
image: "quay.io/numaio/numaflow-python/sink-log:v0.7.0"
24+
image: "quay.io/numaio/numaflow-python/sink-log:v0.6.0"
2525
imagePullPolicy: Always
2626
env:
2727
- name: PYTHONDEBUG

examples/sink/log/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Numaflow developers"]
66

77
[tool.poetry.dependencies]
88
python = "~3.10"
9-
pynumaflow = "~0.7.0"
9+
pynumaflow = { git = "https://github.com/numaproj/numaflow-python.git", rev = "897ebc49ca3db21bd9eeb91b09c9607e910d6776" }
1010

1111
[tool.poetry.dev-dependencies]
1212

examples/source/simple-source/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.PHONY: image
22
image:
3-
docker build -t "quay.io/numaio/numaflow-python/simple-source:v0.7.0" .
3+
docker build -t "quay.io/numaio/numaflow-python/simple-source:v0.6.0" .
44
# Github CI runner uses platform linux/amd64. If your local environment don't, the image built by command above might not work
55
# under the CI E2E test environment.
66
# To build an image that supports multiple platforms(linux/amd64,linux/arm64) and push to quay.io, use the following command

examples/source/simple-source/pipeline-numaflow.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ spec:
99
udsource:
1010
container:
1111
# A simple user-defined source for e2e testing
12-
image: quay.io/numaio/numaflow-python/simple-source:v0.7.0
12+
image: quay.io/numaio/numaflow-python/simple-source:v0.6.0
1313
imagePullPolicy: Always
1414
limits:
1515
readBatchSize: 2
@@ -18,4 +18,4 @@ spec:
1818
log: {}
1919
edges:
2020
- from: in
21-
to: out
21+
to: out

examples/source/simple-source/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Numaflow developers"]
66

77
[tool.poetry.dependencies]
88
python = "~3.10"
9-
pynumaflow = "~0.7.0"
9+
pynumaflow = { git = "https://github.com/numaproj/numaflow-python.git", rev = "897ebc49ca3db21bd9eeb91b09c9607e910d6776" }
1010

1111
[tool.poetry.dev-dependencies]
1212

Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.PHONY: image
22
image:
3-
docker build -t "quay.io/numaio/numaflow-python/mapt-event-time-filter:v0.7.0" .
3+
docker build -t "quay.io/numaio/numaflow-python/mapt-event-time-filter:v0.6.0" .
44
# Github CI runner uses platform linux/amd64. If your local environment don't, the image built by command above might not work
55
# under the CI E2E test environment.
66
# To build an image that supports multiple platforms(linux/amd64,linux/arm64) and push to quay.io, use the following command
77
# docker buildx build -t "quay.io/numaio/numaflow-python/mapt-event-time-filter:latest" --platform linux/amd64,linux/arm64 . --push
8-
# If command failed, refer to https://billglover.me/notes/build-multi-arch-docker-images/ to fix
8+
# If command failed, refer to https://billglover.me/notes/build-multi-arch-docker-images/ to fix

examples/sourcetransform/event_time_filter/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ packages = [{include = "mapt_event_time_filter"}]
88

99
[tool.poetry.dependencies]
1010
python = ">=3.9, <3.12"
11-
pynumaflow = "~0.7.0"
11+
pynumaflow = { git = "https://github.com/numaproj/numaflow-python.git", rev = "897ebc49ca3db21bd9eeb91b09c9607e910d6776" }
1212

1313
[build-system]
1414
requires = ["poetry-core"]

0 commit comments

Comments
 (0)