Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
added pipeline helm chart
Browse files Browse the repository at this point in the history
doc


doc


added missing rbac


doc
  • Loading branch information
charles-edouard.breteche committed Mar 30, 2020
1 parent b7fdeda commit e98bbfb
Show file tree
Hide file tree
Showing 31 changed files with 2,604 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .prow.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
repoSync: &repoSync
inputs:
resources:
- name: src
type: git
steps:
- image: ubuntu
workingDir: /workspace/src/helm
script: |
#!/usr/bin/env sh
./repo-sync.sh
postsubmits:
- name: push-helm-repo-sync
agent: tekton-pipeline
always_run: true
skip_report: false
branches:
- master
pipeline_run_spec:
pipelineSpec:
resources:
- name: src
type: git
tasks:
- taskSpec: *repoSync
resources:
inputs:
- name: src
resource: src
resources:
- name: src
resourceRef:
name: PROW_IMPLICIT_GIT_REF
4 changes: 4 additions & 0 deletions helm/OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# The OWNERS file is used by prow to automatically merge approved PRs.

approvers:
# - eddycharly
39 changes: 39 additions & 0 deletions helm/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Tekton Kubernetes Helm Charts

This functionality is in beta and is subject to change.

## Helm charts repository

**TODO** this is not yet available, maybe document how to install from sources

The Tekton helm charts repository is available here: `https://charts.tekton.dev`.

Add the Tekton helm charts repo:

```bash
helm repo add tekton https://charts.tekton.dev
```

## Helm charts

The following charts are available, please look in the chart directories for the documentation of each chart.

| Tekton chart | Chart link |
|---|---|
| Tekton Pipelines | [chart documentation](./pipeline/README.md) |
| Tekton Dashboard | TODO |
| Tekton Triggers | TODO |
| Tekton Operator | TODO |

## Kubernetes Versions

The kubernetes versions compatible with the charts are driven by the version of Tekton to be deployed.
Please look at the Tekton documentation to know the kubernetes versions supported.

Openshift compatibility should also be supported.

## Helm versions

The charts should be compatilbe with both helm v2 and v3.

Note that some parameters apply to only one version of helm, this will be stated in the chart documentation.
29 changes: 29 additions & 0 deletions helm/pipeline/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Copyright 2020 The Tekton Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

name: pipeline
apiVersion: v1
version: 0.0.1
appVersion: 0.10.0
home: https://github.com/tektoncd/pipeline
keywords:
- helm
- tekton pipeline
maintainers:
- name: eddycharly
email: [email protected]
description: |
This chart bootstraps installation of [tekton pipeline](https://github.com/tektoncd/pipeline).
It can optionnaly install the fpipeline webhook component.
Loading

0 comments on commit e98bbfb

Please sign in to comment.