Skip to content

Commit

Permalink
US-598183: Added support for topology spread constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
PEGA-NarasimhaRao-Meda committed Feb 19, 2024
1 parent 5336ffc commit d196c93
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions charts/pega/values-minimal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ global:
# progressiveStreaming=2;useJDBC4ColumnNameAndLabelSemantics=2;
# SQL Server jdbc:sqlserver://localhost:1433;databaseName=dbName;selectMethod=cursor;sendStringParametersAsUnicode=false
# PostgreSQL jdbc:postgresql://localhost:5432/dbName
url: "jdbc:postgresql://localhost:5432/pega"
url: "YOUR_JDBC_URL"
# driverClass -- jdbc class. Valid values are:
#
# Oracle oracle.jdbc.OracleDriver
Expand All @@ -46,11 +46,11 @@ global:
# PostgreSQL org.postgresql.Driver
driverClass: "org.postgresql.Driver"
# pega.database.type Valid values are: mssql, oracledate, udb, db2zos, postgres
dbType: "postgres"
dbType: "YOUR_DATABASE_TYPE"
# For databases that use multiple JDBC driver files (such as DB2), specify comma separated values for 'driverUri'
driverUri: "https://jdbc.postgresql.org/download/postgresql-42.2.5.jar"
username: "postgres"
password: "postgres"
driverUri: "YOUR_JDBC_DRIVER_URI"
username: "YOUR_JDBC_USERNAME"
password: "YOUR_JDBC_PASSWORD"
# To avoid exposing username & password, leave the jdbc.password & jdbc.username parameters empty (no quotes),
# configure JDBC username & password parameters in the External Secrets Manager, and enter the external secret for the credentials
# make sure the keys in the secret should be DB_USERNAME and DB_PASSWORD respectively
Expand All @@ -59,8 +59,8 @@ global:
# Add a list of ; delimited connections properties. The list must end with ;
# For example: connectionProperties=user=usr;password=pwd;
connectionProperties: ""
rulesSchema: "rules"
dataSchema: "data"
rulesSchema: "YOUR_RULES_SCHEMA"
dataSchema: "YOUR_DATA_SCHEMA"
customerDataSchema: ""

customArtifactory:
Expand Down Expand Up @@ -88,15 +88,15 @@ global:
docker:
# If using a custom Docker registry, supply the credentials here to pull Docker images.
registry:
url: "hub.docker.com"
username: "narasimharaomeda"
password: "Mnrjr@14"
url: "YOUR_DOCKER_REGISTRY"
username: "YOUR_DOCKER_REGISTRY_USERNAME"
password: "YOUR_DOCKER_REGISTRY_PASSWORD"
# To avoid exposing Docker registry details, create secrets to manage your Docker registry credentials.
# Specify secret names as an array of comma-separated strings in double quotation marks using the imagePullSecretNames parameter. For example: ["secret1", "secret2"]
imagePullSecretNames: []
# Docker image information for the Pega docker image, containing the application server.
pega:
image: "pegasystems/pega:8.7.5"
image: "pegasystems/pega"

utilityImages:
busybox:
Expand Down Expand Up @@ -163,7 +163,7 @@ global:
ingress:
# Enter the domain name to access web nodes via a load balancer.
# e.g. web.mypega.example.com
domain: "web.minikube.com"
domain: "YOUR_MINIKUBE_NODE_DOMAIN"
# Configure custom path for given host along with pathType. Default pathType is ImplementationSpecific.
# path:
# pathType:
Expand Down

0 comments on commit d196c93

Please sign in to comment.