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

Updated the documentation about the podLabels of the Pega tiers and of the installers #825

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
25 changes: 25 additions & 0 deletions charts/pega/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -722,6 +722,19 @@ tier:
<annotation-key>: <annotation-value>
```

### Custom Labels for Pods

You may optionally provide custom labels for Pods as metadata to be consumed by other tools and libraries. Pod labels may be specified by using the `podLabels` element for a given `tier`.

Example:

```yaml
tier:
- name: my-tier
podLabels:
<label-key>: <label-value>
```

### Pod affinity

You may optionally configure the pod affinity so that it is restricted to run on particular node(s), or to prefer to run on particular nodes. Pod affinity may be specified by using the `affinity` element for a given `tier`. See the official [Kubernetes Documentation](https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/).
Expand Down Expand Up @@ -1169,6 +1182,18 @@ installer:
annotation-name2: annotation-value2
```

### Installer Pod Labels

You can add labels to the installer pod.

Example:

```yaml
installer:
podLabels:
label-name1: label-value1
label-name2: label-value2
```

### Installer Node Selector

Expand Down
Loading