1
0
mirror of https://github.com/tektoncd/catalog.git synced 2024-11-25 06:17:50 +00:00
catalog/task/write-file/0.1
Yulia Gaponenko 2bae9d1479 Add platforms annotation to several tasks
Annotation about linux/amd64,linux/s390x,linux/ppc64le platforms was added
to the latest versions of the npm, wget, write-file, tekton-catalog-publish,
pytest, python-coverage tasks.
Container image SHAs were updated to use the latest versions with
multi-arch support for npm and wget tasks.

Signed-off-by: Yulia Gaponenko <yulia.gaponenko1@de.ibm.com>
2021-10-18 15:35:34 +01:00
..
tests Remove permission check in write-file task 2021-05-11 08:59:45 +01:00
README.md Add platforms annotation to several tasks 2021-10-18 15:35:34 +01:00
write-file.yaml Add platforms annotation to several tasks 2021-10-18 15:35:34 +01:00

Write a file to a workspace

This task can be used to write a file onto the output workspace. Use parameter expansion to insert variable content into the written file. It can also set specific permissions on the file.

Install the Task

kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/main/task/write-file/0.1/write-file.yaml

Parameters

  • path: Relative path to create within the workspace. Directories will be created as necessary.
  • mode: chmod-style mode string to apply to the file. Note that mode will not be applied to created directories.
  • contents: Contents of the file to create. Note that octal numbers need quoting in YAML.

Platforms

The Task can be run on linux/amd64, linux/s390x, and linux/ppc64le platforms.

Usage

This example task generates a random password from the pipeline run's unique id.

- name: output-credentials
  taskRef:
    name: write-file
    kind: Task
  workspaces:
    - name: output
      workspace: shared-workspace
  params:
    - name: path
      value: ./config/login.ini
    - name: mode
      value: "0400"
    - name: contents
      value: |
        [credentials]
        user = ze-user
        password = $(context.pipelineRun.uid)