Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document default-managed-by-label #1964

Merged
merged 1 commit into from
Jan 28, 2020
Merged
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,8 @@ The example below overrides the following :
- the default timeout (60 minutes) to 20 minutes
- the default pod template to include an annotation preventing clusterautoscaler to evict a running task pod
(see [here](./taskruns.md#pod-template) or [here](./pipelineruns.md#pod-template) for more infos on pod templates)
- the default `app.kuberrnetes.io/managed-by` label applied to all Pods created
to execute `TaskRun`s.

```yaml
apiVersion: v1
Expand All @@ -211,6 +213,7 @@ data:
default-pod-template: |
annotations:
cluster-autoscaler.kubernetes.io/safe-to-evict: 'false'
default-managed-by-label-value: "my-tekton-installation"
```

*NOTE:* The `_example` key in the provided [config-defaults.yaml](./../config/config-defaults.yaml)
Expand Down