Skip to content

Commit 5b4cc49

Browse files
committed
Merge tag 'nebuly-platform-v1.78.2' into HEAD
2 parents 8eea26e + fd563ab commit 5b4cc49

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

nebuly-platform/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ type: application
77
# This is the chart version. This version number should be incremented each time you make changes
88
# to the chart and its templates, including the app version.
99
# Versions are expected to follow Semantic Versioning (https://semver.org/)
10-
version: 1.79.0
10+
version: 1.79.1
1111

1212
# This is the version number of the application being deployed. This version number should be
1313
# incremented each time you make changes to the application. Versions are not expected to

nebuly-platform/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Nebuly Platform
22

3-
![Version: 1.79.0](https://img.shields.io/badge/Version-1.79.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.0](https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square)
3+
![Version: 1.79.1](https://img.shields.io/badge/Version-1.79.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.0.0](https://img.shields.io/badge/AppVersion-1.0.0-informational?style=flat-square)
44

55
Helm chart for installing Nebuly's Platform on Kubernetes.
66

@@ -212,7 +212,7 @@ The command removes all the Kubernetes components associated with the chart and
212212
| auth.google.roleMapping | string | `""` | The mapping between Nebuly roles and Google groups. Example: "viewer:<viewer-group-email>,admin: <admin-group-email>,member: <member-group-email>" |
213213
| auth.image.pullPolicy | string | `"IfNotPresent"` | |
214214
| auth.image.repository | string | `"ghcr.io/nebuly-ai/nebuly-tenant-registry"` | |
215-
| auth.image.tag | string | `"v1.22.1"` | |
215+
| auth.image.tag | string | `"v1.22.5"` | |
216216
| auth.ingress | object | - | Ingress configuration for the login endpoints. |
217217
| auth.jwtSigningKey | string | `""` | Private RSA Key used for signing JWT tokens. Required only if not using an existing secret (see auth.existingSecret value below). |
218218
| auth.ldap | object | `{"activeDirectoryRoot":"","adminPassword":"","adminUsername":"","attributeMapping":"","enabled":false,"existingSecret":{"adminPasswordKey":"","adminUsernameKey":"","name":""},"groupObjectClass":"","host":"","port":"389","roleMapping":"","searchBase":"","userSearchFilter":""}` | LDAP authentication configuration. |
@@ -275,7 +275,7 @@ The command removes all the Kubernetes components associated with the chart and
275275
| backend.fullnameOverride | string | `""` | |
276276
| backend.image.pullPolicy | string | `"IfNotPresent"` | |
277277
| backend.image.repository | string | `"ghcr.io/nebuly-ai/nebuly-backend"` | |
278-
| backend.image.tag | string | `"v1.99.21"` | |
278+
| backend.image.tag | string | `"v1.99.29"` | |
279279
| backend.ingress.annotations | object | `{}` | |
280280
| backend.ingress.className | string | `""` | |
281281
| backend.ingress.enabled | bool | `false` | |
@@ -489,6 +489,7 @@ The command removes all the Kubernetes components associated with the chart and
489489
| ingestionWorker.service.port | int | `80` | |
490490
| ingestionWorker.service.type | string | `"ClusterIP"` | |
491491
| ingestionWorker.settings.alembicTable | string | `""` | The name of the alembic table used to store the status of the ingestion worker migrations. If not provided, the default `alembic_version` table will be used. |
492+
| ingestionWorker.settings.categoryEngine | string | `"cluster_based"` | The engine used to generate categories for interactions. Can be "cluster_based", "smart_sample" and "legacy" |
492493
| ingestionWorker.settings.enableDbCache | bool | `true` | Use the database as a cache for aggregate jobs; disable it for projects with over 1 million interactions. |
493494
| ingestionWorker.settings.enablePiiLanguageDetection | bool | `false` | Enable language detection for PII detection. |
494495
| ingestionWorker.settings.enablePiiLlm | bool | `false` | Enable use of LLM (pii-removal) to remove the PII during interaction processing. |

nebuly-platform/templates/_ingestion_worker.tpl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@
106106
value: {{ .Values.ingestionWorker.settings.piiEnabledTenants | toJson | quote }}
107107
- name: PII_DENY_LIST
108108
value: {{ .Values.ingestionWorker.settings.piiDenyList | toJson | quote }}
109+
- name: CATEGORY_GENERATOR_KIND
110+
value: {{ .Values.ingestionWorker.settings.categoryEngine | quote }}
109111
# AI Models pulling
110112
{{ include "aiModels.env" . }}
111113
{{- with .Values.ingestionWorker.env }}

nebuly-platform/values.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ backend:
2222
image:
2323
repository: ghcr.io/nebuly-ai/nebuly-backend
2424
pullPolicy: IfNotPresent
25-
tag: "v1.99.21"
25+
tag: "v1.99.29"
2626

2727
settings:
2828
multiTenancyMode: "dynamic_schema"
@@ -371,6 +371,9 @@ ingestionWorker:
371371

372372
# -- List of PII keywords to be ignored. You can insert names and addresses that you don't want the PII detection to remove.
373373
piiDenyList: [ ]
374+
375+
# -- The engine used to generate categories for interactions. Can be "cluster_based", "smart_sample" and "legacy"
376+
categoryEngine: "cluster_based"
374377
# -- The name of the alembic table used to store the status of the ingestion worker
375378
# migrations. If not provided, the default `alembic_version` table will be used.
376379
alembicTable: ""
@@ -1092,7 +1095,7 @@ auth:
10921095
image:
10931096
repository: ghcr.io/nebuly-ai/nebuly-tenant-registry
10941097
pullPolicy: IfNotPresent
1095-
tag: "v1.22.1"
1098+
tag: "v1.22.5"
10961099

10971100
podAnnotations: { }
10981101
podLabels: { }

0 commit comments

Comments
 (0)