-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Upgraded Argo to v2.7.5 #3537
Upgraded Argo to v2.7.5 #3537
Changes from all commits
411ba9c
c7d31d1
716d29e
273ffd5
ed99b48
6bbf789
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,8 @@ COPY backend/requirements.txt . | |
RUN python3 -m pip install -r requirements.txt | ||
|
||
# Downloading Argo CLI so that the samples are validated | ||
ADD https://github.com/argoproj/argo/releases/download/v2.3.0/argo-linux-amd64 /usr/local/bin/argo | ||
#ADD https://github.com/argoproj/argo/releases/download/v2.7.5/argo-linux-amd64 /usr/local/bin/argo | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you add a comment here, why we need to use the old argo CLI? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh, sure. I'll do that. |
||
ADD https://github.com/argoproj/argo/releases/download/v2.4.3/argo-linux-amd64 /usr/local/bin/argo | ||
RUN chmod +x /usr/local/bin/argo | ||
|
||
WORKDIR /go/src/github.com/kubeflow/pipelines | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,8 @@ RUN cd /python/src/github.com/kubeflow/pipelines | |
# Install argo. | ||
RUN echo "install argo" | ||
RUN mkdir -p /usr/local/bin/ | ||
RUN ARGO_VERSION=v2.3.0 && curl -sSL -o /usr/local/bin/argo \ | ||
#RUN ARGO_VERSION=v2.7.5 && curl -sSL -o /usr/local/bin/argo \ | ||
RUN ARGO_VERSION=v2.4.3 && curl -sSL -o /usr/local/bin/argo \ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. add a comment here too? |
||
"https://github.com/argoproj/argo/releases/download/$ARGO_VERSION/argo-linux-amd64" && \ | ||
chmod +x /usr/local/bin/argo | ||
ENV PATH $PATH:/usr/local/bin/argo | ||
|
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.
FYI, the suffix
-license-compliance
was added to distinguish it fromgcr.io/ml-pipeline/argoexec:v2.3.0
, there's no longer such a need becausegcr.io/ml-pipeline/argoexec:v2.7.5
doesn't exist, so we can just use that name.Not sure if you intentionally kept the suffix, I'd prefer removing it.
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.
The scripts that add licenses add this suffix. I think the suffix has advantage of clearly marking the image as different from the original Argo image.
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.
SGTM, if you find the extra information helpful