-
Notifications
You must be signed in to change notification settings - Fork 208
Script run stage #4720
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
Merged
Merged
Script run stage #4720
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
e6118ce
Add option script run stage
ffjlabo 9351080
Implement Executor for script run
ffjlabo 2594710
Use StageStatus_STAGE_FAILURE
ffjlabo 57c694e
Add error log
ffjlabo 5525832
Add Copyright
ffjlabo 92c6dd9
Re-implement script run stage like custom sync
ffjlabo 2dab4a3
Delete comment
ffjlabo b198ecc
Merge branch 'master' into script-run-stage
ffjlabo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,135 @@ | ||
| // Copyright 2023 The PipeCD Authors. | ||
| // | ||
| // Licensed under the Apache License, Version 2.0 (the "License"); | ||
| // you may not use this file except in compliance with the License. | ||
| // You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, software | ||
| // distributed under the License is distributed on an "AS IS" BASIS, | ||
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| // See the License for the specific language governing permissions and | ||
| // limitations under the License. | ||
| package scriptrun | ||
|
|
||
| import ( | ||
| "os" | ||
| "os/exec" | ||
| "strings" | ||
| "time" | ||
|
|
||
| "github.com/pipe-cd/pipecd/pkg/app/piped/executor" | ||
| "github.com/pipe-cd/pipecd/pkg/model" | ||
| ) | ||
|
|
||
| type registerer interface { | ||
| Register(stage model.Stage, f executor.Factory) error | ||
| RegisterRollback(kind model.RollbackKind, f executor.Factory) error | ||
| } | ||
|
|
||
| type Executor struct { | ||
| executor.Input | ||
|
|
||
| appDir string | ||
| } | ||
|
|
||
| func (e *Executor) Execute(sig executor.StopSignal) model.StageStatus { | ||
| e.LogPersister.Infof("Start executing the script run stage") | ||
|
|
||
| opts := e.Input.StageConfig.ScriptRunStageOptions | ||
| if opts == nil { | ||
| e.LogPersister.Error("option for script run stage not found") | ||
| return model.StageStatus_STAGE_FAILURE | ||
| } | ||
|
|
||
| if opts.Run == "" { | ||
| return model.StageStatus_STAGE_SUCCESS | ||
| } | ||
|
|
||
| var originalStatus = e.Stage.Status | ||
| ds, err := e.TargetDSP.Get(sig.Context(), e.LogPersister) | ||
| if err != nil { | ||
| e.LogPersister.Errorf("Failed to prepare target deploy source data (%v)", err) | ||
| return model.StageStatus_STAGE_FAILURE | ||
| } | ||
| e.appDir = ds.AppDir | ||
|
|
||
| timeout := e.StageConfig.ScriptRunStageOptions.Timeout.Duration() | ||
|
|
||
| c := make(chan model.StageStatus, 1) | ||
| go func() { | ||
| c <- e.executeCommand() | ||
| }() | ||
|
|
||
| timer := time.NewTimer(timeout) | ||
| defer timer.Stop() | ||
|
|
||
| for { | ||
| select { | ||
| case result := <-c: | ||
| return result | ||
| case <-timer.C: | ||
| e.LogPersister.Errorf("Canceled because of timeout") | ||
| return model.StageStatus_STAGE_FAILURE | ||
|
|
||
| case s := <-sig.Ch(): | ||
| switch s { | ||
| case executor.StopSignalCancel: | ||
| e.LogPersister.Info("Canceled by user") | ||
| return model.StageStatus_STAGE_CANCELLED | ||
| case executor.StopSignalTerminate: | ||
| e.LogPersister.Info("Terminated by system") | ||
| return originalStatus | ||
| default: | ||
| e.LogPersister.Error("Unexpected") | ||
| return model.StageStatus_STAGE_FAILURE | ||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
| func (e *Executor) executeCommand() model.StageStatus { | ||
| opts := e.StageConfig.ScriptRunStageOptions | ||
|
|
||
| e.LogPersister.Infof("Runnnig commands...") | ||
| for _, v := range strings.Split(opts.Run, "\n") { | ||
| if v != "" { | ||
| e.LogPersister.Infof(" %s", v) | ||
| } | ||
| } | ||
|
|
||
| envs := make([]string, 0, len(opts.Env)) | ||
| for key, value := range opts.Env { | ||
| envs = append(envs, key+"="+value) | ||
| } | ||
|
|
||
| cmd := exec.Command("/bin/sh", "-l", "-c", opts.Run) | ||
| cmd.Dir = e.appDir | ||
| cmd.Env = append(os.Environ(), envs...) | ||
| cmd.Stdout = e.LogPersister | ||
| cmd.Stderr = e.LogPersister | ||
| if err := cmd.Run(); err != nil { | ||
khanhtc1202 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| e.LogPersister.Errorf("failed to exec command: %w", err) | ||
| return model.StageStatus_STAGE_FAILURE | ||
| } | ||
| return model.StageStatus_STAGE_SUCCESS | ||
| } | ||
|
|
||
| type RollbackExecutor struct { | ||
| executor.Input | ||
| } | ||
|
|
||
| func (e *RollbackExecutor) Execute(sig executor.StopSignal) model.StageStatus { | ||
| e.LogPersister.Infof("Unimplement: rollbacking the script run stage") | ||
| return model.StageStatus_STAGE_FAILURE | ||
| } | ||
|
|
||
| // Register registers this executor factory into a given registerer. | ||
| func Register(r registerer) { | ||
| r.Register(model.StageScriptRun, func(in executor.Input) executor.Executor { | ||
| return &Executor{ | ||
| Input: in, | ||
| } | ||
| }) | ||
| } | ||
This file contains hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.