Skip to content

Commit

Permalink
build: Fix argoexec image (#13)
Browse files Browse the repository at this point in the history
This PR:
- Fixes a mismatch of argoproj/argoexec and changes it to
pipekitdev/argoexec

---------

Signed-off-by: J.P. Zivalich <[email protected]>
  • Loading branch information
JPZ13 authored Mar 21, 2023
1 parent 68bf799 commit 4974456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/controller/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func (wfc *WorkflowController) executorImage() string {
if v := wfc.Config.GetExecutor().Image; v != "" {
return v
}
return fmt.Sprintf("quay.io/argoproj/argoexec:" + argo.ImageTag())
return fmt.Sprintf("quay.io/pipekitdev/argoexec:" + argo.ImageTag())
}

func (wfc *WorkflowController) executorLogFormat() string {
Expand Down

0 comments on commit 4974456

Please sign in to comment.