The Pega Helm chart is used to deploy an instance of Pega Infinity into a Kubernetes environment. This readme provides a detailed description of possible configurations and their default values as applicable. You reference the Pega Helm chart to deploy using the parameter settings in the Helm chart using the helm install --; you can run the
helm --set` command to specify a one-time override specific parameter settings that you configured in the Pega Helm chart.
Enter your Kubernetes provider which will allow the Helm charts to configure to any differences between deployment environments. These values are case-sensitive and must be lowercase.
Value | Deployment target |
---|---|
k8s | Open-source Kubernetes |
openshift | Red Hat Openshift |
eks | Amazon Elastic Kubernetes Service (EKS) |
gke | Google Kubernetes Engine (GKE) |
pks | VMware Tanzu Kubernetes Grid Integrated Edition (TKGI), which used to be Pivotal Container Service (PKS) |
aks | Microsoft Azure Kubernetes Service (AKS) |
Example for a kubernetes environment:
provider: "k8s"
Use the action
section in the helm chart to specify a deployment action. The standard actions is to deploy against an already installed database, but you can also install a Pega system. These values are case-sensitive and must be lowercase.
For additional, required installation parameters, see the Installer section.
Value | Action |
---|---|
deploy | Start the Pega containers using an existing Pega database installation. |
install | Install Pega Platform into your database without deploying. |
install-deploy | Install Pega Platform into your database and then deploy. |
upgrade | Upgrade or patch Pega Platform in your database without deploying. |
upgrade-deploy | Upgrade or patch Pega Platform in your database and then deploy. |
Example:
action: "deploy"
Use the jdbc
section of the values file to specify how to connect to the Pega database. Pega must be installed to this database before deploying on Kubernetes.
These required connection details will point Pega to the correct database and provide the type of driver used to connect. Examples of the correct format to use are provided below.
Example for Oracle:
jdbc:
url: jdbc:oracle:thin:@//YOUR_DB_HOST:1521/YOUR_DB_NAME
driverClass: oracle.jdbc.OracleDriver
Example for Microsoft SQL Server:
jdbc:
url: jdbc:sqlserver://YOUR_DB_HOST:1433;databaseName=YOUR_DB_NAME;selectMethod=cursor;sendStringParametersAsUnicode=false
driverClass: com.microsoft.sqlserver.jdbc.SQLServerDriver
Example for IBM DB2 for LUW:
jdbc:
url: jdbc:db2://YOUR_DB_HOST:50000/YOUR_DB_NAME:fullyMaterializeLobData=true;fullyMaterializeInputStreams=true;progressiveStreaming=2;useJDBC4ColumnNameAndLabelSemantics=2;
driverClass: com.ibm.db2.jcc.DB2Driver
Example for IBM DB2 for z/OS:
jdbc:
url: jdbc:db2://YOUR_DB_HOST:50000/YOUR_DB_NAME
driverClass: com.ibm.db2.jcc.DB2Driver
Example for PostgreSQL:
jdbc:
url: jdbc:postgresql://YOUR_DB_HOST:5432/YOUR_DB_NAME
driverClass: org.postgresql.Driver
Pega requires a database driver JAR to be provided for connecting to the relational database. This JAR may either be baked into your image by extending the Pega provided Docker image, or it may be pulled in dynamically when the container is deployed. If you want to pull in the driver during deployment, you will need to specify a URL to the driver using the jdbc.driverUri
parameter. This address must be visible and accessible from the process running inside the container.
The Pega Docker images use Java 11, which requires that the JDBC driver that you specify is compatible with Java 11.
The simplest way to provide database authorization is via the jdbc.username
and jdbc.password
parameters. These values will create a Kubernetes Secret and at runtime will be obfuscated and stored in a secrets file.
You may optionally set your connection properties that will be sent to our JDBC driver when establishing new connections. The format of the string is [propertyName=property;]
.
It is standard practice to have separate schemas for your rules and data. You may specify them as rulesSchema
and dataSchema
. If desired, you may also optionally set the customerDataSchema
for your database. The customerDataSchema
defaults to value of dataSchema
if not specified. Additional schemas can be defined within Pega.
Example:
jdbc:
...
rulesSchema: "rules"
dataSchema: "data"
customerDataSchema: ""
Specify the location for the Pega Docker image. This image is available on DockerHub, but can also be mirrored and/or extended with the use of a private registry. Specify the url of the image with docker.pega.image
. You may optionally specify an imagePullPolicy with docker.pega.imagePullPolicy
.
When using a private registry that requires a username and password, specify them using the docker.registry.username
and docker.registry.password
parameters.
Example:
docker:
registry:
url: "YOUR_DOCKER_REGISTRY"
username: "YOUR_DOCKER_REGISTRY_USERNAME"
password: "YOUR_DOCKER_REGISTRY_PASSWORD"
pega:
image: "pegasystems/pega"
imagePullPolicy: "Always"
Specify a deployment name that is used to differentiate this deployment in your environment. This name will be prepended to the various Pega tiers and the associated k8s objects in your deployment. Your deployment name should be constrained to lowercase alphanumeric and '-' characters.
This is meant as an alternative to renaming individual deployment tiers (see Tiers of a Pega deployment).
For example:
global:
deployment:
name: app1-dev
will result in:
>kubectl get pods -n test
NAME READY STATUS RESTARTS AGE
app1-dev-search-0 1/1 Running 0 24m
app1-dev-batch-86584dcd6b-dsvdd 1/1 Running 0 24m
app1-dev-batch-86584dcd6b-lfwjg 1/1 Running 0 7m31s
app1-dev-stream-0 1/1 Running 0 24m
app1-dev-stream-1 1/1 Running 0 18m
app1-dev-web-788cfb8cc4-6c5nz 1/1 Running 0 8m57s
app1-dev-web-788cfb8cc4-gcltx 1/1 Running 0 24m
The default value is "pega" if it is unset.
Pega supports deployments using a multi-tier architecture model that separates application processing from k8s functions. Isolating processing in its own tier supports unique deployment configurations, including the Pega application prconfig, resource allocations, and scaling characteristics. Use the tier section in the helm chart to specify into which tiers you wish to deploy the tier with nodes dedicated to the logical tasks of the tier.
Three values.yaml files are provided to showcase real world deployment examples. These examples can be used as a starting point for customization and are not expected to deployed as-is.
For more information about the architecture for how Pega Platform runs in a Pega cluster, see How Pega Platform and applications are deployed on Kubernetes.
To provision a three tier Pega cluster, use the default example in the in the helm chart, which is a good starting point for most deployments:
Tier name | Description |
---|---|
web | Interactive, foreground processing nodes that are exposed to the load balancer. Pega recommends that these node use the node classification “WebUser” nodetype . |
batch | Background processing nodes which handle workloads for non-interactive processing. Pega recommends that these node use the node classification “BackgroundProcessing” nodetype . These nodes should not be exposed to the load balancer. |
stream | Nodes that run an embedded deployment of Kafka and are exposed to the load balancer. Pega recommends that these node use the node classification “Stream” nodetype . |
To get started running a personal deployment of Pega on kubernetes, you can handle all processing on a single tier. This configuration provides the most resource utilization efficiency when the characteristics of a production deployment are not necessary. The values-minimal.yaml configuration provides a starting point for this simple model.
Tier Name | Description |
---|---|
pega | One tier handles all foreground and background processing and is given a nodeType of "WebUser,BackgroundProcessing,search,Stream". |
To run a larger scale Pega deployment in production, you can split additional processing out to dedicated tiers. The values-large.yaml configuration provides an example of a multi-tier deployment that Pega recommends as a good starting point for larger deployments.
Tier Name | Description |
---|---|
web | Interactive, foreground processing nodes that are exposed to the load balancer. Pega recommends that these node use the node classification “WebUser” nodetype . |
batch | Background processing nodes which handle some of the non-interactive processing. Pega recommends that these node use the node classification “BackgroundProcessing,Search,Batch” nodetype . These nodes should not be exposed to the load balancer. |
stream | Nodes that run an embedded deployment of Kafka and are exposed to the load balancer. Pega recommends that these node use the node classification “Stream” nodetype . |
bix | Nodes dedicated to BIX processing can be helpful when the BIX workload has unique deployment or scaling characteristics. Pega recommends that these node use the node classification “Bix” nodetype . These nodes should not be exposed to the load balancer. |
Use the tier
section in the helm chart to specify the name of each tier configuration in order to label a tier in your Kubernetes deployment. This becomes the name of the tier's replica set in Kubernetes. This name must be unique across all Pega deployments to ensure compatibility with logging and monitoring tools.
Example:
name: "mycrm-prod-web"
Node classification is the process of separating nodes by purpose, predefining their behavior by assigning node types. When you associate a work resource with a specific node type,you optimize work performance in your Pega application. For more information, see Node classification.
Specify the list of Pega node types for this deployment. For more information about valid node types, see the Pega Community article on [Node Classification].
Node types for client-managed cloud environments
Example:
nodeType: ["WebUser","bix"]
Configuration related to Pega requestor settings is collected under requestor
block.
Configuration parameters:
passivationTimeSec
- inactivity time after which requestor is passivated (persisted) and its resources reclaimed.
Example:
requestor:
passivationTimeSec: 900
By default, security context for your Pega pod deployments pegasystems/pega
image uses pegauser
(9001) as the user. To configure an alternative user for your custom image, set value for runAsUser
. Note that pegasystems/pega image works only with pegauser(9001).
runAsUser
must be configured in securityContext
under each tier block and will be applied to Deployments/Statefulsets, see the Kubernetes Documentation.
Example:
tier:
- name: my-tier
securityContext:
runAsUser: RUN_AS_USER
Specify the service
yaml block to expose a Pega tier to other Kubernetes run services, or externally to other systems. The name of the service will be based on the tier's name, so if your tier is "web", your service name will be "pega-web". If you omit service, no Kubernetes service object is created for the tier during the deployment. For more information on services, see the Kubernetes Documentation.
Configuration parameters:
Parameter | Description | Default value |
---|---|---|
port |
The port of the tier to be exposed to the cluster. For HTTP this is generally 80 . |
80 |
targetPort |
The target port of the container to expose. The Pega container exposes web traffic on port 8080 . |
8080 |
serviceType |
The type of service you wish to expose. | LoadBalancer |
annotations |
Optionally add custom annotations for advanced configuration. Specifying a custom set of annotations will result in them being used instead of the default configurations. | n/a |
Example:
service:
port: 1234
targetPort: 1234
serviceType: LoadBalancer
Specify the ingress
yaml block to expose a Pega tier to access from outside Kubernetes. Pega supports the use of managing SSL certificates for HTTPS configuration using a variety of methods. For more information on services, see the Kubernetes Documentation.
Parameter | Description |
---|---|
domain |
Specify a domain on your network in which you create an ingress to the load balancer. |
appContextPath |
Specify the path for access to the Pega application on a specific tier. If not specified, users will have access to the Pega application via /prweb |
tls.enabled |
Specify the use of HTTPS for ingress connectivity. If the tls block is omitted, TLS will not be enabled. |
tls.secretName |
Specify the Kubernetes secret you created in which you store your SSL certificate for your deployment. For compatibility, see provider support for SSL certificate injection. |
tls.useManagedCertificate |
On GKE, set to true to use a managed certificate; otherwise use false . |
tls.ssl_annotation |
On GKE or EKS, set this value to an appropriate SSL annotation for your provider. |
annotations |
Optionally add custom annotations for advanced configurations. For Kubernetes and EKS deployments, including custom annotations overrides the default configuration; for GKE and AKS deployments, the deployment appends these custom annotations to the default list of annotations. |
Depending on your provider or type of certificate you are using use the appropriate annotation:
- For
EKS
- usealb.ingress.kubernetes.io/certificate-arn: \<*certificate-arn*\>
to specify required ARN certificate. - For
AKS
- useappgw.ingress.kubernetes.io/request-timeout: \<*time-out-in-seconds*\>
to configure application gateway timeout settings.
Example:
ingress:
domain: "tier.example.com"
annotations:
annotation-name-1: annotation-value-1
annotation-name-2: annotation-value-2
Provider | Kubernetes Secrets | Cloud SSL management service |
---|---|---|
AKS | Supported | None |
EKS | Not supported | Manage certificate using Amazon Certification Manager and use ssl_annotation - see example for details. |
PKS (now TKGI) | Supported | None |
GKE | Supported | Pre-shared or Google-managed certificates |
In order to manage the SSL certificate using a secret, do the following:
-
Create the SSL certificate and import it into the environment using the certificate management tools of your choice.
-
Create the secret and add the certificate to the secret file.
-
Add the secret name to the pega.yaml file.
-
Pass the secret to the cluster you created in your environment before you begin the Pega Platform deployment.
Example:
ingress:
domain: "tier.example.com"
tls:
enabled: true
secretName: web-domain-certificate
useManagedCertificate: false
Instead of Kubernetes secrets, on AWS you must manage your SSL certificates with ACM (AWS certificate manager). Using the ARN of your certificate, you configure the ssl_annotation
in your Helm chart.
Example:
ingress:
domain: "tier.example.com"
tls:
enabled: true
secretName:
useManagedCertificate: false
ssl_annotation:
alb.ingress.kubernetes.io/certificate-arn:<certificate-arn>
In addition to Kubernetes secrets, on GCP you may manage your SSL certificates in GKE with two alternative methods. For more information, see the Google Cloud documentation on SSL certificate management.
- Pre-shared certificate - add the certificate to your Google Cloud project and specify the appropriate ssl annotation in the ingress section.
Example:
ingress:
domain: "web.dev.pega.io"
tls:
enabled: true
useManagedCertificate: false
ssl_annotation:
ingress.gcp.kubernetes.io/pre-shared-cert: webCert
- Google-managed certificate - Pega Platform deployments can automatically generate a GKE managed certificate when you specify the appropriate SSL annotation in the ingress section. Using a static IP address is not mandatory; if you do not use it, remove the annotation. To use a static IP address, you must create the static IP address during the cluster configuration, then add it using this annotation in the pega.yaml.
Example:
ingress:
domain: "web.dev.pega.io"
tls:
enabled: true
useManagedCertificate: true
ssl_annotation:
kubernetes.io/ingress.global-static-ip-name: web-ip-address
You can optionally configure the resource allocation and limits for a tier using the following parameters. The default value is used if you do not specify an alternative value. See Managing Kubernetes Resources for more information about how Kubernetes manages resources.
Parameter | Description | Default value |
---|---|---|
replicas |
Specify the number of Pods to deploy in the tier. | 1 |
cpuRequest |
Initial CPU request for pods in the current tier. | 2 |
cpuLimit |
CPU limit for pods in the current tier. | 4 |
memRequest |
Initial memory request for pods in the current tier. | 12Gi |
memLimit |
Memory limit for pods in the current tier. | 12Gi |
initialHeap |
Specify the initial heap size of the JVM. | 4096m |
maxHeap |
Specify the maximum heap size of the JVM. | 8192m |
You can optionally pass in JVM arguments to Tomcat. Depending on the parameter/attribute used, the arguments will be placed into JAVA_OPTS
or CATALINA_OPTS
environmental variables.
Some of the Best-practice arguments for JVM tuning are included by default in CATALINA_OPTS
.
Pass the required JVM parameters as catalinaOpts
attributes in respective values.yaml
file.
Example:
tier:
- name: my-tier
javaOpts: ""
catalinaOpts: "-XX:SomeJVMArg=XXX"
Note that some JVM arguments are non-overrideable i.e. baked in the Docker image.
Check RecommendedJVMArgs.md for more details.
Pega supports configuring certain nodes in your Kubernetes cluster with a label to identify its attributes, such as persistent storage. For such configurations, use the Pega Helm chart nodeSelector property to assign pods in a tier to run on particular nodes with a specified label. For more information about assigning Pods to Nodes including how to configure your Nodes with labels, see the Kubernetes documentation on nodeSelector.
tier:
- name: "stream"
nodeType: "Stream"
nodeSelector:
disktype: ssd
Pega uses liveness, readiness, and startup probes to determine application health in your deployments. For an overview of these probes, see Configure Liveness, Readiness and Startup Probes. Configure a probe for liveness to determine if a Pod has entered a broken state; configure it for readiness to determine if the application is available to be exposed; configure it for startup to determine if a pod is ready to be checked for liveness. You can configure probes independently for each tier. If not explicitly configured, default probes are used during the deployment. Set the following parameters as part of a livenessProbe
, readinessProbe
, or startupProbe
configuration.
Notes:
- Kubernetes 1.18 and later supports
startupProbe
. If your deployment uses a Kubernetes version older than 1.18, the helm charts excludestartupProbe
and use different default values forlivenessProbe
andreadinessProbe
. timeoutSeconds
cannot be greater thanperiodSeconds
in some GCP environments. For details, see this API library from Google.
Parameter | Description | Default livenessProbe |
Default readinessProbe |
---|---|---|---|
initialDelaySeconds |
Number of seconds after the container has started before probes are initiated. | 200 |
30 |
timeoutSeconds |
Number of seconds after which the probe times out. | 20 |
10 |
periodSeconds |
How often (in seconds) to perform the probe. | 30 |
10 |
successThreshold |
Minimum consecutive successes for the probe to be considered successful after it determines a failure. | 1 |
1 |
failureThreshold |
The number consecutive failures for the pod to be terminated by Kubernetes. | 3 |
3 |
Parameter | Description | Default livenessProbe |
Default readinessProbe |
Default startupProbe |
---|---|---|---|---|
initialDelaySeconds |
Number of seconds after the container has started before probes are initiated. | 0 |
0 |
10 |
timeoutSeconds |
Number of seconds after which the probe times out. | 20 |
10 |
10 |
periodSeconds |
How often (in seconds) to perform the probe. | 30 |
10 |
10 |
successThreshold |
Minimum consecutive successes for the probe to be considered successful after it determines a failure. | 1 |
1 |
1 |
failureThreshold |
The number consecutive failures for the pod to be terminated by Kubernetes. | 3 |
3 |
20 |
Example:
tier:
- name: my-tier
livenessProbe:
initialDelaySeconds: 60
timeoutSeconds: 30
failureThreshold: 5
readinessProbe:
initialDelaySeconds: 400
failureThreshold: 30
You may configure an HPA to scale your tier on a specified metric. Only tiers that do not use volume claims are scalable with an HPA. Set hpa.enabled
to true
in order to deploy an HPA for the tier. For more details, see the Kubernetes HPA documentation.
Parameter | Description | Default value |
---|---|---|
hpa.minReplicas |
Minimum number of replicas that HPA can scale-down | 1 |
hpa.maxReplicas |
Maximum number of replicas that HPA can scale-up | 5 |
hpa.targetAverageCPUValue |
Threshold value for scaling based on absolute CPU usage (The default value is 2.8 which represents 2.8 Kubernetes CPU units) |
2.8 |
hpa.targetAverageCPUUtilization |
Threshold value for scaling based on initial CPU request utilization (Can be set instead of hpa.targetAverageCPUValue to set the threshold as a percentage of the requested CPU) |
|
hpa.targetAverageMemoryUtilization |
Threshold value for scaling based on initial memory utilization (The default value is 85 which corresponds to 85% of 12Gi ) |
85 |
hpa.enableCpuTarget |
Set to true if you want to enable scaling based on CPU utilization or false if you want to disable it | true |
hpa.enableMemoryTarget |
Set to true if you want to enable scaling based on memory utilization or false if you want to disable it (Pega recommends leaving this disabled) | false |
A volumeClaimTemplate
may be configured for any tier to allow for persistent storage. This allows for stateful tiers such as stream
to be run as a StatefulSet rather than a Deployment. Specifying a volumeClaimTemplate
should never be used with a custom deployment strategy for rolling updates.
The deploymentStrategy
can be used to optionally configure the strategy for any tiers deployed as a Kubernetes Deployment. This value will cannot be applied to StatefulSet deployed tiers which use the volumeClaimTemplate
parameter.
Pega supports a variety of configuration options for cluster-wide and application settings. In cases when you want to pass a specific environment variable into your deployment on a tier-by-tier basis, you specify a custom env
block for your tier as shown in the example below.
Example:
tier:
- name: my-tier
custom:
env:
- name: MY_ENV_NAME
value: MY_ENV_VALUE
If the pod needs to be run with a specific service account, you can specify a custom serviceAccountName
for your deployment tier.
Example:
tier:
- name: my-tier
custom:
serviceAccountName: MY_SERVICE_ACCOUNT_NAME
You may optionally provide custom annotations for Pods as metadata to be consumed by other tools and libraries. Pod annotations may be specified by using the podAnnotations
element for a given tier
.
Example:
tier:
- name: my-tier
podAnnotations:
<annotation-key>: <annotation-value>
While Pega includes default configuration files in the Helm charts, the charts provide extension points to override the defaults with additional customizations. To change the configuration file, specify the replacement implementation to be injected into a ConfigMap.
Parameter | Description | Default value |
---|---|---|
prconfig |
A complete prconfig.xml file to inject. | See prconfig.xml. |
prlog4j2 |
A complete prlog4j2.xml file to inject. | See prlog4j2.xml. |
contextXML |
A complete context.xml template file to inject. | See context.xml.tmpl. |
serverXML |
A complete server.xml file to inject | See server.xml. |
webXML |
A complete web.xml file to inject | No default provided, but if config/deploy/web.xml exists, it will be used as the default. |
Example:
tier:
- name: my-tier
custom:
prconfig: |-
...
prlog4j2: |-
...
contextXML: |-
...
serverXML: |-
...
webXML: |-
...
While most cloud native deployments will take advantage of aggregated logging using a tool such as EFK, there may be a need to access the logs from Tomcat directly. In the event of a need to download the logs from tomcat, a username and password will be required. You may set pegaDiagnosticUser
and pegaDiagnosticPassword
to set up authentication for Tomcat.
If you are planning to use Cassandra (usually as a part of Pega Customer Decision Hub), you may either point to an existing deployment or deploy a new instance along with Pega.
To use an existing Cassandra deployment, set cassandra.enabled
to false
and configure the dds
section to reference your deployment.
Example:
cassandra:
enabled: false
dds:
externalNodes: "CASSANDRA_NODE_IPS"
port: "9042"
username: "cassandra_username"
password: "cassandra_password"
You may deploy a Cassandra instance along with Pega. Cassandra is a separate technology and needs to be independently managed. When deploying Cassandra, set cassandra.enabled
to true
and leave the dds
section as-is. For more information about configuring Cassandra, see the Cassandra Helm charts.
Deployment | CPU | Memory |
---|---|---|
Development | 2 cores | 4Gi |
Production | 4 cores | 8Gi |
Example:
cassandra:
enabled: true
# Set any additional Cassandra parameters. These values will be used by Cassandra's helm chart.
persistence:
enabled: true
resources:
requests:
memory: "4Gi"
cpu: 2
limits:
memory: "8Gi"
cpu: 4
dds:
externalNodes: ""
port: "9042"
username: "dnode_ext"
password: "dnode_ext"
Use the pegasearch
section to configure a deployment of ElasticSearch for searching Rules and Work within Pega. This deployment is used exclusively for Pega search, and is not the same ElasticSearch deployment used by the EFK stack or any other dedicated service such as Pega BI.
Pega recommends using the chart 'backingservices' to enable Pega Infinity backing service and to deploy the latest generation of search and reporting capabilities to your Pega applications that run independently on nodes provisioned exclusively to run these services. This is an independently manageable search solution that replaces the previous implementation of Elasticsearch. The SRS supports, but does not require you to enable, Elasticsearch for your Pega Infinity deployment searching capability.
To use this search and reporting service, follow the deployment instructions provided at 'backingservices' before you configure and deploy pega
helm chart. You must configure the SRS URL for your Pega Infinity deployment using the parameter in values.yaml as shown the the following table and exmple:
Parameter | Description | Default value |
---|---|---|
externalSearchService |
Set the pegasearch.externalSearchService as true to use Search and Reporting service as the search functionality provider to the Pega platform |
false |
externalURL |
Set the pegasearch.externalURL value to the Search and Reporting Service endpoint url |
"" |
Example:
pegasearch:
externalSearchService: true
externalURL: "http://srs-service.namespace.svc.cluster.local"
Use the below configuration to provision an internally deployed instance of elasticsearch for search functionality within the platform:
Parameter | Description | Default value |
---|---|---|
image |
Set the pegasearch.image location to a registry that can access the Pega search Docker image. The image is available on DockerHub, and you may choose to mirror it in a private Docker repository. |
pegasystems/search:latest |
imagePullPolicy |
Optionally specify an imagePullPolicy for the search container. | "" |
replicas |
Specify the desired replica count. | 1 |
minimumMasterNodes |
To prevent data loss, you must configure the minimumMasterNodes setting so that each master-eligible node is set to the minimum number of master-eligible nodes that must be visible in order to form a cluster. Configure this value using the formula (n/2) + 1 where n is replica count or desired capacity. For more information, see the ElasticSearch important setting documentation for more information. | 1 |
podSecurityContext.runAsUser |
ElasticSearch defaults to UID 1000. In some environments where user IDs are restricted, you may configure your own using this parameter. | 1000 |
set_vm_max_map_count |
Elasticsearch uses a mmapfs directory by default to store its indices. The default operating system limits on mmap counts is likely to be too low, which may result in out of memory exceptions. An init container is provided to set the value correctly, but this action requires privileged access. If privileged access is not allowed in your environment, you may increase this setting manually by updating the vm.max_map_count setting in /etc/sysctl.conf according to the ElasticSearch documentation and can set this parameter to false to disable the init container. For more information, see the ElasticSearch documentation. |
true |
set_data_owner_on_startup |
Set to true to enable an init container that runs a chown command on the mapped volume at startup to reset the owner of the ES data to the current user. This is needed if a random user is used to run the pod, but also requires privileges to change the ownership of files. | false |
podAnnotations |
Configurable annotations applied to all Elasticsearch pods. | {} |
Additional env settings supported by ElasticSearch may be specified in a custom.env
block as shown in the example below.
Example:
pegasearch:
image: "pegasystems/search:8.3"
memLimit: "3Gi"
replicas: 1
minimumMasterNodes: 2
custom:
env:
- name: TZ
value: "EST5EDT"
Pega requires a relational database that stores the rules, data, and work objects used and generated by Pega Platform. The Pega Platform deployment guide provides detailed information about the requirements and instructions for installations and upgrades. Follow the instructions for Tomcat and your environment's database server.
The Helm charts also support an automated install or upgrade with a Kubernetes Job. The Job utilizes an installation Docker image and can be activated with the action
parameter in the Pega Helm chart.
For installations of the Pega platform, you must specify the installer Docker image and an initial default password for the [email protected]
user.
Example:
installer:
image: "YOUR_INSTALLER_IMAGE:TAG"
adminPassword: "ADMIN_PASSWORD"
To upgrade Pega Platform software deployed in a Kubernetes environment, you must download the latest Pega software from Pega Digital Software Delivery and then use the appropriate upgrade guide:
- Use the appropriate Pega Platform deployment Upgrade Guide available from the page, Stay current with Pega.
- Use the latest Pega application software Upgrade Guide, which is separate from Pega Platform software. You can locate the appropriate upgrade guide for your installed application from the page, All Products.
To apply a Pega Platform patch with zero downtime to your existing Pega platform software, you must use installer.upgrade.upgradeType "out-of-place"
option. A zero downtime patch allows you to continue working in your application while you patch your system. For step-by-step guidance to apply a Pega Platform patch, see the Pega-provided runbook, Patching Pega Platform in your deployment. The patch process applies only changes observed between the patch and your currently running version and then separately upgrades the data. For details about Pega patches, see Pega software maintenance and extended support policy.
Upgrade type | Description |
---|---|
in-place |
An in-place upgrade will upgrade both rules and data using a single process. This process involves system downtime, which means you cannot use the system until you complete the upgrade. |
out-of-place |
Use the out-of-place upgrade option to apply a patch with zero-downtime. This process uses a split-schema to apply patches. It creates a temporary schema, specified with the installer.targetRulesSchema: "rules_upgrade" parameter, in your current database then migrates the rules to it. To apply a patch, specify installer.upgradeType: out-of-place" and installer.targetRulesSchema: "rules_upgrade" . |
Example:
installer:
image: "YOUR_INSTALLER_IMAGE:TAG"
upgrade:
upgradeType: "out-of-place"
targetRulesSchema: "rules_upgrade"
You can add annotations to the installer pod.
Example:
installer:
podAnnotations:
annotation-name1: annotation-value1
annotation-name2: annotation-value2