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

Documented serviceAccountName configuration for installer jobs #847

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
11 changes: 11 additions & 0 deletions charts/pega/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1182,6 +1182,17 @@ installer:
label: value
```

### Installer Service Account

If the installer pod needs to be run with a specific [service account](https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/), you can specify a custom `serviceAccountName` for your jobs.

Example:

```yaml
installer:
serviceAccountName: MY_INSTALLER_SERVICE_ACCOUNT_NAME
```

### Mount the custom certificates into the Tomcat container

Pega supports mounting and passing custom certificates into the tomcat container during your Pega Platform deployment. Pega supports the following certificate formats as long as they are encoded in base64: X.509 certificates such as PEM, DER, CER, CRT. To mount and pass the your custom certificates, use the `certificates` attributes as a map in the `values.yaml` file using the format in the following example.
Expand Down
2 changes: 2 additions & 0 deletions charts/pega/charts/installer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ bypassLoadEngineClasses: "false"
bypassLoadAssembledClasses: "false"
# If 'true', Helm will wait for the install or upgrade to finish, and only succeed if the job completes without error.
waitForJobCompletion: "false"
# Specify specific service account
# serviceAccountName: MY_INSTALLER_SERVICE_ACCOUNT_NAME
threads:
# Maximum Idle Thread.Default is 5
maxIdle: 5
Expand Down
Loading