Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
240b0a2
new file: packs/kubewatch-3.5.0/README.md
jaimegomez-source Mar 5, 2026
5b7e4d8
PAC-3780 - Upgrade kubewatch pack to 3.5.0
jaimegomez-source Mar 5, 2026
90891b8
Merge branch 'main' into main
vishwanaths Mar 6, 2026
277607a
Merge branch 'spectrocloud:main' into main
jaimegomez-source Mar 9, 2026
e2dc099
Merge branch 'spectrocloud:main' into main
jaimegomez-source Mar 11, 2026
12eab4a
new file: packs/trident-operator-26.0.2/README.md
jaimegomez-source Mar 19, 2026
b637dfb
Merge branch 'spectrocloud:main' into PAC-3837
jaimegomez-source Mar 19, 2026
8b2227c
Merge branch 'spectrocloud:main' into main
jaimegomez-source Mar 19, 2026
90fdb42
Merge pull request #2 from jaimegomez-source/PAC-3837
jaimegomez-source Mar 20, 2026
50389f6
Merge branch 'spectrocloud:main' into main
jaimegomez-source Mar 24, 2026
e2d9749
renamed: packs/trident-operator-26.0.2/README.md -> packs/trident…
jaimegomez-source Mar 24, 2026
d47a444
PAC-3837 - Upgrade trident-operator pack to 26.02.0
jaimegomez-source Mar 24, 2026
a87a084
Merge branch 'main' into main
vishwanaths Mar 25, 2026
6df0aee
modified: packs/trident-operator-26.02.0/values.yaml
jaimegomez-source Mar 25, 2026
3c6cd96
Merge branch 'main' of https://github.com/jaimegomez-source/pack-central
jaimegomez-source Mar 25, 2026
4f8cdde
modified: packs/trident-operator-addon-26.02.0/values.yaml
jaimegomez-source Mar 25, 2026
7de90dd
Merge branch 'spectrocloud:main' into main
jaimegomez-source Apr 29, 2026
9e280d6
PAC-4031 - Upgrade elastic-operator pack to 3.3.2 - PAC-4032 - elasti…
jaimegomez-source Apr 29, 2026
aa97747
Merge branch 'spectrocloud:main' into main
jaimegomez-source Jun 24, 2026
e16631a
new file: packs/outcold-26.04.4/charts/collectord-splunk-kubernete…
jaimegomez-source Jun 24, 2026
9598a23
Rename readme.md to README.md
jaimegomez-source Jun 24, 2026
8dd98bb
Merge branch 'spectrocloud:main' into main
jaimegomez-source Jul 9, 2026
deceae2
Merge branch 'spectrocloud:main' into main
jaimegomez-source Aug 5, 2026
3d0b470
Merge branch 'spectrocloud:main' into main
jaimegomez-source Aug 11, 2026
cc50cc4
new file: packs/tekton-pipelines-1.15.1/README.md
jaimegomez-source Aug 11, 2026
8fc314f
modified: packs/tekton-pipelines-1.15.1/README.md
jaimegomez-source Aug 31, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 57 additions & 0 deletions packs/tekton-pipelines-1.15.1/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Tekton Pipelines

Tekton Pipelines is a Kubernetes-native extension that installs and runs on your cluster, providing a set of Kubernetes Custom Resources (Tasks, Pipelines, PipelineRuns, and TaskRuns). These act as building blocks to assemble robust, cloud-native continuous integration and continuous delivery (CI/CD) workflows.

## Prerequisites

- **Kubernetes:** Version 1.29+ (e.g., AWS EKS, OpenShift, or generic clusters).
- **Helm:** Version 3.0.0+ installed and configured.
- **Storage:** A default `StorageClass` configured in your cluster (such as the EBS CSI driver) if utilizing Tekton Workspaces for pipeline artifacts.

## Parameters

The following tables lists the configurable parameters of the Tekton Pipelines chart and their default values.

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| `replicaCount` | int | `1` | Number of replicas for the Tekton controller |
| `image.repository` | string | `"gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/controller"` | Image repository for the controller |
| `image.tag` | string | `"v1.12.0"` | Image tag (defaults to chart appVersion) |
| `webhook.enabled` | bool | `true` | Enable the mutating/validating webhook |
| `featureFlags.enable-api-fields` | string | `"stable"` | Setting to `alpha` enables experimental features |
| `resources.requests.cpu` | string | `"100m"` | CPU requests for the controller pods |
| `resources.requests.memory` | string | `"100Mi"` | Memory requests for the controller pods |
| `serviceMonitor.enabled` | bool | `true` | Enable Prometheus ServiceMonitor for cloud-native observability |

## Upgrade

**Note:** Before upgrading, particularly across major versions, it is recommended to ensure no critical `PipelineRuns` or `TaskRuns` are actively executing.

## Usage

To install `tekton-pipelines`, deploy a tekton-pipelines addon profile on cluster.

You are now ready to deploy Tekton resources. For instance, to test your setup with a simple Task:

```bash
cat <<EOF | kubectl apply -f -
apiVersion: tekton.dev/v1beta1
kind: Task
metadata:
name: hello-world
spec:
steps:
- name: echo
image: busybox
command:
- echo
args:
- "Hello from Tekton!"
EOF
```

## References

- [Tekton Pipelines Official Documentation](https://tekton.dev/docs/pipelines/)
- [Tekton GitHub Repository](https://github.com/tektoncd/pipeline)
- [Tekton Tasks Hub](https://hub.tekton.dev/)
Binary file added packs/tekton-pipelines-1.15.1/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading