tekton-kickstarter VS catalog

Compare tekton-kickstarter vs catalog and see what are their differences.

tekton-kickstarter

Templates, scripts and samples for quickly building CI/CD with Tekton. (by MartinHeinz)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
tekton-kickstarter catalog
3 4
44 640
- 1.7%
0.0 7.5
over 1 year ago 2 days ago
Makefile Shell
MIT License Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

tekton-kickstarter

Posts with mentions or reviews of tekton-kickstarter. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-04-14.
  • Cloud Native CI/CD with Tekton - Building Custom Tasks
    5 projects | dev.to | 14 Apr 2021
    # https://github.com/MartinHeinz/tekton-kickstarter/blob/master/misc/config.yaml apiVersion: v1 kind: ConfigMap metadata: name: repo-app-mapping data: repo-app-mapping.yaml: | '[email protected]:kelseyhightower/nocode.git': 'nocode' '[email protected]:MartinHeinz/blog-frontend.git': 'blog-backend' '[email protected]:MartinHeinz/game-server-operator.git': 'game-server-operator' '[email protected]:MartinHeinz/python-project-blueprint.git': 'sample-python-app' --- # https://github.com/MartinHeinz/tekton-kickstarter/blob/master/tasks/get-application-name/get-application-name.yaml apiVersion: tekton.dev/v1beta1 kind: ClusterTask metadata: name: get-application-name spec: params: - name: repository-url type: string - name: mapping-file type: string steps: - name: get-application-name image: mikefarah/yq script: | #!/usr/bin/env sh set -xe yq e '."$(params.repository-url)"' /config/$(params.mapping-file) | tr -d '\012\015' > /tekton/results/application-name results: - name: application-name # Can be accessed by other Tasks with $(tasks.get-application-name.results.application-name) workspaces: - name: config mountPath: /config
  • Cloud-Native CI/CD with Tekton - Laying The Foundation
    5 projects | dev.to | 15 Mar 2021
    Tekton is a versatile tool that can get quite complicated and therefore one short article definitely isn't enough to go over every piece of it in detail. This introduction should give you enough to get up and running with all the configurations in place. In the following articles in these series, we will explore how to use and build your own custom Tasks and Pipelines, deal with event handling - both HTTP events and scheduled with cron and much more. So, stay tuned for next article and in the meantime you can have a sneak peek at files in tekton-kickstarter repository where all the resources from this and following articles are already available. And in case you have some feedback or suggestion feel free to open an issue in the repository or just star it if like you the content. 😉
  • Cloud Native CI/CD with Tekton — Laying The Foundation
    1 project | /r/devops | 15 Mar 2021
    Article: https://itnext.io/cloud-native-ci-cd-with-tekton-laying-the-foundation-a377a1b59ac0 Repository: https://github.com/MartinHeinz/tekton-kickstarter

catalog

Posts with mentions or reviews of catalog. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-08-25.
  • Tektron clone from gitea over ssh
    2 projects | /r/devops | 25 Aug 2022
    May be this https://github.com/tektoncd/catalog/issues/1052 bug…
  • How to reuse steps in Tekton tasks
    5 projects | dev.to | 21 May 2022
    The most obvious way would be copying and pasting the steps, but for more complex scenarios, where there are n tasks, this becomes error prone. Using a template engine like helm could help, but learning another templating engine, plus having to change the contents of said tasks also becomes a burden. Instead, kustomize has a set of tools to make this job easier, while enjoying reutilizing tasks from the tektoncd/catalog.
  • Cloud Native CI/CD with Tekton - Building Custom Tasks
    5 projects | dev.to | 14 Apr 2021
    Another common thing that you might need in your Tasks is some kind of a storage where you can write data that can be used by subsequent steps in the Task or by other Tasks in the pipeline. The most common use case for this would be a place to fetch git repo. This kind of a storage is called workspace in Tekton and the following example shows a Tasks that mounts and clears the storage using rmdir:
  • Problems with CI/CD on kubernetes
    1 project | /r/kubernetes | 26 Feb 2021

What are some alternatives?

When comparing tekton-kickstarter and catalog you can also consider the following projects:

gitlab-ci-local - Tired of pushing to test your .gitlab-ci.yml?

docker-airflow - Docker Apache Airflow

k8s-rbac-model - A multi tenant and multi project RBAC model implementation in Kubernetes

catalog - An Open Source PHP + MySQL application to manage your home library

pipeline - A cloud-native Pipeline resource.

infrastructure - Kubernetes infrastructure deployed by Terraform

operator - Kubernetes operator to manage installation, updation and uninstallation of tektoncd projects (pipeline, …)

community - Community documentation for the Tekton project

tekton-workshops - A small project for enabling teams and individuals to Tekton, with samples and use cases from real life scenarios.

reviewdog - 🐶 Automated code review tool integrated with any code analysis tools regardless of programming language

tekton-tasks-kustomize - Customizing Tekton tasks with kustomize