Upstream catalog nightly is failing with the error
`error: error parsing STDIN: error converting YAML to JSON: yaml: line
2: mapping values are not allowed in this context` which is occuring
while creating the SA in `pre-apply-task-hook.sh` as the SA YAML was
first created and then applied and during this process the error is
occuring.
The PR fixes that by directly creating the SA and not first generating
the YAML and then applying in next step.
Signed-off-by: vinamra28 <vinjain@redhat.com>
This change adds a set of modular Tasks to integrate Tekton with Orka
by MacStadium. Orka allows users to run macOS builds and workloads on
real Apple hardware. An Orka / Tekton integration will allow the
utilization of macOS build agents for CI jobs that run on Tekton
pipelines.
The tasks orka-init, orka-deploy and orka-teardown are designed to work
together in order to allow the utilization of multiple macOS
build agents in a CI/CD pipeline. The orka-deploy Task allows the user
to provide a build script as a parameter, and will allow the user to
store build artifacts in a Tekton workspace. The orka-init and
orka-teardown tasks create and delete virtual machine configurations.
This is accomplished by making calls to the Orka API running in a
separate Kubernetes cluster over a VPN connection.
Earlier version of s2i uses PipelineResources which are now deprecated.
Also the s2i task is missing the digest in results.
With this PR:-
- Removing the usage of PipelineResources and using equivalent task from
catalog in the tests.
- Storing the digest in results so that it can be used later on by
another task.
- Adds optional workspace for the cert dir to pass to buildah --cert-dir flag.
Signed-off-by: vinamra28 <vinjain@redhat.com>
To run Orka in OpenShift successfully we need to run the build step as privileged else some operations are not permitted without privilege access
Signed-off-by: vinamra28 <vinjain@redhat.com>
In quay.io if a tag is repushed, the previous digest becomes in-accessible.
So removing the digest from skopeo-copy task as the current digest was in-accessible.
Signed-off-by: vinamra28 <vinjain@redhat.com>
- git-cli examples moved from git-cli/examples/git-cli -> git-cli/examples/
- git-rebase examples moved from git-rebase/examples/git-rebase -> git-rebase/examples/
- changed workingdir -> workingDir in git-rebase
- corrected install command in az
- improved YAML in readme for proper rendering
Signed-off-by: vinamra28 <vinjain@redhat.com>
There were multiple examples which were not a part of that particular task were not removed at the time of catalog reorg
Signed-off-by: vinamra28 <vinjain@redhat.com>
* Making it easier to overwrite multiple values,
instead of defining them all in overwrite_values.
* Changing param helm_version to helm_image and let
the user define the entire container repo+image.
This change adds a Task to integrate Tekton with Orka by MacStadium.
Orka allows users to run macOS builds and workloads on real
Apple hardware. An Orka / Tekton integration will allow the utilization
of macOS build agents for CI jobs that run on Tekton pipelines.
The orka-full Task will allow the utilization of a single macOS
build agent, allowing the user to provide a build script as a
parameter, and will allow the user to store build artifacts in a
Tekton workspace. This is accomplished by making calls to the Orka
API running in a separate Kubernetes cluster over a VPN connection.
Tekton Pipeline 0.18.0 was just released and as part of the release
process, bumping up the following images in the catalog tasks:
git-batch-merge - v0.17.3
git-clone - v0.17.3
0.18 contains bug fix for git-init and therefore bumping related tasks only.
Adding tests for blue green deployment task. The test will first
deploy version v1 of an application and service pointing to version
that deployment using `pre-apply-task-hook.sh` script and using taskrun will
deploy version v2 of that application and patch the service to point to v2 version
of the application
Also modifying the images in deployment manifests present in samples as the previous image
is not accessible now
Signed-off-by: vinamra28 <vinjain@redhat.com>
Args wasnt expanded properly, it showed like this when running the task:
`[pthon-lint : pylint] /tekton/scripts/script-0-s2wjl: line 8: inputs.params.args: not found`
Signed-off-by: Chmouel Boudjnah <chmouel@redhat.com>
We are bumping the buildah task to 0.2 since this needs at least pipeline
0.17.0.
This will add a optional workspace for the cert dir to pass to buildah
--cert-dir flag.
I have modified the test to create a registry with SSL certs and make the
buildah task using it.
This add a complete example on how to use this with the openshift internal
registry.
Signed-off-by: Chmouel Boudjnah <chmouel@redhat.com>
the install of requirements.txt was removed from the 0.1 task but it is actually
needed for pylint, since it would error out if it can't find the dependences.
We make sure we can install them as user since the image assume root and that
would not work on some k8 install (ie: openshfit and others).
Signed-off-by: Chmouel Boudjnah <chmouel@redhat.com>
We had previouslly the triggers-jenkins-job task, this task is more generic and
allows more operations, it currently support starting a jenkins job and getting
the log of a build. It allows as well to wait that the job had started or that
the job has finished.
With this more generic task it makes it easier to have other jenkins operations
in there.
Signed-off-by: Chmouel Boudjnah <chmouel@redhat.com>
- Previously catalog's task has some images that are not
tagged properly,this patch fixes these images by adding
the digest
- Soon once Catlin is added to the CI it will throw error
for those images which don't have proper tags
co-authored by:- @PuneetPunamiya
Signed-off-by: vinamra28 <vinjain@redhat.com>
The tkn task will be able to work with a kubeconfig for a cluster so that it can operate on it. The following task can also accept a SCRIPT as input so that we can run multiple tkn commands.
Signed-off-by: vinamra28 <vinjain@redhat.com>
The golang-test and build tasks attempt to use variable interpolation in a workspaces.mountPath
field where it isn't supported. This results in the source code being mounted in a directory
called, literally, "$(params.package)".
This commit updates the golang-test and build tasks to mkdir the package directory and copy
the source code into it, then cd into it and run `go test`/`build`. This should result
in better expected outcome - the source will be in the package directory that it expects
to be.
- Bump a new pylint task to 0.2
- Use an image which already has pylint and not auto install it every time we
run the task.
- Convert the spec to pipelineSpec
- Do not try to install requirements.txt modules since pylint doesn't need it.
- Remove the ability to choose another python version since you probaby would
not need it for a static analyzer. If you really need it you can redefine the
image params targetting a custom container image.
Co-authored-by: Maximilian Wurzer <62810491+wumaxd@users.noreply.github.com>
Signed-off-by: Chmouel Boudjnah <chmouel@redhat.com>
We were previously using the outdated git_clone version 0.1 in the
add_git_clone_task function.
So let's introduce a more generic function :
```
add_task ${task} ${version}
```
if version is 'latest' it will always install the latest version of the task.
Change all pre-apply-task-hook to use that function instead.
Signed-off-by: Chmouel Boudjnah <chmouel@redhat.com>
The following task contains `mypy` linter which is a popular static code analyser for python that checks code as described http://mypy-lang.org/
Signed-off-by: vinamra28 <vinjain@redhat.com>
Rewrite the triggers-jenkins-job, the arguments and params are about to same.
Starting from Jenkins LTS 2.176.2 we need to create a crumb and capture the
cookie jar to make the subsequent requests.
https://support.cloudbees.com/hc/en-us/articles/219257077-CSRF-Protection-Explained
Add tests :
We spins up a deployment with a jenkins lts and expose a service to it so our
task can access it.
We do some ninja execing into the pods to create a jenkins job in there and
setup the configmap secret.
We probably should drop the CRUMB setting since it will not work anymore but it
is harmless since we are regenerating it anyway.
Todo: need to test with jenkins image that is older than 2.176.2, but it
probably should work
Signed-off-by: Chmouel Boudjnah <chmouel@redhat.com>
Rather than forcing task users to create a secret with a fixed
name, allow setting the secret name and key as parameter.
The new parameters are optional, in the sense that they default
to the previous hardcoded values.
This task can be used to builds Go binaries for several platforms,
creates a GitHub release and then pushes a Homebrew formula to a tap
repository using [goreleaser](https://github.com/goreleaser/goreleaser).
Signed-off-by: vinamra28 <vinjain@redhat.com>
When running on GCP, gsutil will try to infer identity from the GKE
metadata service instead of an explicitly defined credential file. The
easiest way to support this is to only set the credentials iff the file
is provided, otherwise just fallback to gsutils default behavior.
Also adds a simpler example that doesn't require credentials.
This task will be used to format python code after doing a lint check and will not complain for the errors.
Signed-off-by: vinamra28 <vinjain@redhat.com>
This add the github app token, this would help to get a user token from a github
app which can be perused to do github operations.
Flow would are usually going like this :
events -> triggers event listenner \
-> start pipeline
-> get user token from app (with this task)
-> do operation (like ci checks or others) on github with this
token.
Signed-off-by: Chmouel Boudjnah <chmouel@redhat.com>
This PR is to add `servers` tag for the private repository server.
It is assumed to be used with `MAVEN_MIRROR_URL`, for example, when using a cached library on a private network.
Buildah image in few tasks was not pointing to latest
image release tag, so updated the image to point to
latest release.
Signed-off-by: Divyansh42 <diagrawa@redhat.com>
Earlier git-clone assumes `master` as default branch, but after #2835
`master` is no more default branch. Hence, updated the git clone task
fetch a remote repository's default branch instead of assuming "master"
when revision is "".
Signed-off-by: Divyansh42 <diagrawa@redhat.com>
The following task uses the released version of tekton operator to install tekton components on a new cluster. By default Tekton pipelines are installed but if we want to install other components as well then we can specify their version in the parameters of the task and respective component will get installed.
Signed-off-by: vinamra28 <vinjain@redhat.com>
The end to end test attaches a sidecar with a image registry for tasks to push into to. However, the function add_sidecar_registry sets the sidecar registry instead of appending it. Removing the function from test to remove this bug. There is a local registry being added to the test that is deployed with deployment and svc. The svc is referenced during the test instead of the sidecar. #481
This PR is to improve the existing maven tasks and support context directory switch in case of multi-module maven projects. Also the settings.xml was being `cat` so removed that also. This is being added as version 0.2 in maven task
Signed-off-by: vinamra28 <vinjain@redhat.com>
This commit adds git-clone v0.2. One default behaviour has changed
and one new param has been introduced in this version:
1) Tasks that don't start their script with #! automatically receive
a preamble that includes `set -x`. This results in verbose output
because every command is printed while the Task is running.
This commit adds a new param, "verbose", that - when set to "false"
- prevents the commands run by the task from being printed to logs.
The default value is "true": the commands run by the task will be
printed in the log.
2) The git-clone Task offers a param, deleteExisting, that cleans
any existing directory before performing a clone into it. This
has previously been set to "false" by default since it's potentially
destructive. But it sounds like there's quite often a request for
how to enable this behaviour, so it seems like the more pragmatic
default would be "true".
This commit sets deleteExisting to be defaulted to "true" so that
any existing git checkout is removed prior to a new clone being
performed.
If the user want to use another image than what we release on gcr.io let give
this option by introducing the param `gitInitImage` to set this up which would
default to the gcr.io image as it was before.
Signed-off-by: Chmouel Boudjnah <chmouel@redhat.com>
Also, modify the git-batch-merge test to use actual changes - using
`kelseyhightower/nocode` was cute, but ended up masking the actual
problem that not setting `depth` to `0` by default was making all
merges fail. So let's use our own repo, two merged PRs, and the
ancestor of the first of those PRs.
fixes#477
Signed-off-by: Andrew Bayer <andrew.bayer@gmail.com>
Use variable $(workspaces.source.path) for path (pytest)
Add OWNERS file
Use latest tag for the python images as default
Signed-off-by: wumaxd <wurzer.maxi@gmx.de>
* Only intall the requirements when the file is here
(sometime we write pure python script that doesn't need external libs)
* fix installing pylint when needed
* Use variable $(workspaces.source.path) for path
Signed-off-by: Chmouel Boudjnah <chmouel@redhat.com>
I added support for TaskRunResults for this task. This change adds four results:
- the sha256 hash of the bdist package and the sdist package.
- the package name
- the package version
I also fixed a permission issue in the sample - I could not get this to run as a non-root
user (even without my change). The git repo is cloned correctly, but the default user of the
twine image does not have write permissions in this directory.
The following task uses `coverage` dependency in python to measure code coverage of Python projects. This task works along with the pytest so that coverage can be calculated properly.
Signed-off-by: vinamra28 <vinjain@redhat.com>
The existing kubectl-deploy-pod task contained all the sample TaskRuns along with the task definition so with this PR I am moving them to their respective directories and also fixed some of the links in the README.
Signed-off-by: vinamra28 <vinjain@redhat.com>
Blue-Green deployment is one of the deployment strategy being used to deploy the newer version of the application on kubernetes keeping the previous version in production so that if
newer version fails then the router can be switched back to the previous version of the deployment without any downtime.
Signed-off-by: vinamra28 <vinjain@redhat.com>
This commit represents a complete update of the OpenWhisk to Knative pipeline from v1alpha1 level to v1beta1 resource levels. This pipeline also adds conditional logic to support additional "branches" of the pipeline to sequence tasks that can detect and build serverless applications for not only NodeJS (previously the only lang. supported), but also Python and Java. In addition, this pipeline utilizes a workspace for sharing data/state across tasks. Each language branch has its own sample functions with instructions for users to build and test on knative the services they build.
The following task can be used to trigger an existing Jenkins pipeline from Tekton using the CURL request by providing the required parameters.
Signed-off-by: vinamra28 <vinjain@redhat.com>
Centralize all the the git-clone apply commands we had around the
pre-apply-task-hook to a central common function.
This will make easier to have the same git-clone task version used everywhere.
Add some documentation about the helper functions along the way.
Signed-off-by: Chmouel Boudjnah <chmouel@redhat.com>
This will the fix the pytest and pylint task
which fails if run as non root user
in case of non-root user, it install at
location which is not in PATH of image
so adding the required PATH fix the issue
Boskos is a tool that allows one to create a pool of cloud projects
(definitely GCP, I think it supports other providers as well), and
manages acquiring, releasing, and cleaning them between leases.
We use it for Tekton test infrastructure for our end to end tests and
we'd like to use it for our catalog Tasks as well.
This commit adds boskos acquire and release Tasks.
The acquire Task also creates a pod in the running cluster to perform
heartbeating so that boskos knows that the resource is still in use.
The intention of the release Task is that it would be run in a
Pipeline's `finally` clause, however today that would be difficult
because finally Tasks can't yet use the results of other Tasks, but this
functionality is on the way: https://github.com/tektoncd/pipeline/issues/2557
This is part of the work in #373 to create a Pipeline for the catalog.
The following task can be used to run the shell command (single/multiple) on remote Host by SSHing into the remote machine by providing the required credentials required to
login into that Host and get back the result as output.
Signed-off-by: vinamra28 <vinjain@redhat.com>
As a user there are some instances where I need to use docker because there is a makefile/script that uses docker in a very niche way. A Tekton Task was added with a docker sidecar.
As part of #373 I'm continuing to create Tasks that we can use to run
tests for items in the catalog. This Task creates a cluster within a GKE
project and is based on the way we create clusters for the existing end
to end tests we have in Tekton, which are themselves based on Knative,
when are THEMselves based on k8s. These tests all use a tool called
kubetest, which is responsible for invoking boskos (see #408) and
creating a GKE cluster
(https://github.com/kubernetes/test-infra/tree/master/kubetest).
This Task attempts to create a cluster in the same way, which based on the
output in the end to end logs seems to consist of creating the cluster
and setting up a firewall for it.
I'm not sure if this belongs in the catalog itself since it is specific
to our own end to end tests and isn't as generic as other catalog tests,
so if we want to move this into the test directory that seems fine, but
I also think it could be an okay addition to the catalog on its own (esp
if other k8s based projects that test against GKE want to use it.)
- Override /tekton/home for the detect and build phases of the lifecycle to hide registry credentials from buildpack code.
- Run analyze, restore, and export in the lifecycle image published by buildpacksio to hide registry credentials from untrusted builders.
Signed-off-by: Natalie Arellano <narellano@vmware.com>
- Set HOME env to /workspace
- Use $HOME for "home" wherever possible
- Gradle: mount empty dir at ~/.gradle to make it globally writable
- Maven: script to `script:` to use "$HOME" variable
Additionally, remove commented out references to ADDITIONAL_TAGS; that will be added as a separate issue.
Signed-off-by: David Freilich <dfreilich@vmware.com>
With the release of Platform API 0.3 (implemented in github.com/buildpacks/lifecycle v0.7.0), there is a creator binary that simplifies the CNB experience; calling it runs all of the individual lifecycle phases, and minimizes the number of separate containers needed for the process. As such, we moved the buildpacks task to use it.
At the same time, it is also helpful, in some scenarios, to run the individual phases; it allows for greater control of secrets, amongst other things. As such, we moved the original task to buildpacks-separate-phases to allow users the choice.
This commit also updates the READMEs, making them a bit clearer about what CNBs are and what the tasks do, as well as adding in the Paketo builders to the example builders.
Signed-off-by: David Freilich <dfreilich@vmware.com>
The suffix v3 was a piece of buildpacks history, stemming from the initial start of the buildpacks concept, but isn't relevant to current consumers of the buildpacks task. To simplify it, and to fit with other task styles, we are removing v3
Additionally, we are updating the list of suggested builders, to reflect the current status of pack builders. NOTE: Paketo builders currently have a bug and don't work in Tekton, and until that issue is resolved, we aren't adding them in the list.
Signed-off-by: David Freilich <dfreilich@vmware.com>
The task `kubectl-actions` is a generic task which can be used to perform k8s-actions. We take the whole script as a `params` whereas the existing task `kubectl-deploy` only works for deploying the pod and fulfills the specific criteria.
Signed-off-by: vinamra28 <vinjain@redhat.com>
- Update the pipeline to install for e2e tests
- Update images to refer to 0.14.0 version of pipeline
Signed-off-by: Vincent Demeester <vdemeest@redhat.com>
Since skopeo has started providing their official image and the image would be updated regularly so changing the skopeo-copy task image so that it can use the official one from now on.
Signed-off-by: vinamra28 <vinjain@redhat.com>
We don't really have a concept in Tekton of something called a "Workspace volume",
but multiple READMEs now refer to it.
This commit removes the term "Workspace volume" in favor of simply "Workspace".
Changes include:
- moves the golangci-lint task to the task directory
- moves the OWNERS to golangci-lint task
- moves and modifies readme file from golang
to golangci-lint task
- moves test directory from golang to golangci-lint task
- changes the yaml filename to match the resource name
Issue: #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- moves the golang-test task to the task directory
- copies and modifies readme file to golang-test task from golang directory
- copies OWNERS file from golang directory
- copies test directory from golang directory to golang-test task
- changes the yaml filename to match the resource name
Issue : #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- moves the golang-build task to the task directory
- copies and modifies readme file to golang-build task from golang directory
- copies OWNERS file from golang directory
- copies test directory from golang directory to golang-build task
- changes the yaml filename to match the resource name
Issue: #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- moves the openshift-client-kubecfg task to the task directory
- moves and modifies readme file for openshift-client-kubecfg task from openshift-client directory
- moves OWNERS file from openshift-client directory
- chages the yaml filename to match the resource name
Issue: #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- moves the openshift-client task to the task directory
- copies and modifies readme file for openshift-client task from openshift-client directory
- copies OWNERS file from openshift-client directory
- changes the yaml filename to match the resource name
Issue: #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- moves the build-push-gke-deploy task to the task directory
- moves and modifies readme file from gke-deploy
to build-push-gke-deploy
- moves examples directory from gke-deploy
Issue : #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- moves the gke-deploy task to the task directory
- copies and modifies readme file for gke-deploy from gke-deploy directory
- copies example directory from gcs directory
Issue: #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- moves github-add-labels task to the task directory
- rename the yaml filename to match the resource name
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- moves github-set-status task to the task directory
- moves and modifies readme from github to github-close-issue
- rename the yaml filename to match the resource name
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- moves github-close-issue task to the task directory
- moves and modifies readme from github to github-close-issue
- rename the yaml filename to match the resource name
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- moves github-add-comment task to the task directory
- moves and modifies readme from github to github-add-comment
- rename the yaml filename to match the resource name
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- moves gitlab-add-label task to the task directory
- rename the yaml filename to match the resource name
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- moves the gcs-generic task to the task directory
- moves and modifies readme file for gcs-generic from gcs directory
- moves sample directory from gcs directory
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- moves the gcs-upload task to the task directory
- copies and modifies readme file for gcs-upload from gcs directory
- copies sample directory from gcs directory
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- moves the gcs-download task to the task directory
- copies and modifies readme file for gcs-download from gcs directory
- copies sample directory from gcs directory
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- moves the gcs-delete-bucket task to the task directory
- copies and modifies readme file for gcs-delete-bucket from gcs directory
- copies sample directory from gcs directory
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- moves the gcs-create-bucket task to the task directory
- copies and modifies readme file for gcs-create-bucket from gcs directory
- copies sample directory from gcs directory
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- moves and modifies readme file from openshift-provision
to openshift-uninstall
- moves examples directory from openshift-provision
- changes the yaml filename to match the resource name
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- copies and modifies readme file for openshift-install
- copies example directory from openshift-provision
- changes the yaml filename to match the resource name
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- modified description to add a summary
This patch moves the cloudevent files to the task directory and
renames the yaml file
- The yaml filename is changed to match the resource name
Issue: #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- adds display name for task
- modified description to add a summary
This patch also moves the openshift-client-python files to the task directory
Issue: #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- adds display name for task
- modified description to add a summary
This patch moves the kythe files to the task directory and
renames the directory
- The directory name is changed to match the resource name
Issue: #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- modified description to add a summary
This patch also moves the kubeval files to the task directory
and modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- modified description to add a summary
This patch moves the kubectl files to the task directory and
renames the yaml file and the directory
- The yaml filename and the directory is changed to match the resource name
- Modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- adds display name for task
- modified description to add a summary
This patch also moves the kubeconfig-creator files to the task directory
Issue: #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- adds display name for task
- modified description to add a summary
This patch moves the knctl files to the task directory and
renames the directory
- The directory name is changed to match the resource name
- Modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- modified description to add a summary
This patch moves the ibmcloud-cli files to the task directory and
renames the yaml file and the directory
- The yaml filename and the directory is changed to match the resource name
- Modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- adds display name for task
- modified description to add a summary
This patch also moves the jib-maven files to the task directory
and modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- adds display name for task
- modified description to add a summary
This patch also moves the jib-gradle files to the task directory
and modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- modified description to add a summary
This patch also moves the kaniko files to the task directory
and modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- modified description to add a summary
This patch also moves the kn files to the task directory
and modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- modified description to add a summary
This patch also moves the maven files to the task directory
Issue: #386
Signed-off-by: Shiv Verma <shverma@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- modified description to add a summary
This patch also moves the gcloud files to the task directory
and modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Shivam Mukhade <smukhade@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- modified description to add a summary
This patch also moves the curl files to the task directory
and modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Shivam Mukhade <smukhade@redhat.com>
according to the new reorg proposal
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds display name for task
- adds tags for task
- modified description to add a summary
This patch moves the buildpacks-v3 files to the task directory and
renames the directory
- The directory name is changed to match the resource name.
- Modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Shivam Mukhade <smukhade@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds display name for task
- adds tags for task
- modified description to add a summary
This patch also moves the buildkit-daemonless files to the task directory
and modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Shivam Mukhade <smukhade@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- modified description to add a summary
This patch moves the buildkit files to the task directory and
renames the yaml file
- The yaml filename is changed to match the resource name.
Issue: #386
Signed-off-by: Shivam Mukhade <smukhade@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds display name for task
- adds tags for task
- modified description to add a summary
This patch moves the buildid files to the task directory and
renames the yaml file
- The yaml filename and directory name is changed to match the resource name.
Issue: #386
Signed-off-by: Shivam Mukhade <smukhade@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- modified description to add a summary
This patch moves the bentoml files to the task directory and
renames the yaml file
- The yaml filename is changed to match the resource name
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- modified description to add a summary
This patch also moves the buildah files to the task directory
and modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds display name for task
- adds tags for task
- modified description to add a summary
This patch moves the azure-cli files to the task directory and
renames the yaml file and directory
- The yaml filename and the directory is changed to match the resource name
- Modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds display name for task
- adds tags for task
- modified description to add a summary
This patch only moves the aws-cli files to the task directory
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds display name for task
- adds tags for task
- modified description to add a summary
This patch moves the argocd files to the task directory and
renames the yaml file and the directory
- The yaml fileaname and directory is changed to match the resource name
- Modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds display name for task
- adds tags for task
- modified description to add a summary
This patch moves the ansible-tower-cli files to the task directory and
renames the yaml file
- The yaml filename is changed to match the resource name
- Modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds display name for task
- adds tags for task
- modified description to add a summary
This patch moves the python files to the task directory and
renames the yaml file and the directory
- The yaml filename and directory is changed to match the resource name
- Modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- modified description to add a summary
This patch only moves the wget files to the task directory
and modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- modified description to add a summary
This patch only moves the tkn files to the task directory
and modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds display name for task
- adds tags for task
- modified description to add a summary
This patch moves the terraform-cli files to the task directory and
renames the yaml file
- The yaml filename is changed to match the resource name
- Modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- modified description to add a summary
This patch moves the telegrammessage files to the task directory and
renames the directory
- The directory name is changed to match the resource name
- Modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds display name for task
- adds tags for task
- modified description to add a summary
This patch moves the sonarqube files to the task directory and
renames the yaml file and the directory
- The yaml filename and directory is changed to match the resource name
- Modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds display name for task
- adds tags for task
- modified description to add a summary
This patch moves the skopeo files to the task directory and
renames the yaml file and directory
- The yaml filename and directory is changed to match the resource name
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds display name for task
- adds tags for task
- modified description to add a summary
This patch moves the mail files to the task directory and
renames the directory
- The directory name is changed to match the resource name
- Modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- modified description to add a summary
This patch also moves the s2i files to the task directory
and modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds display name for task
- adds tags for task
- modified description to add a summary
This patch also moves the replace-tokens files to the task directory
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds display name for task
- adds tags for task
- modified description to add a summary
This patch moves the pull-request files to the task directory and
renames the yaml file
- The yaml filename is changed to match the resource name
- Modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- modified description to add a summary
This patch also moves the prettier files to the task directory
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- modified description to add a summary
This patch also moves the openwhisk files to the task directory
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>
Changes include:
- adds version label
- adds a minimum pipeline versions supported by the task
- adds tags for task
- modified description to add a summary
This patch also moves the makisu files to the task directory
and modifies the path for install task command in readme file
Issue: #386
Signed-off-by: Puneet Punamiya <ppunamiy@redhat.com>