Last active
May 8, 2020 08:26
-
-
Save pt033302/bd6493f01a1ad72456ebb85952f7dbae to your computer and use it in GitHub Desktop.
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
apiVersion: tekton.dev/v1beta1 | |
kind: Task | |
metadata: | |
name: show-non-root-steps | |
spec: | |
steps: | |
# no securityContext specified so will use | |
# securityContext from TaskRun podTemplate | |
- name: show-user-1001 | |
image: ubuntu | |
command: | |
- ps | |
args: | |
- "aux" | |
# securityContext specified so will run as | |
# user 2000 instead of 1001 | |
- name: show-user-2000 | |
image: ubuntu | |
command: | |
- ps | |
args: | |
- "aux" | |
securityContext: | |
runAsUser: 2000 | |
--- | |
apiVersion: tekton.dev/v1beta1 | |
kind: TaskRun | |
metadata: | |
generateName: show-non-root-steps-run- | |
spec: | |
taskRef: | |
name: show-non-root-steps | |
podTemplate: | |
securityContext: | |
runAsNonRoot: true | |
runAsUser: 1001 | |
--- | |
apiVersion: tekton.dev/v1beta1 | |
kind: TaskRun | |
metadata: | |
name: test-1 | |
spec: | |
resources: | |
inputs: | |
- name: source | |
resourceSpec: | |
type: git | |
params: | |
- name: url | |
value: https://github.com/tektoncd/pipeline | |
taskSpec: | |
resources: | |
inputs: | |
- name: source | |
type: git | |
steps: | |
- name: check-home-dir | |
image: ubuntu | |
env: | |
- name: HOME | |
value: /workspace | |
script: | | |
echo $HOME | |
podTemplate: | |
securityContext: | |
runAsUser: 1111 | |
runAsGroup: 2222 | |
fsGroup: 3333 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment