diff --git a/addons-3.24.10.tgz b/addons-3.24.10.tgz new file mode 100644 index 000000000..24dcd5fd2 Binary files /dev/null and b/addons-3.24.10.tgz differ diff --git a/backingservices-3.24.10.tgz b/backingservices-3.24.10.tgz new file mode 100644 index 000000000..5f51b84ca Binary files /dev/null and b/backingservices-3.24.10.tgz differ diff --git a/charts/addons/Chart.yaml b/charts/addons/Chart.yaml index d606e5084..f387d9482 100644 --- a/charts/addons/Chart.yaml +++ b/charts/addons/Chart.yaml @@ -3,4 +3,4 @@ apiVersion: v1 appVersion: "1.0" description: A Helm chart for Kubernetes name: addons -version: "3.24.8" +version: "3.24.9" diff --git a/charts/backingservices/Chart.yaml b/charts/backingservices/Chart.yaml index 1634a779a..52ae1df6c 100644 --- a/charts/backingservices/Chart.yaml +++ b/charts/backingservices/Chart.yaml @@ -17,4 +17,4 @@ description: Helm Chart to provision the latest Search and Reporting Service (SR # The chart version: Pega provides this as a useful way to track changes you make to this chart. # As a best practice, you should increment the version number each time you make changes to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: "3.24.8" +version: "3.24.9" diff --git a/charts/pega/Chart.yaml b/charts/pega/Chart.yaml index 2adde1c15..de1cadd0d 100644 --- a/charts/pega/Chart.yaml +++ b/charts/pega/Chart.yaml @@ -1,7 +1,7 @@ --- apiVersion: v1 name: pega -version: "3.24.8" +version: "3.24.10" description: Pega installation on kubernetes keywords: - pega diff --git a/charts/pega/EmbeddedStream.md b/charts/pega/EmbeddedStream.md new file mode 100644 index 000000000..0dd5606e0 --- /dev/null +++ b/charts/pega/EmbeddedStream.md @@ -0,0 +1,168 @@ +### Embedded Stream with latest helm chart version +Starting from Infinity 24.2, support for embedded Stream is removed. As a best practice, update your Stream configuration to an external Kafka service. +To configure embedded Stream in Pega Platform ’24.1 and earlier using the Pega Helm chart version 3.25, perform the following steps. + +#### Configure values.yaml +1. Add Stream tier details in the values.yaml file under Pega tiers section. + #### Example for values.yaml and values-large.yaml + ``` + - name: "stream" + # Create a stream tier for queue processing. This tier deploys + # as a stateful set to ensure durability of queued data. It may + # be optionally exposed to the load balancer. + # Note: Stream tier is deprecated. As a best practice, enable externalized Kafka service configuration under External Services. + # When externalized Kafka service is enabled, remove the entire stream tier. + nodeType: "Stream" + + # Pega requestor specific properties + requestor: + # Inactivity time after which requestor is passivated + passivationTimeSec: 900 + + service: + port: 7003 + targetPort: 7003 + + # If a nodeSelector is required for this or any tier, it may be specified here: + # nodeSelector: + # disktype: ssd + + ingress: + enabled: true + # Enter the domain name to access web nodes via a load balancer. + # e.g. web.mypega.example.com + domain: "YOUR_STREAM_NODE_DOMAIN" + tls: + # Enable TLS encryption + enabled: true + # secretName: + # useManagedCertificate: false + # ssl_annotation: + + livenessProbe: + port: 8081 + + # To configure an alternative user for your custom image, set value for runAsUser + # To configure an alternative group for volume mounts, set value for fsGroup + # See, https://github.com/pegasystems/pega-helm-charts/blob/master/charts/pega/README.md#security-context + # securityContext: + # runAsUser: 9001 + # fsGroup: 0 + + # To specify security settings for a Container, include the securityContext field in the Container manifest + # Security settings that you specify for a Container apply only to the pega container, + # and they override settings made at the Pod level when there is overlap. Container settings + # do not affect the Pod's Volumes. + # See, https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container + # containerSecurityContext: + # capabilities: + # add: ["SYS_TIME"] + + replicas: 2 + + volumeClaimTemplate: + resources: + requests: + storage: 5Gi + + # Set enabled to true to include a Pod Disruption Budget for this tier. + # To enable this budget, specifiy either a pdb.minAvailable or pdb.maxUnavailable + # value and comment out the other parameter. + pdb: + enabled: false + minAvailable: 1 + # maxUnavailable: "50%" + + resources: + requests: + memory: "12Gi" + cpu: 3 + limits: + memory: "12Gi" + cpu: 4 + ``` + + #### Example for values-minimal.yaml + For values-minimal.yaml, add the Stream nodeType to the minikube tier. + ``` + # Specify the Pega tiers to deploy + # For a minimal deployment, use a single tier to reduce resource consumption. + # Note: Stream tier is deprecated. As a best practice, enable externalized Kafka service configuration under External Services. + # configuration under External Services + tier: + - name: "minikube" + nodeType: "Stream,BackgroundProcessing,WebUser,Search" + + service: + httpEnabled: true + port: 80 + targetPort: 8080 + # Without a load balancer, use a direct NodePort instead. + serviceType: "NodePort" + # To configure TLS between the ingress/load balancer and the backend, set the following: + tls: + enabled: false + # To avoid entering the certificate values in plain text, configure the keystore, keystorepassword, cacertificate parameter + # values in the External Secrets Manager, and enter the external secret name below + # make sure the keys in the secret should be TOMCAT_KEYSTORE_CONTENT, TOMCAT_KEYSTORE_PASSWORD and ca.crt respectively + external_secret_name: "" + keystore: + keystorepassword: + port: 443 + targetPort: 8443 + # set the value of CA certificate here in case of baremetal/openshift deployments - CA certificate should be in base64 format + # pass the certificateChainFile file if you are using certificateFile and certificateKeyFile + cacertificate: + # provide the SSL certificate and private key as a PEM format + certificateFile: + certificateKeyFile: + # if you will deploy traefik addon chart and enable traefik, set enabled=true; otherwise leave the default setting. + traefik: + enabled: false + # the SAN of the certificate present inside the container + serverName: "" + # set insecureSkipVerify=true, if the certificate verification has to be skipped + insecureSkipVerify: false + ``` + + +2. Disable external Kafka service settings in the values.yaml file. + ``` + # Stream (externalized Kafka service) settings. + stream: + # Beginning with Pega Platform '23, enabled by default; when disabled, your deployment does not use a"Kafka stream service" configuration. + enabled: false + # Provide externalized Kafka service broker urls. + bootstrapServer: "" + # Provide Security Protocol used to communicate with kafka brokers. Supported values are: PLAINTEXT, SSL, SASL_PLAINTEXT, SASL_SSL. + securityProtocol: PLAINTEXT + # If required, provide trustStore certificate file name + # When using a trustStore certificate, you must also include a Kubernetes secret name, that contains the trustStore certificate, + # in the global.certificatesSecrets parameter. + # Pega deployments only support trustStores using the Java Key Store (.jks) format. + trustStore: "" + # If required provide trustStorePassword value in plain text. + trustStorePassword: "" + # If required, provide keyStore certificate file name + # When using a keyStore certificate, you must also include a Kubernetes secret name, that contains the keyStore certificate, + # in the global.certificatesSecrets parameter. + # Pega deployments only support keyStores using the Java Key Store (.jks) format. + keyStore: "" + # If required, provide keyStore value in plain text. + keyStorePassword: "" + # If required, provide jaasConfig value in plain text. + jaasConfig: "" + # If required, provide a SASL mechanism**. Supported values are: PLAIN, SCRAM-SHA-256, SCRAM-SHA-512. + saslMechanism: PLAIN + # By default, topics originating from Pega Platform have the pega- prefix, + # so that it is easy to distinguish them from topics created by other applications. + # Pega supports customizing the name pattern for your Externalized Kafka configuration for each deployment. + streamNamePattern: "pega-{stream.name}" + # Your replicationFactor value cannot be more than the number of Kafka brokers. Pega recommended value is 3. + replicationFactor: "3" + # To avoid exposing trustStorePassword, keyStorePassword, and jaasConfig parameters, leave the values empty and + # configure them using an External Secrets Manager, making sure you configure the keys in the secret in the order: + # STREAM_TRUSTSTORE_PASSWORD, STREAM_KEYSTORE_PASSWORD and STREAM_JAAS_CONFIG. + # Enter the external secret name below. + external_secret_name: "" + ``` diff --git a/charts/pega/README.md b/charts/pega/README.md index 67c9de7cc..309e250b3 100644 --- a/charts/pega/README.md +++ b/charts/pega/README.md @@ -259,7 +259,6 @@ 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 (Deprecated) | For Pega Platform '23, the use of the 'Stream' node classification is deprecated; new deployments running version 8.8 and later should not use "Stream" nodes. New deployments connect to a Kafka service that you manage in your organization. For existing deployments using an embedded Kafka deployment which are not exposed to the deployment cluster load balancer, Pega will continue to support the "Stream" node classification nodetype. #### Small deployment with a single tier @@ -267,7 +266,7 @@ To get started running a personal deployment of Pega on kubernetes, you can hand Tier Name | Description --- | --- -pega | With embedded Kafka, which is currently deprecated, one tier handles all foreground and background processing using the nodeType classification "WebUser,BackgroundProcessing,search,Stream". For newer Pega Platform deployments using a configuration that connects to a Kafka service managed in your organization, "Stream" nodetype not supported. +pega | one tier handles all foreground and background processing using the nodeType classification "WebUser,BackgroundProcessing,search". With embedded Kafka not supported, newer Pega Platform deployments should use a configuration that connects to a Kafka service managed in your organization. #### Large deployment for production isolation of processing @@ -277,7 +276,6 @@ 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 (Deprecated) | For Pega Platform '23, the use of the 'Stream' node classification is deprecated; new deployments running version 8.8 and later should not use "Stream" nodes. New deployments connect to a Kafka service that you manage in your organization. For existing deployments using an embedded Kafka deployment which are not exposed to the deployment cluster load balancer, Pega will continue to support the "Stream" node classification 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. ### Name (*Required*) diff --git a/charts/pega/templates/_helpers.tpl b/charts/pega/templates/_helpers.tpl index 74377ad14..eab1c75e8 100644 --- a/charts/pega/templates/_helpers.tpl +++ b/charts/pega/templates/_helpers.tpl @@ -395,6 +395,14 @@ key: privateKey {{- end }} {{- end }} +{{- define "tcpKeepAliveProbe" }} +{{- if .node.tcpKeepAliveProbe }} +sysctls: +- name: net.ipv4.tcp_keepalive_time + value: "{{ .node.tcpKeepAliveProbe }}" +{{- end }} +{{- end }} + {{- define "ingressApiVersion" }} {{- if (semverCompare ">= 1.19.0-0" (trimPrefix "v" .root.Capabilities.KubeVersion.GitVersion)) }} apiVersion: networking.k8s.io/v1 diff --git a/charts/pega/templates/_pega-deployment.tpl b/charts/pega/templates/_pega-deployment.tpl index f7fe2e9f5..32004fe64 100644 --- a/charts/pega/templates/_pega-deployment.tpl +++ b/charts/pega/templates/_pega-deployment.tpl @@ -117,11 +117,7 @@ spec: runAsUser: 9001 fsGroup: 0 {{- end }} -{{- if (.node.tcpKeepAliveProbe) }} - sysctls: - - name: "net.ipv4.tcp_keepalive_time" - value: "{{ .node.tcpKeepAliveProbe }}" -{{- end }} +{{- include "tcpKeepAliveProbe" . | indent 8 }} {{- if .node.securityContext }} {{ toYaml .node.securityContext | indent 8 }} {{- end }} diff --git a/charts/pega/values-large.yaml b/charts/pega/values-large.yaml index ff72681d6..230b0d96f 100644 --- a/charts/pega/values-large.yaml +++ b/charts/pega/values-large.yaml @@ -343,77 +343,6 @@ global: memory: "12Gi" cpu: 4 - - name: "stream" - # Create a stream tier for queue processing. This tier deploys - # as a stateful set to ensure durability of queued data. It may - # be optionally exposed to the load balancer. - # Note: Stream tier is deprecated, please enable externalized Kafka service configuration under External Services. - # When externalized Kafka service is enabled, we should remove the entire stream tier. - nodeType: "Stream" - - # Pega requestor specific properties - requestor: - # Inactivity time after which requestor is passivated - passivationTimeSec: 900 - - service: - port: 7003 - targetPort: 7003 - - # If a nodeSelector is required for this or any tier, it may be specified here: - # nodeSelector: - # disktype: ssd - - ingress: - enabled: true - # Enter the domain name to access web nodes via a load balancer. - # e.g. web.mypega.example.com - domain: "YOUR_STREAM_NODE_DOMAIN" - tls: - # Enable TLS encryption - enabled: true - # Give the name of the secret that contains certificate information - works for GKE, AKS and K8S - secretName: - # For GKE Managed Certificate, mention true if Google Managed Certificate has to be created and annotation specified - useManagedCertificate: false - # Provide appropriate certificate annotations for EKS or GKE - # For EKS, use alb.ingress.kubernetes.io/certificate-arn: - # For GKE Pre-shared Certificate, use ingress.gcp.kubernetes.io/pre-shared-cert: - # For GKE to use static IP for load balancer, use kubernetes.io/ingress.global-static-ip-name: - ssl_annotation: - - replicas: 2 - javaOpts: "" - - livenessProbe: - port: 8081 - - # To configure an alternative user for your custom image, set value for runAsUser - # To configure an alternative group for volume mounts, set value for fsGroup - # See, https://github.com/pegasystems/pega-helm-charts/blob/master/charts/pega/README.md#security-context - # securityContext: - # runAsUser: 9001 - # fsGroup: 0 - - volumeClaimTemplate: - resources: - requests: - storage: 5Gi - - # Set enabled to true to include a Pod Disruption Budget for this tier. - # To enable this budget, specifiy either a pdb.minAvailable or pdb.maxUnavailable - # value and comment out the other parameter. - pdb: - enabled: false - minAvailable: 1 - # maxUnavailable: "50%" - resources: - requests: - memory: "12Gi" - cpu: 3 - limits: - memory: "12Gi" - cpu: 4 - name: "bix" # Create a background tier for BIX processing. This tier uses diff --git a/charts/pega/values-minimal.yaml b/charts/pega/values-minimal.yaml index e61d2db8f..53da1dc4a 100644 --- a/charts/pega/values-minimal.yaml +++ b/charts/pega/values-minimal.yaml @@ -113,11 +113,11 @@ global: # Specify the Pega tiers to deploy # For a minimal deployment, use a single tier to reduce resource consumption. - # Note: The nodeType Stream is deprecated, please remove it and enable externalized Kafka service + # Note: The nodeType Stream is not supported, enable externalized Kafka service instead. # configuration under External Services tier: - name: "minikube" - nodeType: "Stream,BackgroundProcessing,WebUser,Search" + nodeType: "BackgroundProcessing,WebUser,Search" service: httpEnabled: true diff --git a/charts/pega/values.yaml b/charts/pega/values.yaml index 577bc3fb2..92172d3d9 100644 --- a/charts/pega/values.yaml +++ b/charts/pega/values.yaml @@ -144,6 +144,10 @@ global: # Inactivity time after which requestor is passivated passivationTimeSec: 900 + # To configure net.ipv4.tcp_keepalive_time OS Kernel setting, set the value in seconds. + # This setting only works for Kubernetes version 1.29 onwards. For more information, see below, + # https://github.com/pegasystems/pega-helm-charts/blob/master/charts/pega/README.md#security-context + # tcpKeepAliveProbe: 300 service: # For help configuring the service block, see the Helm chart documentation @@ -257,14 +261,6 @@ global: # runAsUser: 9001 # fsGroup: 0 - # To configure net.ipv4.tcp_keepalive_time OS Kernel setting, set the value in seconds. - # This setting only works for Kubernetes version 1.29 onwards. For more information, see below, - # https://github.com/pegasystems/pega-helm-charts/blob/master/charts/pega/README.md#security-context - # securityContext: - # sysctls: - # - name: net.ipv4.tcp_keepalive_time - # value: "300" - # To specify security settings for a Container, include the securityContext field in the Container manifest # Security settings that you specify for a Container apply only to the pega container, # and they override settings made at the Pod level when there is overlap. Container settings @@ -320,6 +316,11 @@ global: replicas: 1 javaOpts: "" + # To configure net.ipv4.tcp_keepalive_time OS Kernel setting, set the value in seconds. + # This setting only works for Kubernetes version 1.29 onwards. For more information, see below, + # https://github.com/pegasystems/pega-helm-charts/blob/master/charts/pega/README.md#security-context + # tcpKeepAliveProbe: 300 + deploymentStrategy: rollingUpdate: maxSurge: 1 @@ -336,14 +337,6 @@ global: # runAsUser: 9001 # fsGroup: 0 - # To configure net.ipv4.tcp_keepalive_time OS Kernel setting, set the value in seconds. - # This setting only works for Kubernetes version 1.29 onwards. For more information, see below, - # https://github.com/pegasystems/pega-helm-charts/blob/master/charts/pega/README.md#security-context - # securityContext: - # sysctls: - # - name: net.ipv4.tcp_keepalive_time - # value: "300" - # To specify security settings for a Container, include the securityContext field in the Container manifest # Security settings that you specify for a Container apply only to the pega container, # and they override settings made at the Pod level when there is overlap. Container settings @@ -372,88 +365,6 @@ global: memory: "12Gi" cpu: 4 - - name: "stream" - # Create a stream tier for queue processing. This tier deploys - # as a stateful set to ensure durability of queued data. It may - # be optionally exposed to the load balancer. - # Note: Stream tier is deprecated, please enable externalized Kafka service configuration under External Services. - # When externalized Kafka service is enabled, we should remove the entire stream tier. - nodeType: "Stream" - - # Pega requestor specific properties - requestor: - # Inactivity time after which requestor is passivated - passivationTimeSec: 900 - - service: - port: 7003 - targetPort: 7003 - - # If a nodeSelector is required for this or any tier, it may be specified here: - # nodeSelector: - # disktype: ssd - - ingress: - enabled: true - # Enter the domain name to access web nodes via a load balancer. - # e.g. web.mypega.example.com - domain: "YOUR_STREAM_NODE_DOMAIN" - tls: - # Enable TLS encryption - enabled: true - # secretName: - # useManagedCertificate: false - # ssl_annotation: - - livenessProbe: - port: 8081 - - # To configure an alternative user for your custom image, set value for runAsUser - # To configure an alternative group for volume mounts, set value for fsGroup - # See, https://github.com/pegasystems/pega-helm-charts/blob/master/charts/pega/README.md#security-context - # securityContext: - # runAsUser: 9001 - # fsGroup: 0 - - # To configure net.ipv4.tcp_keepalive_time OS Kernel setting, set the value in seconds. - # This setting only works for Kubernetes version 1.29 onwards. For more information, see below, - # https://github.com/pegasystems/pega-helm-charts/blob/master/charts/pega/README.md#security-context - # securityContext: - # sysctls: - # - name: net.ipv4.tcp_keepalive_time - # value: "300" - - # To specify security settings for a Container, include the securityContext field in the Container manifest - # Security settings that you specify for a Container apply only to the pega container, - # and they override settings made at the Pod level when there is overlap. Container settings - # do not affect the Pod's Volumes. - # See, https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container - # containerSecurityContext: - # capabilities: - # add: ["SYS_TIME"] - - replicas: 2 - - volumeClaimTemplate: - resources: - requests: - storage: 5Gi - - # Set enabled to true to include a Pod Disruption Budget for this tier. - # To enable this budget, specifiy either a pdb.minAvailable or pdb.maxUnavailable - # value and comment out the other parameter. - pdb: - enabled: false - minAvailable: 1 - # maxUnavailable: "50%" - - resources: - requests: - memory: "12Gi" - cpu: 3 - limits: - memory: "12Gi" - cpu: 4 # External services diff --git a/deploy-config-3.24.10.tgz b/deploy-config-3.24.10.tgz new file mode 100644 index 000000000..a1d3a17a6 Binary files /dev/null and b/deploy-config-3.24.10.tgz differ diff --git a/index.yaml b/index.yaml index 4b76fefaa..6f067ae79 100644 --- a/index.yaml +++ b/index.yaml @@ -3,7 +3,45 @@ entries: addons: - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.190091742Z" + created: "2024-10-29T08:34:25.822259844Z" + dependencies: + - condition: traefik.enabled + name: traefik + repository: https://helm.traefik.io/traefik + version: 10.9.0 + - condition: aws-load-balancer-controller.enabled + name: aws-load-balancer-controller + repository: https://aws.github.io/eks-charts + version: 1.4.5 + - condition: elasticsearch.enabled + name: elasticsearch + repository: https://helm.elastic.co/ + version: 7.17.3 + - condition: fluentd-elasticsearch.enabled + name: fluentd-elasticsearch + repository: https://kiwigrid.github.io/ + version: 9.6.0 + - condition: kibana.enabled + name: kibana + repository: https://helm.elastic.co/ + version: 7.17.3 + - condition: metrics-server.enabled + name: metrics-server + repository: https://kubernetes-sigs.github.io/metrics-server/ + version: 3.7.0 + - condition: ingress-azure.enabled + name: ingress-azure + repository: https://appgwingress.blob.core.windows.net/ingress-azure-helm-package/ + version: 1.7.5 + description: A Helm chart for Kubernetes + digest: 398c1e2edc3e7202ea53cf495be570c0fab45474b0b9dc7cd8d83570bcaa4e58 + name: addons + urls: + - https://pegasystems.github.io/pega-helm-charts/addons-3.24.10.tgz + version: 3.24.10 + - apiVersion: v1 + appVersion: "1.0" + created: "2024-10-29T08:34:25.855952975Z" dependencies: - condition: traefik.enabled name: traefik @@ -41,7 +79,7 @@ entries: version: 3.24.9 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.183196487Z" + created: "2024-10-29T08:34:25.849690396Z" dependencies: - condition: traefik.enabled name: traefik @@ -79,7 +117,7 @@ entries: version: 3.24.8 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.176720644Z" + created: "2024-10-29T08:34:25.842483521Z" dependencies: - condition: traefik.enabled name: traefik @@ -117,7 +155,7 @@ entries: version: 3.24.4 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.169570349Z" + created: "2024-10-29T08:34:25.835589034Z" dependencies: - condition: traefik.enabled name: traefik @@ -155,7 +193,7 @@ entries: version: 3.24.3 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.162505976Z" + created: "2024-10-29T08:34:25.829305666Z" dependencies: - condition: traefik.enabled name: traefik @@ -193,7 +231,7 @@ entries: version: 3.24.2 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.156222693Z" + created: "2024-10-29T08:34:25.81503446Z" dependencies: - condition: traefik.enabled name: traefik @@ -231,7 +269,7 @@ entries: version: 3.24.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.148937441Z" + created: "2024-10-29T08:34:25.808778474Z" dependencies: - condition: traefik.enabled name: traefik @@ -269,7 +307,7 @@ entries: version: 3.24.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.142029731Z" + created: "2024-10-29T08:34:25.801724468Z" dependencies: - condition: traefik.enabled name: traefik @@ -307,7 +345,7 @@ entries: version: 3.23.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.135041233Z" + created: "2024-10-29T08:34:25.794867418Z" dependencies: - condition: traefik.enabled name: traefik @@ -345,7 +383,7 @@ entries: version: 3.22.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.128729427Z" + created: "2024-10-29T08:34:25.788012969Z" dependencies: - condition: traefik.enabled name: traefik @@ -383,7 +421,7 @@ entries: version: 3.21.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.121619994Z" + created: "2024-10-29T08:34:25.781842773Z" dependencies: - condition: traefik.enabled name: traefik @@ -421,7 +459,7 @@ entries: version: 3.20.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.108470988Z" + created: "2024-10-29T08:34:25.767469125Z" dependencies: - condition: traefik.enabled name: traefik @@ -459,7 +497,7 @@ entries: version: 3.19.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.101356494Z" + created: "2024-10-29T08:34:25.761246701Z" dependencies: - condition: traefik.enabled name: traefik @@ -497,7 +535,7 @@ entries: version: 3.18.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.094542339Z" + created: "2024-10-29T08:34:25.753920197Z" dependencies: - condition: traefik.enabled name: traefik @@ -535,7 +573,7 @@ entries: version: 3.17.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.087387007Z" + created: "2024-10-29T08:34:25.746925567Z" dependencies: - condition: traefik.enabled name: traefik @@ -573,7 +611,7 @@ entries: version: 3.17.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.081105377Z" + created: "2024-10-29T08:34:25.739999913Z" dependencies: - condition: traefik.enabled name: traefik @@ -611,7 +649,7 @@ entries: version: 3.16.3 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.073714326Z" + created: "2024-10-29T08:34:25.733827102Z" dependencies: - condition: traefik.enabled name: traefik @@ -649,7 +687,7 @@ entries: version: 3.16.2 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.066692423Z" + created: "2024-10-29T08:34:25.72683546Z" dependencies: - condition: traefik.enabled name: traefik @@ -687,7 +725,7 @@ entries: version: 3.16.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.059705667Z" + created: "2024-10-29T08:34:25.719853764Z" dependencies: - condition: traefik.enabled name: traefik @@ -725,7 +763,7 @@ entries: version: 3.15.2 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.053466437Z" + created: "2024-10-29T08:34:25.713664742Z" dependencies: - condition: traefik.enabled name: traefik @@ -763,7 +801,7 @@ entries: version: 3.15.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.046449214Z" + created: "2024-10-29T08:34:25.706641775Z" dependencies: - condition: traefik.enabled name: traefik @@ -801,7 +839,7 @@ entries: version: 3.15.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.039603251Z" + created: "2024-10-29T08:34:25.699812418Z" dependencies: - condition: traefik.enabled name: traefik @@ -839,7 +877,7 @@ entries: version: 3.14.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.032500622Z" + created: "2024-10-29T08:34:25.692660996Z" dependencies: - condition: traefik.enabled name: traefik @@ -877,7 +915,7 @@ entries: version: 3.13.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.026224202Z" + created: "2024-10-29T08:34:25.68639978Z" dependencies: - condition: traefik.enabled name: traefik @@ -915,7 +953,7 @@ entries: version: 3.12.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.019223918Z" + created: "2024-10-29T08:34:25.679184858Z" dependencies: - condition: traefik.enabled name: traefik @@ -953,7 +991,7 @@ entries: version: 3.12.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.012416626Z" + created: "2024-10-29T08:34:25.672186353Z" dependencies: - condition: traefik.enabled name: traefik @@ -991,7 +1029,7 @@ entries: version: 3.11.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.005516201Z" + created: "2024-10-29T08:34:25.665361453Z" dependencies: - condition: traefik.enabled name: traefik @@ -1029,7 +1067,7 @@ entries: version: 3.10.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.260315836Z" + created: "2024-10-29T08:34:25.923317256Z" dependencies: - condition: traefik.enabled name: traefik @@ -1067,7 +1105,7 @@ entries: version: 3.9.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.254036701Z" + created: "2024-10-29T08:34:25.917139756Z" dependencies: - condition: traefik.enabled name: traefik @@ -1105,7 +1143,7 @@ entries: version: 3.8.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.246953837Z" + created: "2024-10-29T08:34:25.909992163Z" dependencies: - condition: traefik.enabled name: traefik @@ -1143,7 +1181,7 @@ entries: version: 3.8.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.238936014Z" + created: "2024-10-29T08:34:25.903001087Z" dependencies: - condition: traefik.enabled name: traefik @@ -1181,7 +1219,7 @@ entries: version: 3.7.2 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.23252355Z" + created: "2024-10-29T08:34:25.896677425Z" dependencies: - condition: traefik.enabled name: traefik @@ -1219,7 +1257,7 @@ entries: version: 3.7.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.225124004Z" + created: "2024-10-29T08:34:25.889681212Z" dependencies: - condition: traefik.enabled name: traefik @@ -1257,7 +1295,7 @@ entries: version: 3.7.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.218052173Z" + created: "2024-10-29T08:34:25.882883439Z" dependencies: - condition: traefik.enabled name: traefik @@ -1295,7 +1333,7 @@ entries: version: 3.6.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.21088731Z" + created: "2024-10-29T08:34:25.876002782Z" dependencies: - condition: traefik.enabled name: traefik @@ -1333,7 +1371,7 @@ entries: version: 3.5.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.204394095Z" + created: "2024-10-29T08:34:25.869700349Z" dependencies: - condition: traefik.enabled name: traefik @@ -1371,7 +1409,7 @@ entries: version: 3.4.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.197246649Z" + created: "2024-10-29T08:34:25.862748676Z" dependencies: - condition: traefik.enabled name: traefik @@ -1409,7 +1447,7 @@ entries: version: 3.3.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:21.114741167Z" + created: "2024-10-29T08:34:25.774837285Z" dependencies: - condition: traefik.enabled name: traefik @@ -1447,7 +1485,7 @@ entries: version: 3.2.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.998904194Z" + created: "2024-10-29T08:34:25.659152985Z" dependencies: - condition: traefik.enabled name: traefik @@ -1485,7 +1523,7 @@ entries: version: 3.1.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.99188635Z" + created: "2024-10-29T08:34:25.652156452Z" dependencies: - condition: traefik.enabled name: traefik @@ -1523,7 +1561,7 @@ entries: version: 3.1.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.984953474Z" + created: "2024-10-29T08:34:25.644903902Z" dependencies: - condition: traefik.enabled name: traefik @@ -1561,7 +1599,7 @@ entries: version: 3.0.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.885038993Z" + created: "2024-10-29T08:34:25.544418335Z" dependencies: - condition: traefik.enabled name: traefik @@ -1599,7 +1637,7 @@ entries: version: 2.13.3 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.877635132Z" + created: "2024-10-29T08:34:25.537583576Z" dependencies: - condition: traefik.enabled name: traefik @@ -1637,7 +1675,7 @@ entries: version: 2.13.2 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.870851165Z" + created: "2024-10-29T08:34:25.531353598Z" dependencies: - condition: traefik.enabled name: traefik @@ -1675,7 +1713,7 @@ entries: version: 2.13.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.863553404Z" + created: "2024-10-29T08:34:25.524375256Z" dependencies: - condition: traefik.enabled name: traefik @@ -1713,7 +1751,7 @@ entries: version: 2.13.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.857287424Z" + created: "2024-10-29T08:34:25.51714156Z" dependencies: - condition: traefik.enabled name: traefik @@ -1751,7 +1789,7 @@ entries: version: 2.12.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.850111167Z" + created: "2024-10-29T08:34:25.51065328Z" dependencies: - condition: traefik.enabled name: traefik @@ -1789,7 +1827,7 @@ entries: version: 2.12.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.84335945Z" + created: "2024-10-29T08:34:25.503602765Z" dependencies: - condition: traefik.enabled name: traefik @@ -1827,7 +1865,7 @@ entries: version: 2.11.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.836270429Z" + created: "2024-10-29T08:34:25.496811685Z" dependencies: - condition: traefik.enabled name: traefik @@ -1865,7 +1903,7 @@ entries: version: 2.11.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.829937303Z" + created: "2024-10-29T08:34:25.489759347Z" dependencies: - condition: traefik.enabled name: traefik @@ -1903,7 +1941,7 @@ entries: version: 2.10.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.822892777Z" + created: "2024-10-29T08:34:25.483571759Z" dependencies: - condition: traefik.enabled name: traefik @@ -1941,7 +1979,7 @@ entries: version: 2.10.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.97875526Z" + created: "2024-10-29T08:34:25.638628199Z" dependencies: - condition: traefik.enabled name: traefik @@ -1979,7 +2017,7 @@ entries: version: 2.9.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.97169149Z" + created: "2024-10-29T08:34:25.631502191Z" dependencies: - condition: traefik.enabled name: traefik @@ -2017,7 +2055,7 @@ entries: version: 2.8.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.964639285Z" + created: "2024-10-29T08:34:25.624448824Z" dependencies: - condition: traefik.enabled name: traefik @@ -2055,7 +2093,7 @@ entries: version: 2.8.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.958404112Z" + created: "2024-10-29T08:34:25.617569698Z" dependencies: - condition: traefik.enabled name: traefik @@ -2093,7 +2131,7 @@ entries: version: 2.7.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.951394931Z" + created: "2024-10-29T08:34:25.610533725Z" dependencies: - condition: traefik.enabled name: traefik @@ -2131,7 +2169,7 @@ entries: version: 2.7.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.944290505Z" + created: "2024-10-29T08:34:25.603697265Z" dependencies: - condition: traefik.enabled name: traefik @@ -2169,7 +2207,7 @@ entries: version: 2.6.2 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.937688946Z" + created: "2024-10-29T08:34:25.597547146Z" dependencies: - condition: traefik.enabled name: traefik @@ -2207,7 +2245,7 @@ entries: version: 2.6.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.931336333Z" + created: "2024-10-29T08:34:25.59070712Z" dependencies: - condition: traefik.enabled name: traefik @@ -2245,7 +2283,7 @@ entries: version: 2.6.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.924414871Z" + created: "2024-10-29T08:34:25.584182793Z" dependencies: - condition: traefik.enabled name: traefik @@ -2283,7 +2321,7 @@ entries: version: 2.5.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.917634488Z" + created: "2024-10-29T08:34:25.578087346Z" dependencies: - condition: traefik.enabled name: traefik @@ -2321,7 +2359,7 @@ entries: version: 2.5.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.911616311Z" + created: "2024-10-29T08:34:25.571404182Z" dependencies: - condition: traefik.enabled name: traefik @@ -2359,7 +2397,7 @@ entries: version: 2.4.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.904672529Z" + created: "2024-10-29T08:34:25.564280223Z" dependencies: - condition: traefik.enabled name: traefik @@ -2397,7 +2435,7 @@ entries: version: 2.4.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.897987743Z" + created: "2024-10-29T08:34:25.558221364Z" dependencies: - condition: traefik.enabled name: traefik @@ -2435,7 +2473,7 @@ entries: version: 2.3.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.891132792Z" + created: "2024-10-29T08:34:25.551131821Z" dependencies: - condition: traefik.enabled name: traefik @@ -2473,7 +2511,7 @@ entries: version: 2.2.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.815890907Z" + created: "2024-10-29T08:34:25.476520423Z" dependencies: - condition: traefik.enabled name: traefik @@ -2511,7 +2549,7 @@ entries: version: 2.1.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.808939352Z" + created: "2024-10-29T08:34:25.469839979Z" dependencies: - condition: traefik.enabled name: traefik @@ -2549,7 +2587,7 @@ entries: version: 2.1.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.802220686Z" + created: "2024-10-29T08:34:25.463711851Z" dependencies: - condition: traefik.enabled name: traefik @@ -2587,7 +2625,7 @@ entries: version: 2.0.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.796047681Z" + created: "2024-10-29T08:34:25.456922254Z" dependencies: - condition: traefik.enabled name: traefik @@ -2625,7 +2663,7 @@ entries: version: 1.9.3 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.789771822Z" + created: "2024-10-29T08:34:25.450885139Z" dependencies: - condition: traefik.enabled name: traefik @@ -2663,7 +2701,7 @@ entries: version: 1.9.2 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.783543711Z" + created: "2024-10-29T08:34:25.445439094Z" dependencies: - condition: traefik.enabled name: traefik @@ -2701,7 +2739,7 @@ entries: version: 1.9.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.777889603Z" + created: "2024-10-29T08:34:25.43927142Z" dependencies: - condition: traefik.enabled name: traefik @@ -2739,7 +2777,7 @@ entries: version: 1.9.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.771541771Z" + created: "2024-10-29T08:34:25.433220358Z" dependencies: - condition: traefik.enabled name: traefik @@ -2777,7 +2815,7 @@ entries: version: 1.8.2 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.765122955Z" + created: "2024-10-29T08:34:25.427619404Z" dependencies: - condition: traefik.enabled name: traefik @@ -2815,7 +2853,7 @@ entries: version: 1.7.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.759114439Z" + created: "2024-10-29T08:34:25.421302032Z" dependencies: - condition: traefik.enabled name: traefik @@ -2853,7 +2891,7 @@ entries: version: 1.7.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.753606865Z" + created: "2024-10-29T08:34:25.414926021Z" dependencies: - condition: traefik.enabled name: traefik @@ -2891,7 +2929,7 @@ entries: version: 1.6.5 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.746959388Z" + created: "2024-10-29T08:34:25.409474837Z" dependencies: - condition: traefik.enabled name: traefik @@ -2929,7 +2967,7 @@ entries: version: 1.6.4 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.740847045Z" + created: "2024-10-29T08:34:25.403305336Z" dependencies: - condition: traefik.enabled name: traefik @@ -2967,7 +3005,7 @@ entries: version: 1.6.3 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.73521593Z" + created: "2024-10-29T08:34:25.397159932Z" dependencies: - condition: traefik.enabled name: traefik @@ -3005,7 +3043,7 @@ entries: version: 1.6.2 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.729043464Z" + created: "2024-10-29T08:34:25.391674904Z" dependencies: - condition: traefik.enabled name: traefik @@ -3043,7 +3081,7 @@ entries: version: 1.6.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.722750392Z" + created: "2024-10-29T08:34:25.385558499Z" dependencies: - condition: traefik.enabled name: traefik @@ -3081,7 +3119,7 @@ entries: version: 1.6.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.717245392Z" + created: "2024-10-29T08:34:25.379366614Z" dependencies: - condition: traefik.enabled name: traefik @@ -3119,7 +3157,7 @@ entries: version: 1.5.3 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.711163407Z" + created: "2024-10-29T08:34:25.37390534Z" dependencies: - condition: traefik.enabled name: traefik @@ -3157,7 +3195,7 @@ entries: version: 1.5.2 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.704689207Z" + created: "2024-10-29T08:34:25.367738679Z" dependencies: - condition: traefik.enabled name: traefik @@ -3195,7 +3233,7 @@ entries: version: 1.5.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.69926025Z" + created: "2024-10-29T08:34:25.361605163Z" dependencies: - condition: traefik.enabled name: traefik @@ -3233,7 +3271,7 @@ entries: version: 1.4.6 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.692756429Z" + created: "2024-10-29T08:34:25.355464725Z" dependencies: - condition: traefik.enabled name: traefik @@ -3271,7 +3309,7 @@ entries: version: 1.4.5 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.68728385Z" + created: "2024-10-29T08:34:25.350062201Z" dependencies: - condition: traefik.enabled name: traefik @@ -3309,7 +3347,7 @@ entries: version: 1.4.4 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.680796631Z" + created: "2024-10-29T08:34:25.34384274Z" dependencies: - condition: traefik.enabled name: traefik @@ -3347,7 +3385,7 @@ entries: version: 1.4.3 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.674632603Z" + created: "2024-10-29T08:34:25.337870553Z" dependencies: - condition: traefik.enabled name: traefik @@ -3385,7 +3423,7 @@ entries: version: 1.4.2 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.668621528Z" + created: "2024-10-29T08:34:25.331393944Z" dependencies: - condition: traefik.enabled name: traefik @@ -3423,7 +3461,7 @@ entries: version: 1.3.5 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.663298889Z" + created: "2024-10-29T08:34:25.325418034Z" dependencies: - condition: traefik.enabled name: traefik @@ -3461,7 +3499,7 @@ entries: version: 1.3.4 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.657346798Z" + created: "2024-10-29T08:34:25.320110248Z" dependencies: - condition: traefik.enabled name: traefik @@ -3499,7 +3537,7 @@ entries: version: 1.3.3 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.652019671Z" + created: "2024-10-29T08:34:25.313798436Z" dependencies: - condition: traefik.enabled name: traefik @@ -3537,7 +3575,7 @@ entries: version: 1.3.2 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.645422793Z" + created: "2024-10-29T08:34:25.307685327Z" dependencies: - condition: traefik.enabled name: traefik @@ -3575,7 +3613,7 @@ entries: version: 1.3.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.639535514Z" + created: "2024-10-29T08:34:25.302360359Z" dependencies: - condition: traefik.enabled name: traefik @@ -3613,7 +3651,7 @@ entries: version: 1.3.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.593761853Z" + created: "2024-10-29T08:34:25.256395104Z" dependencies: - condition: traefik.enabled name: traefik @@ -3651,7 +3689,7 @@ entries: version: 1.2.11 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.589083588Z" + created: "2024-10-29T08:34:25.251417139Z" dependencies: - condition: traefik.enabled name: traefik @@ -3689,7 +3727,7 @@ entries: version: 1.2.10 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.633364787Z" + created: "2024-10-29T08:34:25.296242735Z" dependencies: - condition: traefik.enabled name: traefik @@ -3727,7 +3765,7 @@ entries: version: 1.2.9 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.628473163Z" + created: "2024-10-29T08:34:25.290858898Z" dependencies: - condition: traefik.enabled name: traefik @@ -3765,7 +3803,7 @@ entries: version: 1.2.8 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.623018053Z" + created: "2024-10-29T08:34:25.286161902Z" dependencies: - condition: traefik.enabled name: traefik @@ -3803,7 +3841,7 @@ entries: version: 1.2.7 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.617780383Z" + created: "2024-10-29T08:34:25.280626641Z" dependencies: - condition: traefik.enabled name: traefik @@ -3841,7 +3879,7 @@ entries: version: 1.2.6 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.613156489Z" + created: "2024-10-29T08:34:25.275977325Z" dependencies: - condition: traefik.enabled name: traefik @@ -3875,7 +3913,7 @@ entries: version: 1.2.5 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.608046376Z" + created: "2024-10-29T08:34:25.270848298Z" dependencies: - condition: traefik.enabled name: traefik @@ -3909,7 +3947,7 @@ entries: version: 1.2.4 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.603314504Z" + created: "2024-10-29T08:34:25.265872884Z" dependencies: - condition: traefik.enabled name: traefik @@ -3943,7 +3981,7 @@ entries: version: 1.2.3 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.598701811Z" + created: "2024-10-29T08:34:25.26151971Z" dependencies: - condition: traefik.enabled name: traefik @@ -3977,7 +4015,7 @@ entries: version: 1.2.2 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.583597313Z" + created: "2024-10-29T08:34:25.246518988Z" dependencies: - condition: traefik.enabled name: traefik @@ -4011,7 +4049,7 @@ entries: version: 1.2.1 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.578594264Z" + created: "2024-10-29T08:34:25.241287612Z" dependencies: - condition: traefik.enabled name: traefik @@ -4045,7 +4083,7 @@ entries: version: 1.2.0 - apiVersion: v1 appVersion: "1.0" - created: "2024-10-22T06:52:20.574079053Z" + created: "2024-10-29T08:34:25.236824403Z" dependencies: - condition: traefik.enabled name: traefik @@ -4079,7 +4117,30 @@ entries: version: 1.0.4 backingservices: - apiVersion: v1 - created: "2024-10-22T06:52:21.441982633Z" + created: "2024-10-29T08:34:26.090951191Z" + dependencies: + - condition: srs.srsStorage.provisionInternalESCluster + name: elasticsearch + repository: https://helm.elastic.co/ + version: 7.17.3 + - name: constellation + repository: "" + version: 1.0.0 + - name: constellation-messaging + repository: "" + version: 1.0.0 + - name: srs + repository: "" + version: 0.1.0 + description: Helm Chart to provision the latest Search and Reporting Service (SRS) + for your Pega Infinity deployment. + digest: 4c194173994430a7c61366be4158566fa1665084baf09d30fe308db294b2c909 + name: backingservices + urls: + - https://pegasystems.github.io/pega-helm-charts/backingservices-3.24.10.tgz + version: 3.24.10 + - apiVersion: v1 + created: "2024-10-29T08:34:26.105789539Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4102,7 +4163,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.24.9.tgz version: 3.24.9 - apiVersion: v1 - created: "2024-10-22T06:52:21.439294584Z" + created: "2024-10-29T08:34:26.102459284Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4125,7 +4186,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.24.8.tgz version: 3.24.8 - apiVersion: v1 - created: "2024-10-22T06:52:21.436519613Z" + created: "2024-10-29T08:34:26.09974093Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4148,7 +4209,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.24.4.tgz version: 3.24.4 - apiVersion: v1 - created: "2024-10-22T06:52:21.433038691Z" + created: "2024-10-29T08:34:26.097026073Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4171,7 +4232,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.24.3.tgz version: 3.24.3 - apiVersion: v1 - created: "2024-10-22T06:52:21.430302452Z" + created: "2024-10-29T08:34:26.093442401Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4194,7 +4255,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.24.2.tgz version: 3.24.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.427819976Z" + created: "2024-10-29T08:34:26.088233158Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4217,7 +4278,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.24.1.tgz version: 3.24.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.424546626Z" + created: "2024-10-29T08:34:26.085332637Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4240,7 +4301,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.24.0.tgz version: 3.24.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.421995021Z" + created: "2024-10-29T08:34:26.082477799Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4263,7 +4324,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.23.0.tgz version: 3.23.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.419549675Z" + created: "2024-10-29T08:34:26.080058344Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4286,7 +4347,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.22.0.tgz version: 3.22.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.416180797Z" + created: "2024-10-29T08:34:26.077639229Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4309,7 +4370,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.21.0.tgz version: 3.21.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.4136493Z" + created: "2024-10-29T08:34:26.074295538Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4332,7 +4393,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.20.0.tgz version: 3.20.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.408437154Z" + created: "2024-10-29T08:34:26.069664194Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4355,7 +4416,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.19.0.tgz version: 3.19.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.406010012Z" + created: "2024-10-29T08:34:26.066599714Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4378,7 +4439,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.18.0.tgz version: 3.18.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.403589653Z" + created: "2024-10-29T08:34:26.064184085Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4401,7 +4462,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.17.1.tgz version: 3.17.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.400260346Z" + created: "2024-10-29T08:34:26.061758798Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4421,7 +4482,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.17.0.tgz version: 3.17.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.397943289Z" + created: "2024-10-29T08:34:26.058790926Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4441,7 +4502,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.16.3.tgz version: 3.16.3 - apiVersion: v1 - created: "2024-10-22T06:52:21.395676156Z" + created: "2024-10-29T08:34:26.056440679Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4461,7 +4522,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.16.2.tgz version: 3.16.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.393071141Z" + created: "2024-10-29T08:34:26.054166395Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4481,7 +4542,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.16.1.tgz version: 3.16.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.390175875Z" + created: "2024-10-29T08:34:26.051166849Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4501,7 +4562,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.15.2.tgz version: 3.15.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.387887382Z" + created: "2024-10-29T08:34:26.048917671Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4521,7 +4582,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.15.1.tgz version: 3.15.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.385543195Z" + created: "2024-10-29T08:34:26.046624541Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4541,7 +4602,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.15.0.tgz version: 3.15.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.382514753Z" + created: "2024-10-29T08:34:26.044314199Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4561,7 +4622,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.14.0.tgz version: 3.14.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.380250325Z" + created: "2024-10-29T08:34:26.041387903Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4581,7 +4642,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.13.0.tgz version: 3.13.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.37797708Z" + created: "2024-10-29T08:34:26.039145828Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4601,7 +4662,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.12.1.tgz version: 3.12.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.375492046Z" + created: "2024-10-29T08:34:26.036945612Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4621,7 +4682,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.12.0.tgz version: 3.12.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.372814346Z" + created: "2024-10-29T08:34:26.034125713Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4641,7 +4702,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.11.0.tgz version: 3.11.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.370601464Z" + created: "2024-10-29T08:34:26.031916219Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4661,7 +4722,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.10.0.tgz version: 3.10.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.465517073Z" + created: "2024-10-29T08:34:26.128889802Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4681,7 +4742,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.9.0.tgz version: 3.9.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.463308008Z" + created: "2024-10-29T08:34:26.12598593Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4701,7 +4762,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.8.1.tgz version: 3.8.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.460407216Z" + created: "2024-10-29T08:34:26.123898283Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4721,7 +4782,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.8.0.tgz version: 3.8.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.458309069Z" + created: "2024-10-29T08:34:26.121812881Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4741,7 +4802,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.7.2.tgz version: 3.7.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.456236649Z" + created: "2024-10-29T08:34:26.119095982Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4761,7 +4822,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.7.1.tgz version: 3.7.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.454122411Z" + created: "2024-10-29T08:34:26.117022141Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4781,7 +4842,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.7.0.tgz version: 3.7.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.45121878Z" + created: "2024-10-29T08:34:26.114924356Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4801,7 +4862,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.6.0.tgz version: 3.6.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.449111215Z" + created: "2024-10-29T08:34:26.11283147Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4821,7 +4882,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.5.0.tgz version: 3.5.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.44704157Z" + created: "2024-10-29T08:34:26.10999575Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4841,7 +4902,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.4.0.tgz version: 3.4.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.444848754Z" + created: "2024-10-29T08:34:26.107898956Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4861,7 +4922,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.3.0.tgz version: 3.3.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.411213973Z" + created: "2024-10-29T08:34:26.071836157Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4881,7 +4942,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.2.0.tgz version: 3.2.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.36836647Z" + created: "2024-10-29T08:34:26.029751609Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4901,7 +4962,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.1.1.tgz version: 3.1.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.365574896Z" + created: "2024-10-29T08:34:26.027632414Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4921,7 +4982,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.1.0.tgz version: 3.1.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.36351511Z" + created: "2024-10-29T08:34:26.024916881Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4941,7 +5002,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-3.0.0.tgz version: 3.0.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.331638458Z" + created: "2024-10-29T08:34:25.994199521Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4961,7 +5022,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.13.3.tgz version: 2.13.3 - apiVersion: v1 - created: "2024-10-22T06:52:21.329523238Z" + created: "2024-10-29T08:34:25.991469503Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -4981,7 +5042,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.13.2.tgz version: 2.13.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.327482658Z" + created: "2024-10-29T08:34:25.989436479Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5001,7 +5062,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.13.1.tgz version: 2.13.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.325369442Z" + created: "2024-10-29T08:34:25.987368178Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5016,7 +5077,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.13.0.tgz version: 2.13.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.322893018Z" + created: "2024-10-29T08:34:25.985316629Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5031,7 +5092,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.12.1.tgz version: 2.12.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.320681639Z" + created: "2024-10-29T08:34:25.982593066Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5046,7 +5107,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.12.0.tgz version: 2.12.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.318657168Z" + created: "2024-10-29T08:34:25.980540725Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5061,7 +5122,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.11.1.tgz version: 2.11.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.316577565Z" + created: "2024-10-29T08:34:25.978533178Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5076,7 +5137,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.11.0.tgz version: 2.11.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.31420879Z" + created: "2024-10-29T08:34:25.976450642Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5091,7 +5152,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.10.1.tgz version: 2.10.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.311587667Z" + created: "2024-10-29T08:34:25.973614412Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5106,7 +5167,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.10.0.tgz version: 2.10.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.361411301Z" + created: "2024-10-29T08:34:26.02281075Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5121,7 +5182,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.9.0.tgz version: 2.9.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.359387382Z" + created: "2024-10-29T08:34:26.020799165Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5136,7 +5197,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.8.1.tgz version: 2.8.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.356643624Z" + created: "2024-10-29T08:34:26.018755641Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5151,7 +5212,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.8.0.tgz version: 2.8.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.354737825Z" + created: "2024-10-29T08:34:26.016111889Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5166,7 +5227,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.7.1.tgz version: 2.7.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.352781121Z" + created: "2024-10-29T08:34:26.01421075Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5181,7 +5242,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.7.0.tgz version: 2.7.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.350806675Z" + created: "2024-10-29T08:34:26.012260079Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5196,7 +5257,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.6.2.tgz version: 2.6.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.348021539Z" + created: "2024-10-29T08:34:26.010321401Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5211,7 +5272,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.6.1.tgz version: 2.6.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.34606202Z" + created: "2024-10-29T08:34:26.007668903Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5226,7 +5287,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.6.0.tgz version: 2.6.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.34412319Z" + created: "2024-10-29T08:34:26.005735334Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5241,7 +5302,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.5.1.tgz version: 2.5.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.342259229Z" + created: "2024-10-29T08:34:26.003902132Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5256,7 +5317,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.5.0.tgz version: 2.5.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.339719107Z" + created: "2024-10-29T08:34:26.002035178Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5271,7 +5332,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.4.1.tgz version: 2.4.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.337895302Z" + created: "2024-10-29T08:34:25.999559204Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5286,7 +5347,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.4.0.tgz version: 2.4.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.335976018Z" + created: "2024-10-29T08:34:25.997787527Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5301,7 +5362,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.3.0.tgz version: 2.3.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.334126374Z" + created: "2024-10-29T08:34:25.995952813Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5316,7 +5377,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.2.0.tgz version: 2.2.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.309521399Z" + created: "2024-10-29T08:34:25.971560389Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5331,7 +5392,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.1.1.tgz version: 2.1.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.307775178Z" + created: "2024-10-29T08:34:25.969821744Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5346,7 +5407,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.1.0.tgz version: 2.1.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.305946954Z" + created: "2024-10-29T08:34:25.968020221Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5361,7 +5422,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-2.0.0.tgz version: 2.0.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.303353432Z" + created: "2024-10-29T08:34:25.96557349Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5376,7 +5437,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.9.3.tgz version: 1.9.3 - apiVersion: v1 - created: "2024-10-22T06:52:21.301588897Z" + created: "2024-10-29T08:34:25.96382699Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5391,7 +5452,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.9.2.tgz version: 1.9.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.299867342Z" + created: "2024-10-29T08:34:25.962113142Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5406,7 +5467,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.9.1.tgz version: 1.9.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.298049157Z" + created: "2024-10-29T08:34:25.960341635Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5421,7 +5482,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.9.0.tgz version: 1.9.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.295736923Z" + created: "2024-10-29T08:34:25.958029301Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5436,7 +5497,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.8.2.tgz version: 1.8.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.293768908Z" + created: "2024-10-29T08:34:25.956282311Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5451,7 +5512,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.7.1.tgz version: 1.7.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.292032035Z" + created: "2024-10-29T08:34:25.95454624Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5466,7 +5527,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.7.0.tgz version: 1.7.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.290270646Z" + created: "2024-10-29T08:34:25.952829105Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5481,7 +5542,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.6.5.tgz version: 1.6.5 - apiVersion: v1 - created: "2024-10-22T06:52:21.288522522Z" + created: "2024-10-29T08:34:25.951041238Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5496,7 +5557,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.6.4.tgz version: 1.6.4 - apiVersion: v1 - created: "2024-10-22T06:52:21.286013452Z" + created: "2024-10-29T08:34:25.948560266Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5511,7 +5572,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.6.3.tgz version: 1.6.3 - apiVersion: v1 - created: "2024-10-22T06:52:21.284334097Z" + created: "2024-10-29T08:34:25.946883586Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5526,7 +5587,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.6.2.tgz version: 1.6.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.282642148Z" + created: "2024-10-29T08:34:25.945193672Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5541,7 +5602,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.6.1.tgz version: 1.6.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.280808363Z" + created: "2024-10-29T08:34:25.943466729Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5556,7 +5617,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.6.0.tgz version: 1.6.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.278386705Z" + created: "2024-10-29T08:34:25.941203039Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5571,7 +5632,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.5.3.tgz version: 1.5.3 - apiVersion: v1 - created: "2024-10-22T06:52:21.276710595Z" + created: "2024-10-29T08:34:25.939451971Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5586,7 +5647,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.5.2.tgz version: 1.5.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.275096391Z" + created: "2024-10-29T08:34:25.937854899Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5600,7 +5661,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.5.0.tgz version: 1.5.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.273435239Z" + created: "2024-10-29T08:34:25.936213536Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5614,7 +5675,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.4.6.tgz version: 1.4.6 - apiVersion: v1 - created: "2024-10-22T06:52:21.271802801Z" + created: "2024-10-29T08:34:25.934548729Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5628,7 +5689,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.4.5.tgz version: 1.4.5 - apiVersion: v1 - created: "2024-10-22T06:52:21.26933346Z" + created: "2024-10-29T08:34:25.932365263Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5642,7 +5703,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.4.4.tgz version: 1.4.4 - apiVersion: v1 - created: "2024-10-22T06:52:21.26771598Z" + created: "2024-10-29T08:34:25.930637749Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5656,7 +5717,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.4.3.tgz version: 1.4.3 - apiVersion: v1 - created: "2024-10-22T06:52:21.266034931Z" + created: "2024-10-29T08:34:25.92902563Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5670,7 +5731,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.4.2.tgz version: 1.4.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.264404696Z" + created: "2024-10-29T08:34:25.927390178Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5684,7 +5745,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/backingservices-1.4.1.tgz version: 1.4.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.262755728Z" + created: "2024-10-29T08:34:25.925586592Z" dependencies: - condition: srs.srsStorage.provisionInternalESCluster name: elasticsearch @@ -5699,7 +5760,37 @@ entries: version: 1.4.0 pega: - apiVersion: v1 - created: "2024-10-22T06:52:21.925280889Z" + created: "2024-10-29T08:34:26.562380958Z" + dependencies: + - condition: cassandra.enabled + name: cassandra + repository: https://charts.helm.sh/incubator + version: 0.13.3 + - name: constellation + repository: "" + version: 0.0.1 + - name: hazelcast + repository: "" + version: 1.0.0 + - name: installer + repository: "" + version: 1.2.0 + - name: pegasearch + repository: "" + version: 1.2.0 + description: Pega installation on kubernetes + digest: 6f73248f358aa72bd9f1f2b5d6b4c37b2023f92a0002311258918880dc87ae4a + home: http://www.pega.com + keywords: + - pega + - prpc + - kubernetes + name: pega + urls: + - https://pegasystems.github.io/pega-helm-charts/pega-3.24.10.tgz + version: 3.24.10 + - apiVersion: v1 + created: "2024-10-29T08:34:26.591032901Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -5729,7 +5820,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.24.9.tgz version: 3.24.9 - apiVersion: v1 - created: "2024-10-22T06:52:21.919390276Z" + created: "2024-10-29T08:34:26.585061736Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -5759,7 +5850,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.24.8.tgz version: 3.24.8 - apiVersion: v1 - created: "2024-10-22T06:52:21.913710218Z" + created: "2024-10-29T08:34:26.579998325Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -5789,7 +5880,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.24.4.tgz version: 3.24.4 - apiVersion: v1 - created: "2024-10-22T06:52:21.908691987Z" + created: "2024-10-29T08:34:26.573997567Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -5819,7 +5910,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.24.3.tgz version: 3.24.3 - apiVersion: v1 - created: "2024-10-22T06:52:21.902471493Z" + created: "2024-10-29T08:34:26.567930386Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -5849,7 +5940,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.24.2.tgz version: 3.24.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.897486855Z" + created: "2024-10-29T08:34:26.557480492Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -5879,7 +5970,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.24.1.tgz version: 3.24.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.891623657Z" + created: "2024-10-29T08:34:26.551771634Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -5909,7 +6000,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.24.0.tgz version: 3.24.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.885822168Z" + created: "2024-10-29T08:34:26.546810194Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -5939,7 +6030,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.23.0.tgz version: 3.23.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.880897722Z" + created: "2024-10-29T08:34:26.541055065Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -5969,7 +6060,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.22.0.tgz version: 3.22.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.875105887Z" + created: "2024-10-29T08:34:26.535242331Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -5999,7 +6090,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.21.0.tgz version: 3.21.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.870123073Z" + created: "2024-10-29T08:34:26.530319764Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6029,7 +6120,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.20.0.tgz version: 3.20.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.859515801Z" + created: "2024-10-29T08:34:26.519904897Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6059,7 +6150,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.19.0.tgz version: 3.19.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.854761493Z" + created: "2024-10-29T08:34:26.515165761Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6089,7 +6180,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.18.0.tgz version: 3.18.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.84907703Z" + created: "2024-10-29T08:34:26.509649806Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6119,7 +6210,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.17.1.tgz version: 3.17.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.844236862Z" + created: "2024-10-29T08:34:26.504892597Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6149,7 +6240,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.17.0.tgz version: 3.17.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.838763811Z" + created: "2024-10-29T08:34:26.499237503Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6179,7 +6270,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.16.3.tgz version: 3.16.3 - apiVersion: v1 - created: "2024-10-22T06:52:21.833145565Z" + created: "2024-10-29T08:34:26.493796991Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6209,7 +6300,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.16.2.tgz version: 3.16.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.828304555Z" + created: "2024-10-29T08:34:26.4889474Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6239,7 +6330,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.16.1.tgz version: 3.16.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.822687553Z" + created: "2024-10-29T08:34:26.483477766Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6269,7 +6360,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.15.2.tgz version: 3.15.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.817273697Z" + created: "2024-10-29T08:34:26.478041531Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6299,7 +6390,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.15.1.tgz version: 3.15.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.812292165Z" + created: "2024-10-29T08:34:26.473334396Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6329,7 +6420,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.15.0.tgz version: 3.15.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.806559696Z" + created: "2024-10-29T08:34:26.467936109Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6359,7 +6450,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.14.0.tgz version: 3.14.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.80078793Z" + created: "2024-10-29T08:34:26.463142752Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6389,7 +6480,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.13.0.tgz version: 3.13.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.796090598Z" + created: "2024-10-29T08:34:26.457753635Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6419,7 +6510,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.12.1.tgz version: 3.12.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.790379945Z" + created: "2024-10-29T08:34:26.45242924Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6449,7 +6540,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.12.0.tgz version: 3.12.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.784945778Z" + created: "2024-10-29T08:34:26.447679335Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6479,7 +6570,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.11.0.tgz version: 3.11.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.780180951Z" + created: "2024-10-29T08:34:26.442362631Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6509,7 +6600,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.10.0.tgz version: 3.10.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.975260011Z" + created: "2024-10-29T08:34:26.640019241Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6539,7 +6630,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.9.0.tgz version: 3.9.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.969807719Z" + created: "2024-10-29T08:34:26.635287379Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6569,7 +6660,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.8.1.tgz version: 3.8.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.965114936Z" + created: "2024-10-29T08:34:26.629915568Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6599,7 +6690,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.8.0.tgz version: 3.8.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.959761564Z" + created: "2024-10-29T08:34:26.624823891Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6629,7 +6720,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.7.2.tgz version: 3.7.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.955106572Z" + created: "2024-10-29T08:34:26.619935568Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6659,7 +6750,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.7.1.tgz version: 3.7.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.949555552Z" + created: "2024-10-29T08:34:26.614477764Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6689,7 +6780,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.7.0.tgz version: 3.7.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.944880963Z" + created: "2024-10-29T08:34:26.609802658Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6719,7 +6810,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.6.0.tgz version: 3.6.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.939402264Z" + created: "2024-10-29T08:34:26.604496993Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6749,7 +6840,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.5.0.tgz version: 3.5.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.934775564Z" + created: "2024-10-29T08:34:26.599901525Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6779,7 +6870,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.4.0.tgz version: 3.4.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.929429646Z" + created: "2024-10-29T08:34:26.595102036Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6809,7 +6900,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.3.0.tgz version: 3.3.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.864173921Z" + created: "2024-10-29T08:34:26.52459443Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6839,7 +6930,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.2.0.tgz version: 3.2.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.774834145Z" + created: "2024-10-29T08:34:26.437664633Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6869,7 +6960,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.1.1.tgz version: 3.1.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.770812034Z" + created: "2024-10-29T08:34:26.432879001Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6899,7 +6990,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.1.0.tgz version: 3.1.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.766057106Z" + created: "2024-10-29T08:34:26.428793916Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6929,7 +7020,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-3.0.0.tgz version: 3.0.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.70733277Z" + created: "2024-10-29T08:34:26.370017654Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6959,7 +7050,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.13.3.tgz version: 2.13.3 - apiVersion: v1 - created: "2024-10-22T06:52:21.702520489Z" + created: "2024-10-29T08:34:26.365693995Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -6989,7 +7080,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.13.2.tgz version: 2.13.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.69849359Z" + created: "2024-10-29T08:34:26.361086695Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7019,7 +7110,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.13.1.tgz version: 2.13.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.693876568Z" + created: "2024-10-29T08:34:26.357072413Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7037,7 +7128,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.13.0.tgz version: 2.13.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.689874685Z" + created: "2024-10-29T08:34:26.352202914Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7055,7 +7146,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.12.1.tgz version: 2.12.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.685101477Z" + created: "2024-10-29T08:34:26.348233506Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7073,7 +7164,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.12.0.tgz version: 2.12.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.68110266Z" + created: "2024-10-29T08:34:26.3436415Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7091,7 +7182,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.11.1.tgz version: 2.11.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.676401213Z" + created: "2024-10-29T08:34:26.33970858Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7109,7 +7200,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.11.0.tgz version: 2.11.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.672319141Z" + created: "2024-10-29T08:34:26.334912653Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7127,7 +7218,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.10.1.tgz version: 2.10.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.668010594Z" + created: "2024-10-29T08:34:26.33099986Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7145,7 +7236,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.10.0.tgz version: 2.10.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.76201088Z" + created: "2024-10-29T08:34:26.424173067Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7163,7 +7254,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.9.0.tgz version: 2.9.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.757356158Z" + created: "2024-10-29T08:34:26.420270473Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7181,7 +7272,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.8.1.tgz version: 2.8.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.753451928Z" + created: "2024-10-29T08:34:26.415598508Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7199,7 +7290,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.8.0.tgz version: 2.8.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.749015395Z" + created: "2024-10-29T08:34:26.411755385Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7217,7 +7308,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.7.1.tgz version: 2.7.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.745230137Z" + created: "2024-10-29T08:34:26.408001198Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7235,7 +7326,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.7.0.tgz version: 2.7.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.74079587Z" + created: "2024-10-29T08:34:26.403422999Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7253,7 +7344,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.6.2.tgz version: 2.6.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.737118043Z" + created: "2024-10-29T08:34:26.399803493Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7271,7 +7362,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.6.1.tgz version: 2.6.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.732808933Z" + created: "2024-10-29T08:34:26.395828989Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7289,7 +7380,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.6.0.tgz version: 2.6.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.72910156Z" + created: "2024-10-29T08:34:26.391850905Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7307,7 +7398,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.5.1.tgz version: 2.5.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.725645557Z" + created: "2024-10-29T08:34:26.388335434Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7325,7 +7416,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.5.0.tgz version: 2.5.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.72135006Z" + created: "2024-10-29T08:34:26.384112507Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7343,7 +7434,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.4.1.tgz version: 2.4.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.717990436Z" + created: "2024-10-29T08:34:26.380821143Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7361,7 +7452,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.4.0.tgz version: 2.4.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.713975253Z" + created: "2024-10-29T08:34:26.377483003Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7379,7 +7470,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.3.0.tgz version: 2.3.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.710686973Z" + created: "2024-10-29T08:34:26.373354422Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7397,7 +7488,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.2.0.tgz version: 2.2.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.663796003Z" + created: "2024-10-29T08:34:26.326331387Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7415,7 +7506,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.1.1.tgz version: 2.1.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.660619131Z" + created: "2024-10-29T08:34:26.323182189Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7433,7 +7524,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.1.0.tgz version: 2.1.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.656719662Z" + created: "2024-10-29T08:34:26.319385849Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7451,7 +7542,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-2.0.0.tgz version: 2.0.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.653713458Z" + created: "2024-10-29T08:34:26.316384307Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7469,7 +7560,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.9.3.tgz version: 1.9.3 - apiVersion: v1 - created: "2024-10-22T06:52:21.650757128Z" + created: "2024-10-29T08:34:26.313448367Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7487,7 +7578,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.9.2.tgz version: 1.9.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.647005085Z" + created: "2024-10-29T08:34:26.309873098Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7505,7 +7596,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.9.1.tgz version: 1.9.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.643945512Z" + created: "2024-10-29T08:34:26.306880442Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7523,7 +7614,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.9.0.tgz version: 1.9.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.640907169Z" + created: "2024-10-29T08:34:26.30387319Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7541,7 +7632,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.8.2.tgz version: 1.8.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.63674898Z" + created: "2024-10-29T08:34:26.300240295Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7559,7 +7650,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.7.1.tgz version: 1.7.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.633738519Z" + created: "2024-10-29T08:34:26.297291902Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7577,7 +7668,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.7.0.tgz version: 1.7.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.630797327Z" + created: "2024-10-29T08:34:26.29432827Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7595,7 +7686,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.6.5.tgz version: 1.6.5 - apiVersion: v1 - created: "2024-10-22T06:52:21.626993628Z" + created: "2024-10-29T08:34:26.29066089Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7613,7 +7704,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.6.4.tgz version: 1.6.4 - apiVersion: v1 - created: "2024-10-22T06:52:21.624024994Z" + created: "2024-10-29T08:34:26.287702979Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7631,7 +7722,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.6.3.tgz version: 1.6.3 - apiVersion: v1 - created: "2024-10-22T06:52:21.621058355Z" + created: "2024-10-29T08:34:26.284771768Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7649,7 +7740,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.6.2.tgz version: 1.6.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.617224992Z" + created: "2024-10-29T08:34:26.281112174Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7667,7 +7758,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.6.1.tgz version: 1.6.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.614373427Z" + created: "2024-10-29T08:34:26.278196972Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7685,7 +7776,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.6.0.tgz version: 1.6.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.611465086Z" + created: "2024-10-29T08:34:26.275283083Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7703,7 +7794,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.5.3.tgz version: 1.5.3 - apiVersion: v1 - created: "2024-10-22T06:52:21.607819564Z" + created: "2024-10-29T08:34:26.271773598Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7721,7 +7812,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.5.2.tgz version: 1.5.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.605092862Z" + created: "2024-10-29T08:34:26.269081674Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7739,7 +7830,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.5.0.tgz version: 1.5.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.602357635Z" + created: "2024-10-29T08:34:26.266328024Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7757,7 +7848,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.4.6.tgz version: 1.4.6 - apiVersion: v1 - created: "2024-10-22T06:52:21.598784643Z" + created: "2024-10-29T08:34:26.262746539Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7775,7 +7866,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.4.5.tgz version: 1.4.5 - apiVersion: v1 - created: "2024-10-22T06:52:21.59614813Z" + created: "2024-10-29T08:34:26.260132801Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7793,7 +7884,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.4.4.tgz version: 1.4.4 - apiVersion: v1 - created: "2024-10-22T06:52:21.593490898Z" + created: "2024-10-29T08:34:26.257496681Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7811,7 +7902,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.4.3.tgz version: 1.4.3 - apiVersion: v1 - created: "2024-10-22T06:52:21.590215693Z" + created: "2024-10-29T08:34:26.254023815Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7829,7 +7920,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.4.2.tgz version: 1.4.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.587629153Z" + created: "2024-10-29T08:34:26.251437568Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7847,7 +7938,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.4.1.tgz version: 1.4.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.585035199Z" + created: "2024-10-29T08:34:26.24888349Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7865,7 +7956,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.4.0.tgz version: 1.4.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.5817774Z" + created: "2024-10-29T08:34:26.245709962Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7883,7 +7974,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.3.5.tgz version: 1.3.5 - apiVersion: v1 - created: "2024-10-22T06:52:21.579311195Z" + created: "2024-10-29T08:34:26.243192944Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7901,7 +7992,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.3.4.tgz version: 1.3.4 - apiVersion: v1 - created: "2024-10-22T06:52:21.57694652Z" + created: "2024-10-29T08:34:26.240876701Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7919,7 +8010,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.3.3.tgz version: 1.3.3 - apiVersion: v1 - created: "2024-10-22T06:52:21.574494832Z" + created: "2024-10-29T08:34:26.238535491Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7937,7 +8028,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.3.2.tgz version: 1.3.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.571453267Z" + created: "2024-10-29T08:34:26.235482603Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7955,7 +8046,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.3.1.tgz version: 1.3.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.569129338Z" + created: "2024-10-29T08:34:26.233206816Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7973,7 +8064,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.3.0.tgz version: 1.3.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.547886979Z" + created: "2024-10-29T08:34:26.211731373Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -7991,7 +8082,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.2.11.tgz version: 1.2.11 - apiVersion: v1 - created: "2024-10-22T06:52:21.545505381Z" + created: "2024-10-29T08:34:26.209483648Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -8009,7 +8100,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.2.10.tgz version: 1.2.10 - apiVersion: v1 - created: "2024-10-22T06:52:21.566841816Z" + created: "2024-10-29T08:34:26.230898036Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -8027,7 +8118,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.2.9.tgz version: 1.2.9 - apiVersion: v1 - created: "2024-10-22T06:52:21.564590222Z" + created: "2024-10-29T08:34:26.228651904Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -8045,7 +8136,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.2.8.tgz version: 1.2.8 - apiVersion: v1 - created: "2024-10-22T06:52:21.56144841Z" + created: "2024-10-29T08:34:26.225468427Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -8063,7 +8154,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.2.7.tgz version: 1.2.7 - apiVersion: v1 - created: "2024-10-22T06:52:21.55925814Z" + created: "2024-10-29T08:34:26.223238525Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -8081,7 +8172,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.2.6.tgz version: 1.2.6 - apiVersion: v1 - created: "2024-10-22T06:52:21.557025952Z" + created: "2024-10-29T08:34:26.221062554Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -8099,7 +8190,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.2.5.tgz version: 1.2.5 - apiVersion: v1 - created: "2024-10-22T06:52:21.554885916Z" + created: "2024-10-29T08:34:26.218919815Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -8117,7 +8208,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.2.4.tgz version: 1.2.4 - apiVersion: v1 - created: "2024-10-22T06:52:21.552082894Z" + created: "2024-10-29T08:34:26.216766025Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -8135,7 +8226,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.2.3.tgz version: 1.2.3 - apiVersion: v1 - created: "2024-10-22T06:52:21.549953868Z" + created: "2024-10-29T08:34:26.213838596Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -8153,7 +8244,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.2.2.tgz version: 1.2.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.542357667Z" + created: "2024-10-29T08:34:26.207210074Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -8171,7 +8262,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.2.1.tgz version: 1.2.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.540309984Z" + created: "2024-10-29T08:34:26.204269686Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -8189,7 +8280,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.2.0.tgz version: 1.2.0 - apiVersion: v1 - created: "2024-10-22T06:52:21.538241371Z" + created: "2024-10-29T08:34:26.2022146Z" dependencies: - condition: cassandra.enabled name: cassandra @@ -8207,7 +8298,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.0.4.tgz version: 1.0.4 - apiVersion: v1 - created: "2024-10-22T06:52:21.535322557Z" + created: "2024-10-29T08:34:26.199863723Z" dependencies: - condition: traefik.enabled name: traefik @@ -8249,7 +8340,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.0.3.tgz version: 1.0.3 - apiVersion: v1 - created: "2024-10-22T06:52:21.529527786Z" + created: "2024-10-29T08:34:26.19314074Z" dependencies: - condition: traefik.enabled name: traefik @@ -8291,7 +8382,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.0.2.tgz version: 1.0.2 - apiVersion: v1 - created: "2024-10-22T06:52:21.522884251Z" + created: "2024-10-29T08:34:26.186840846Z" dependencies: - condition: traefik.enabled name: traefik @@ -8333,7 +8424,7 @@ entries: - https://pegasystems.github.io/pega-helm-charts/pega-1.0.1.tgz version: 1.0.1 - apiVersion: v1 - created: "2024-10-22T06:52:21.516699556Z" + created: "2024-10-29T08:34:26.181233861Z" dependencies: - condition: traefik.enabled name: traefik @@ -8374,4 +8465,4 @@ entries: urls: - https://pegasystems.github.io/pega-helm-charts/pega-1.0.0.tgz version: 1.0.0 -generated: "2024-10-22T06:52:20.568497325Z" +generated: "2024-10-29T08:34:25.231443248Z" diff --git a/installer-config-3.24.10.tgz b/installer-config-3.24.10.tgz new file mode 100644 index 000000000..09ada718b Binary files /dev/null and b/installer-config-3.24.10.tgz differ diff --git a/pega-3.24.10.tgz b/pega-3.24.10.tgz new file mode 100644 index 000000000..20c9030f9 Binary files /dev/null and b/pega-3.24.10.tgz differ diff --git a/terratest/src/test/pega/pega-tier-deployment-artifactory-certificates_test.go b/terratest/src/test/pega/pega-tier-deployment-artifactory-certificates_test.go index f691217b4..1cf5dcd79 100644 --- a/terratest/src/test/pega/pega-tier-deployment-artifactory-certificates_test.go +++ b/terratest/src/test/pega/pega-tier-deployment-artifactory-certificates_test.go @@ -37,8 +37,8 @@ func TestPegaDeploymentWithArtifactoryCerts(t *testing.T) { assertBatch(t, yamlSplit[2], options) assertArtifactoryCertificatesVolumeAndMount(t, yamlSplit[2], options, true) - assertStream(t, yamlSplit[3], options) - assertArtifactoryCertificatesVolumeAndMount(t, yamlSplit[3], options, true) + //assertStream(t, yamlSplit[3], options) + //assertArtifactoryCertificatesVolumeAndMount(t, yamlSplit[3], options, true) options.ValuesFiles = []string{"data/values_with_artifactory_sslverification_disabled.yaml"} @@ -50,8 +50,8 @@ func TestPegaDeploymentWithArtifactoryCerts(t *testing.T) { assertBatch(t, yamlSplit[2], options) assertArtifactoryCertificatesVolumeAndMount(t, yamlSplit[2], options, false) - assertStream(t, yamlSplit[3], options) - assertArtifactoryCertificatesVolumeAndMount(t, yamlSplit[3], options, false) + //assertStream(t, yamlSplit[3], options) + //assertArtifactoryCertificatesVolumeAndMount(t, yamlSplit[3], options, false) } } } diff --git a/terratest/src/test/pega/pega-tier-deployment-with-and-without-customcert_test.go b/terratest/src/test/pega/pega-tier-deployment-with-and-without-customcert_test.go index d11bc27b7..d8328767d 100644 --- a/terratest/src/test/pega/pega-tier-deployment-with-and-without-customcert_test.go +++ b/terratest/src/test/pega/pega-tier-deployment-with-and-without-customcert_test.go @@ -50,8 +50,8 @@ func renderTierForCertTest(t *testing.T, options *helm.Options, helmChartPath st assertBatch(t, yamlSplit[2], options) assertVolumeAndMount(t, yamlSplit[2], options, shouldHaveVol) - assertStream(t, yamlSplit[3], options) - assertVolumeAndMount(t, yamlSplit[3], options, shouldHaveVol) + //assertStream(t, yamlSplit[3], options) + //assertVolumeAndMount(t, yamlSplit[3], options, shouldHaveVol) require.False(t, strings.Contains(deploymentYaml, "Conflict: cannot merge map onto non-map"), "'cannot merge map onto non-map' warning should not be logged") } diff --git a/terratest/src/test/pega/pega-tier-deployment-with-and-without-kerberos_test.go b/terratest/src/test/pega/pega-tier-deployment-with-and-without-kerberos_test.go index 9b9115ffe..2704a82d6 100644 --- a/terratest/src/test/pega/pega-tier-deployment-with-and-without-kerberos_test.go +++ b/terratest/src/test/pega/pega-tier-deployment-with-and-without-kerberos_test.go @@ -37,8 +37,8 @@ func TestPegaDeploymentWithAndWithoutKerberos(t *testing.T) { assertBatch(t, yamlSplit[2], options) assertVolumeAndMountForKerberos(t, yamlSplit[2], true) - assertStream(t, yamlSplit[3], options) - assertVolumeAndMountForKerberos(t, yamlSplit[3], true) + //assertStream(t, yamlSplit[3], options) + //assertVolumeAndMountForKerberos(t, yamlSplit[3], true) options.ValuesFiles = []string{"data/values_without_kerberos.yaml"} @@ -50,8 +50,8 @@ func TestPegaDeploymentWithAndWithoutKerberos(t *testing.T) { assertBatch(t, yamlSplit[2], options) assertVolumeAndMountForKerberos(t, yamlSplit[2], false) - assertStream(t, yamlSplit[3], options) - assertVolumeAndMountForKerberos(t, yamlSplit[3], false) + //assertStream(t, yamlSplit[3], options) + //assertVolumeAndMountForKerberos(t, yamlSplit[3], false) } } } diff --git a/terratest/src/test/pega/pega-tier-deployment-with-c11n_test.go b/terratest/src/test/pega/pega-tier-deployment-with-c11n_test.go index d4a692402..db63b86ac 100644 --- a/terratest/src/test/pega/pega-tier-deployment-with-c11n_test.go +++ b/terratest/src/test/pega/pega-tier-deployment-with-c11n_test.go @@ -34,7 +34,7 @@ func TestConstellation(t *testing.T) { yamlSplit := strings.Split(deploymentYaml, "---") assertWeb(t, yamlSplit[1], constellationOptions) assertBatch(t, yamlSplit[2], constellationOptions) - assertStream(t, yamlSplit[3], constellationOptions) + //assertStream(t, yamlSplit[3], constellationOptions) ingressYaml := RenderTemplate(t, constellationOptions, helmChartPath, []string{"templates/pega-tier-ingress.yaml"}) assertPegaTierIngress(t, ingressYaml, constellationOptions) } diff --git a/terratest/src/test/pega/pega-tier-deployment-with-hzcs_test.go b/terratest/src/test/pega/pega-tier-deployment-with-hzcs_test.go index f8040171d..326aaf520 100644 --- a/terratest/src/test/pega/pega-tier-deployment-with-hzcs_test.go +++ b/terratest/src/test/pega/pega-tier-deployment-with-hzcs_test.go @@ -33,7 +33,7 @@ func TestHazelcast(t *testing.T) { yamlSplit := strings.Split(deploymentYaml, "---") assertWeb(t,yamlSplit[1],hazelcastOptions) assertBatch(t,yamlSplit[2],hazelcastOptions) - assertStream(t,yamlSplit[3],hazelcastOptions) + //assertStream(t,yamlSplit[3],hazelcastOptions) } } } diff --git a/terratest/src/test/pega/pega-tier-deployment-with-sidecar_test.go b/terratest/src/test/pega/pega-tier-deployment-with-sidecar_test.go index 64d6f32c9..b04a35c16 100644 --- a/terratest/src/test/pega/pega-tier-deployment-with-sidecar_test.go +++ b/terratest/src/test/pega/pega-tier-deployment-with-sidecar_test.go @@ -39,8 +39,8 @@ func TestPegaDeploymentWithSidecar(t *testing.T) { assertBatch(t, yamlSplit[2], options) assertSidecar(t, yamlSplit[2], options) - assertStream(t, yamlSplit[3], options) - assertSidecar(t, yamlSplit[3], options) + //assertStream(t, yamlSplit[3], options) + //assertSidecar(t, yamlSplit[3], options) } } } diff --git a/terratest/src/test/pega/pega-tier-deployment_test.go b/terratest/src/test/pega/pega-tier-deployment_test.go index a196fc532..b24e2d629 100644 --- a/terratest/src/test/pega/pega-tier-deployment_test.go +++ b/terratest/src/test/pega/pega-tier-deployment_test.go @@ -46,21 +46,21 @@ func TestPegaTierDeployment(t *testing.T) { yamlSplit := strings.Split(yamlContent, "---") assertWeb(t, yamlSplit[1], options) assertBatch(t, yamlSplit[2], options) - assertStream(t, yamlSplit[3], options) - assertStreamWithSorageClass(t, yamlSplit[3], options) + //assertStream(t, yamlSplit[3], options) + //assertStreamWithSorageClass(t, yamlSplit[3], options) } } } } -func assertStreamWithSorageClass(t *testing.T, streamYaml string, options *helm.Options) { +/*func assertStreamWithSorageClass(t *testing.T, streamYaml string, options *helm.Options) { var statefulsetObj appsv1beta2.StatefulSet UnmarshalK8SYaml(t, streamYaml, &statefulsetObj) require.Equal(t, statefulsetObj.ObjectMeta.Name, getObjName(options, "-stream")) storageClassName := "storage-class" require.Equal(t, &storageClassName, statefulsetObj.Spec.VolumeClaimTemplates[0].Spec.StorageClassName) -} +}*/ func TestPegaTierDeploymentWithPodAffinity(t *testing.T) { var supportedVendors = []string{"k8s", "eks", "gke", "aks", "pks"} @@ -173,12 +173,12 @@ func TestPegaTierDeploymentWithFSGroup(t *testing.T) { } } -func assertStream(t *testing.T, streamYaml string, options *helm.Options) { +/*func assertStream(t *testing.T, streamYaml string, options *helm.Options) { var statefulsetObj appsv1beta2.StatefulSet UnmarshalK8SYaml(t, streamYaml, &statefulsetObj) require.Equal(t, statefulsetObj.ObjectMeta.Name, getObjName(options, "-stream")) VerifyPegaStatefulSet(t, &statefulsetObj, pegaDeployment{getObjName(options, "-stream"), initContainers, "Stream", "900"}, options) -} +}*/ func assertBatch(t *testing.T, batchYaml string, options *helm.Options) { var deploymentObj appsv1.Deployment diff --git a/terratest/src/test/pega/pega_tier_deployment_with_tls_enabled_test.go b/terratest/src/test/pega/pega_tier_deployment_with_tls_enabled_test.go index 5d3be6121..352823dbb 100644 --- a/terratest/src/test/pega/pega_tier_deployment_with_tls_enabled_test.go +++ b/terratest/src/test/pega/pega_tier_deployment_with_tls_enabled_test.go @@ -43,8 +43,8 @@ func TestPegaTierDeploymentWithTlsEnabled(t *testing.T) { yamlSplit := strings.Split(yamlContent, "---") assertWeb(t, yamlSplit[1], options) assertBatch(t, yamlSplit[2], options) - assertStream(t, yamlSplit[3], options) - assertStreamWithSorageClass(t, yamlSplit[3], options) + //assertStream(t, yamlSplit[3], options) + //assertStreamWithSorageClass(t, yamlSplit[3], options) } }