-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added api to delete mono-veretx and segregated pipeline/monovertex me…
…tric tests Signed-off-by: adarsh0728 <[email protected]>
- Loading branch information
1 parent
a77881b
commit fe4a157
Showing
5 changed files
with
89 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
apiVersion: numaflow.numaproj.io/v1alpha1 | ||
kind: MonoVertex | ||
metadata: | ||
name: mono-vertex | ||
spec: | ||
scale: | ||
min: 1 | ||
source: | ||
udsource: | ||
container: | ||
image: quay.io/numaio/numaflow-go/source-simple-source:stable | ||
imagePullPolicy: Always | ||
sink: | ||
udsink: | ||
container: | ||
# A redis sink for e2e testing, see https://github.com/numaproj/numaflow-go/tree/main/pkg/sinker/examples/redis_sink | ||
image: quay.io/numaio/numaflow-go/redis-sink:stable | ||
imagePullPolicy: Always | ||
env: | ||
- name: SINK_HASH_KEY | ||
# Use the name of the mono vertex as the key | ||
value: "mono-vertex" |