Skip to content
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

TEP-0142: Introduce WorkingDir in StepActions #7461

Merged
merged 1 commit into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions docs/pipeline-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -6720,6 +6720,21 @@ string
</tr>
<tr>
<td>
<code>workingDir</code><br/>
<em>
string
</em>
</td>
<td>
<em>(Optional)</em>
<p>Step&rsquo;s working directory.
If not specified, the container runtime&rsquo;s default will be used, which
might be configured in the container image.
Cannot be updated.</p>
</td>
</tr>
<tr>
<td>
<code>params</code><br/>
<em>
<a href="#tekton.dev/v1.ParamSpecs">
Expand Down Expand Up @@ -7541,6 +7556,21 @@ string
</tr>
<tr>
<td>
<code>workingDir</code><br/>
<em>
string
</em>
</td>
<td>
<em>(Optional)</em>
<p>Step&rsquo;s working directory.
If not specified, the container runtime&rsquo;s default will be used, which
might be configured in the container image.
Cannot be updated.</p>
</td>
</tr>
<tr>
<td>
<code>params</code><br/>
<em>
<a href="#tekton.dev/v1.ParamSpecs">
Expand Down
36 changes: 36 additions & 0 deletions docs/stepactions.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ weight: 201
- [Passing Params to StepAction](#passing-params-to-stepaction)
- [Emitting Results](#emitting-results)
- [Fetching Emitted Results from StepActions](#fetching-emitted-results-from-stepactions)
- [Declaring WorkingDir](#declaring-workingdir)
- [Declaring SecurityContext](#declaring-securitycontext)
- [Declaring VolumeMounts](#declaring-volumemounts)
- [Referencing a StepAction](#referencing-a-stepaction)
Expand Down Expand Up @@ -51,6 +52,7 @@ A `StepAction` definition supports the following fields:
- `env`
- [`params`](#declaring-parameters)
- [`results`](#emitting-results)
- [`workingDir`](#declaring-workingdir)
- [`securityContext`](#declaring-securitycontext)
- [`volumeMounts`](#declaring-volumemounts)

Expand Down Expand Up @@ -234,6 +236,40 @@ spec:
name: kaniko-step-action
```

### Declaring WorkingDir

You can declare `workingDir` in a `StepAction`:

```yaml
apiVersion: tekton.dev/v1alpha1
kind: StepAction
metadata:
name: example-stepaction-name
spec:
image: gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/git-init:latest
workingDir: /workspace
script: |
# clone the repo
...
```

The `Task` using the `StepAction` has more context about how the `Steps` have been orchestrated. As such, the `Task` should be able to update the `workingDir` of the `StepAction` so that the `StepAction` is executed from the correct location.
The `StepAction` can parametrize the `workingDir` and work relative to it. This way, the `Task` does not really need control over the workingDir, it just needs to pass the path as a parameter.

```yaml
apiVersion: tekton.dev/v1alpha1
kind: StepAction
metadata:
name: example-stepaction-name
spec:
image: ubuntu
params:
- name: source
description: "The path to the source code."
workingDir: $(params.source)
```


### Declaring SecurityContext

You can declare `securityContext` in a `StepAction`:
Expand Down
6 changes: 6 additions & 0 deletions pkg/apis/pipeline/v1/task_validation.go
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,12 @@ func validateStep(ctx context.Context, s Step, names sets.String) (errs *apis.Fi
Paths: []string{"script"},
})
}
if s.WorkingDir != "" {
errs = errs.Also(&apis.FieldError{
Message: "working dir cannot be used with Ref",
Paths: []string{"workingDir"},
})
}
if s.Env != nil {
errs = errs.Also(&apis.FieldError{
Message: "env cannot be used with Ref",
Expand Down
15 changes: 13 additions & 2 deletions pkg/apis/pipeline/v1/task_validation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -528,8 +528,7 @@ func TestTaskSpecStepActionReferenceValidate(t *testing.T) {
}{{
name: "valid stepaction ref",
Steps: []v1.Step{{
Name: "mystep",
WorkingDir: "/foo",
Name: "mystep",
Ref: &v1.Ref{
Name: "stepAction",
},
Expand Down Expand Up @@ -1536,6 +1535,18 @@ func TestTaskSpecValidateErrorWithStepActionRef(t *testing.T) {
Message: "script cannot be used with Ref",
Paths: []string{"steps[0].script"},
},
}, {
name: "Cannot use workingDir with Ref",
Steps: []v1.Step{{
Ref: &v1.Ref{
Name: "stepAction",
},
WorkingDir: "/workspace",
}},
expectedError: apis.FieldError{
Message: "working dir cannot be used with Ref",
Paths: []string{"steps[0].workingDir"},
},
}, {
name: "Cannot use env with Ref",
Steps: []v1.Step{{
Expand Down
7 changes: 7 additions & 0 deletions pkg/apis/pipeline/v1alpha1/openapi_generated.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions pkg/apis/pipeline/v1alpha1/stepaction_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,12 @@ type StepActionSpec struct {
// If Script is not empty, the Step cannot have an Command and the Args will be passed to the Script.
// +optional
Script string `json:"script,omitempty"`
// Step's working directory.
// If not specified, the container runtime's default will be used, which
// might be configured in the container image.
// Cannot be updated.
// +optional
WorkingDir string `json:"workingDir,omitempty" protobuf:"bytes,5,opt,name=workingDir"`
// Params is a list of input parameters required to run the stepAction.
// Params must be supplied as inputs in Steps unless they declare a defaultvalue.
// +optional
Expand Down
4 changes: 4 additions & 0 deletions pkg/apis/pipeline/v1alpha1/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,10 @@
"x-kubernetes-list-type": "atomic",
"x-kubernetes-patch-merge-key": "mountPath",
"x-kubernetes-patch-strategy": "merge"
},
"workingDir": {
"description": "Step's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.",
"type": "string"
}
}
},
Expand Down
6 changes: 6 additions & 0 deletions pkg/apis/pipeline/v1beta1/task_validation.go
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,12 @@ func validateStep(ctx context.Context, s Step, names sets.String) (errs *apis.Fi
Paths: []string{"script"},
})
}
if s.WorkingDir != "" {
errs = errs.Also(&apis.FieldError{
Message: "working dir cannot be used with Ref",
Paths: []string{"workingDir"},
})
}
if s.Env != nil {
errs = errs.Also(&apis.FieldError{
Message: "env cannot be used with Ref",
Expand Down
15 changes: 13 additions & 2 deletions pkg/apis/pipeline/v1beta1/task_validation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -532,8 +532,7 @@ func TestTaskSpecStepActionReferenceValidate(t *testing.T) {
}{{
name: "valid stepaction ref",
Steps: []v1beta1.Step{{
Name: "mystep",
WorkingDir: "/foo",
Name: "mystep",
Ref: &v1beta1.Ref{
Name: "stepAction",
},
Expand Down Expand Up @@ -1549,6 +1548,18 @@ func TestTaskSpecValidateErrorWithStepActionRef(t *testing.T) {
Message: "script cannot be used with Ref",
Paths: []string{"steps[0].script"},
},
}, {
name: "Cannot use workingDir with Ref",
Steps: []v1beta1.Step{{
Ref: &v1beta1.Ref{
Name: "stepAction",
},
WorkingDir: "/workspace",
}},
expectedError: apis.FieldError{
Message: "working dir cannot be used with Ref",
Paths: []string{"steps[0].workingDir"},
},
}, {
name: "Cannot use env with Ref",
Steps: []v1beta1.Step{{
Expand Down
1 change: 1 addition & 0 deletions pkg/reconciler/taskrun/resources/taskspec.go
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ func GetStepActionsData(ctx context.Context, taskSpec v1.TaskSpec, taskRun *v1.T
if stepActionSpec.Script != "" {
s.Script = stepActionSpec.Script
}
s.WorkingDir = stepActionSpec.WorkingDir
if stepActionSpec.Env != nil {
s.Env = stepActionSpec.Env
}
Expand Down
24 changes: 10 additions & 14 deletions pkg/reconciler/taskrun/resources/taskspec_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -321,8 +321,7 @@ func TestGetStepActionsData(t *testing.T) {
Ref: &v1.Ref{
Name: "stepAction",
},
WorkingDir: "/bar",
Timeout: &metav1.Duration{Duration: time.Hour},
Timeout: &metav1.Duration{Duration: time.Hour},
}},
},
},
Expand All @@ -343,11 +342,10 @@ func TestGetStepActionsData(t *testing.T) {
},
},
want: []v1.Step{{
Image: "myimage",
Command: []string{"ls"},
Args: []string{"-lh"},
WorkingDir: "/bar",
Timeout: &metav1.Duration{Duration: time.Hour},
Image: "myimage",
Command: []string{"ls"},
Args: []string{"-lh"},
Timeout: &metav1.Duration{Duration: time.Hour},
VolumeMounts: []corev1.VolumeMount{{
Name: "$(params.foo)",
MountPath: "/path",
Expand Down Expand Up @@ -469,8 +467,7 @@ func TestGetStepActionsData(t *testing.T) {
Ref: &v1.Ref{
Name: "stepAction",
},
WorkingDir: "/bar",
Timeout: &metav1.Duration{Duration: time.Hour},
Timeout: &metav1.Duration{Duration: time.Hour},
}, {
Image: "foo",
Command: []string{"ls"},
Expand All @@ -490,11 +487,10 @@ func TestGetStepActionsData(t *testing.T) {
},
},
want: []v1.Step{{
Image: "myimage",
Command: []string{"ls"},
Args: []string{"-lh"},
WorkingDir: "/bar",
Timeout: &metav1.Duration{Duration: time.Hour},
Image: "myimage",
Command: []string{"ls"},
Args: []string{"-lh"},
Timeout: &metav1.Duration{Duration: time.Hour},
}, {
Image: "foo",
Command: []string{"ls"},
Expand Down
2 changes: 0 additions & 2 deletions pkg/reconciler/taskrun/taskrun_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2942,7 +2942,6 @@ spec:
- ref:
name: stepAction
name: step1
workingDir: /foo
- ref:
name: stepAction2
name: step2
Expand Down Expand Up @@ -2993,7 +2992,6 @@ spec:
Image: "myImage",
Command: []string{"ls"},
Name: "step1",
WorkingDir: "/foo",
SecurityContext: &corev1.SecurityContext{Privileged: &securityContextPrivileged},
}, {
Image: "myImage",
Expand Down
Loading