Skip to content

Commit 8ce41fb

Browse files
authored
bumping version to core 4.1.0, ui 4.0.0, and cleanup configmap requirements
1 parent aab5762 commit 8ce41fb

8 files changed

Lines changed: 26 additions & 48 deletions

File tree

charts/netapp-neo/Chart.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@ apiVersion: v2
22
name: netapp-neo
33
description: NetApp Neo v4.x — context lake microservice architecture for AI services via MCP service
44
type: application
5-
version: 26.4.1
6-
appVersion: "4.0.3p10"
5+
keywords: ["NetApp", "Neo", "MCP", "AI", "context lake"]
6+
home: "https://netapp.github.io/Innovation-Labs/"
7+
version: 26.4.2
8+
appVersion: "4.1.0"
File renamed without changes.
File renamed without changes.
File renamed without changes.

charts/netapp-neo/templates/extractor-deployment.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ spec:
3232
- name: http
3333
containerPort: {{ .Values.extractor.service.port }}
3434
protocol: TCP
35-
envFrom:
36-
- configMapRef:
37-
name: {{ include "netapp-neo.fullname" . }}-extractor
3835
env:
3936
- name: DATABASE_URL
4037
valueFrom:

charts/netapp-neo/templates/ner-deployment.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{{- if .Values.ner.enabled }}
12
apiVersion: apps/v1
23
kind: Deployment
34
metadata:
@@ -64,3 +65,4 @@ spec:
6465
timeoutSeconds: 10
6566
failureThreshold: 5
6667
restartPolicy: Always
68+
{{- end }}

charts/netapp-neo/templates/worker-deployment.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@ spec:
4040
- name: http
4141
containerPort: {{ .Values.worker.service.port }}
4242
protocol: TCP
43-
envFrom:
44-
- configMapRef:
45-
name: {{ include "netapp-neo.fullname" . }}-worker
4643
env:
4744
- name: DATABASE_URL
4845
valueFrom:

charts/netapp-neo/values.yaml

Lines changed: 20 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@
33
nameOverride: ""
44
# -- Image pull secrets (shared across all services)
55
imagePullSecrets: []
6-
# =============================================================================
6+
77
# API Service
8-
# =============================================================================
98
api:
109
replicaCount: 1
1110
image:
@@ -24,35 +23,33 @@ api:
2423
className:
2524
annotations: {}
2625
tls: []
27-
resources: {}
28-
29-
30-
# =============================================================================
26+
resources:
27+
requests:
28+
cpu: "500m"
29+
memory: "1Gi"
30+
limits:
31+
cpu: "2000m"
32+
memory: "2Gi"
33+
3134
# Worker Service
32-
# =============================================================================
3335
worker:
34-
replicaCount: 1
36+
replicaCount: 2
3537
image:
3638
repository: ghcr.io/netapp/netapp-neo-worker
3739
tag: ""
3840
pullPolicy: Always
3941
service:
4042
type: ClusterIP
4143
port: 8000
42-
resources: {}
43-
env:
44-
# Concurrency
45-
NUM_UPLOAD_WORKERS: "3"
46-
NUM_EXTRACTION_WORKERS: "2"
47-
NUM_ACL_RESOLUTION_WORKERS: "2"
48-
NUM_NER_WORKERS: "1"
49-
MAX_NER_CONCURRENT_WORK: "1"
50-
# ACL
51-
ACL_STRICT_MODE: "true"
44+
resources:
45+
requests:
46+
cpu: "500m"
47+
memory: "1Gi"
48+
limits:
49+
cpu: "2000m"
50+
memory: "2Gi"
5251

53-
# =============================================================================
5452
# Extractor Service
55-
# =============================================================================
5653
extractor:
5754
replicaCount: 1
5855
image:
@@ -63,17 +60,10 @@ extractor:
6360
type: ClusterIP
6461
port: 8000
6562
resources: {}
66-
env:
67-
# Extraction
68-
EXTRACTOR_LOG_LEVEL: "INFO"
69-
EXTRACTOR_DEFAULT_PIPELINE: "markitdown"
70-
# EXTRACTOR_MOUNT_TTL: ""
71-
# EXTRACTOR_FORCE_CPU: ""
7263

73-
# =============================================================================
7464
# NER Service
75-
# =============================================================================
7665
ner:
66+
enabled: false
7767
replicaCount: 1
7868
image:
7969
repository: ghcr.io/netapp/netapp-neo-ner
@@ -83,28 +73,18 @@ ner:
8373
type: ClusterIP
8474
port: 8000
8575
resources: {}
86-
env:
87-
NER_MODEL_NAME: "fastino/gliner2-base-v1"
88-
NER_CONFIDENCE_THRESHOLD: "0.7"
89-
NER_MAX_TEXT_LENGTH: "100000"
90-
NER_DEVICE: "auto"
91-
NER_CUDA_MAX_TEXT_LENGTH: "25000"
92-
NER_CHUNK_OVERLAP: "500"
93-
TOKENIZERS_PARALLELISM: "false"
9476
gpu:
9577
enabled: false
9678
count: 1
9779
nodeSelector: {}
9880
tolerations: []
9981

100-
# =============================================================================
10182
# UI Service
102-
# =============================================================================
10383
ui:
10484
replicaCount: 1
10585
image:
106-
repository: ghcr.io/beezy-dev/neo-ui-framework
107-
tag: "3.2.2"
86+
repository: ghcr.io/netapp/neo-ui-framework
87+
tag: "4.0.0"
10888
pullPolicy: Always
10989
service:
11090
type: ClusterIP

0 commit comments

Comments
 (0)