1
0
mirror of https://github.com/tektoncd/catalog.git synced 2024-11-22 06:02:51 +00:00
catalog/task/wget/0.1
PuneetPunamiya 5a3e5f630f Adds category field as an annotation as tekton.dev/categories
- Initially all tags were mapped to categories in Hub,
     for e.g. config.yaml: https://github.com/tektoncd/hub/blob/master/config.yaml,
     so whenever a new tag was added in a task it was mapped to a category called `others`.
     Hence before every release we had to manually map these new tags to some category,
     hence after the discussion in Catalog and Hub WG, a proposal was created for adding
     a category as an annotation.

   - PR to update the TEP-0003-Tekton Catalog Organization: https://github.com/tektoncd/community/pull/352

Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
2021-07-26 13:15:08 +01:00
..
tests Modifies wget task according to the new reorg proposal 2020-07-10 22:06:57 +01:00
README.md Update self reference from master to main 🧙 2021-03-19 11:09:49 +00:00
wget.yaml Adds category field as an annotation as tekton.dev/categories 2021-07-26 13:15:08 +01:00

wget

This task uses wget to download files from the internet to a workspace .

Install the Task

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

Parameters

  • options: The arguments to pass to wget CLI. default: [""]
  • diroptions: The directory path we want to save file to. default: [""]
  • url: The url we want to download file from. default: ""
  • filename: The filename we want to change our file to. default: ""
  • ****: The wget docker image to be used. Defaults to mwendler/wget

Usage

Running the Task

Download file to the workspace

You can invoke wget url -P workspace to check if file is downloaded to workspace:

Create a file, wget-run.yaml:

apiVersion: tekton.dev/v1beta1
kind: TaskRun
metadata:
  name: wget-run
spec:
  params:
    - name: url
      value: "www.google.com"
    - name: diroptions
      value:
        - "-P"
  taskRef:
    name: wget
  workspaces:
    - name: wget-workspace
      emptyDir: {}

Run it with kubectl apply -f wget-run.yaml

When this runs, it will print logs indicating connecting to the website indicated in url, http request sent and saving a index.html to the workspace directory