feat(neuron-dev): add k8s manifests and Argo CD app for neuron-technologies dev environment

This commit is contained in:
Will Anderson
2026-04-17 08:46:47 -05:00
parent 6046b6ca3e
commit 912e129e0d
9 changed files with 253 additions and 0 deletions
@@ -0,0 +1,59 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: neuron-rest
namespace: neuron-dev
labels:
app: neuron-rest
env: dev
spec:
replicas: 1
selector:
matchLabels:
app: neuron-rest
template:
metadata:
labels:
app: neuron-rest
env: dev
spec:
containers:
- name: neuron-rest
image: registry.neuralplatform.ai/neuron-technologies/neuron-rest:dev-latest
imagePullPolicy: Always
ports:
- name: http
containerPort: 8081
envFrom:
- configMapRef:
name: neuron-dev-config
- secretRef:
name: neuron-dev-secrets
volumeMounts:
- name: data
mountPath: /data
resources:
requests:
cpu: 100m
memory: 384Mi
limits:
cpu: 500m
memory: 768Mi
livenessProbe:
httpGet:
path: /actuator/health/liveness
port: http
initialDelaySeconds: 30
periodSeconds: 30
failureThreshold: 3
readinessProbe:
httpGet:
path: /actuator/health/readiness
port: http
initialDelaySeconds: 15
periodSeconds: 10
failureThreshold: 3
volumes:
- name: data
persistentVolumeClaim:
claimName: neuron-dev-data