-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EVENT-49: replace argo-dataflow
to numaflow
#49
base: master
Are you sure you want to change the base?
Conversation
argo-dataflow
to numaflow
argo-dataflow
to numaflow
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please support both pipeline types: Dataflow and Numaflow until we are ready to move permanently
@@ -68,7 +68,7 @@ class PackageInfo { | |||
* @returns {string} | |||
*/ | |||
getPackageLabel() { | |||
return `${constants.ARGOPM_LIBRARY_NAME_LABEL}=${encode(this.name)}`; | |||
return `${constants.ARGOPM_LIBRARY_NAME_LABEL}=${specialEncode(this.name)}`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why make this change? Is it safe/backwards compatible, etc?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do aware this might be a bug in the current argopm
(0.8.5). You can refer to the following:
- When I run
argopm list -n default
- When I run
argopm info @atlan/mssql -n default
, it throw error instead. As you can see the second screenshot, the URL passed over is/k8s/clusters/c-kzq84/apis/dataflow.argoproj.io/v1alpha1/namespaces/default/pipelines?pretty=&allowWatchBookmarks=&continue=&fieldSelector=&labelSelector=package.argoproj.io/name=-atlan-mssql
This PR basically replaces the pipeline template of
argo-dataflow
withnumaflow
pipeline template.