This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc doc added missing rbac doc
- Loading branch information
charles-edouard.breteche
committed
Mar 30, 2020
1 parent
b7fdeda
commit e98bbfb
Showing
31 changed files
with
2,604 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
Oops, something went wrong.