112 lines
1.6 KiB
YAML
112 lines
1.6 KiB
YAML
replicaCount: 1
|
|
|
|
image:
|
|
repository: w13
|
|
pullPolicy: IfNotPresent
|
|
tag: "latest"
|
|
|
|
imagePullSecrets: []
|
|
nameOverride: ""
|
|
fullnameOverride: ""
|
|
|
|
serviceAccount:
|
|
create: true
|
|
annotations: {}
|
|
name: ""
|
|
|
|
podAnnotations: {}
|
|
|
|
podSecurityContext:
|
|
fsGroup: 1000
|
|
|
|
securityContext:
|
|
capabilities:
|
|
drop:
|
|
- ALL
|
|
readOnlyRootFilesystem: false
|
|
runAsNonRoot: true
|
|
runAsUser: 1000
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 8000
|
|
targetPort: 8000
|
|
|
|
ingress:
|
|
enabled: false
|
|
className: ""
|
|
annotations: {}
|
|
hosts:
|
|
- host: w13.local
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
tls: []
|
|
|
|
resources:
|
|
limits:
|
|
cpu: 1000m
|
|
memory: 1Gi
|
|
requests:
|
|
cpu: 500m
|
|
memory: 512Mi
|
|
|
|
autoscaling:
|
|
enabled: false
|
|
minReplicas: 1
|
|
maxReplicas: 10
|
|
targetCPUUtilizationPercentage: 80
|
|
|
|
nodeSelector: {}
|
|
|
|
tolerations: []
|
|
|
|
affinity: {}
|
|
|
|
# Application configuration
|
|
config:
|
|
storageBackend: minio # or "s3"
|
|
maxUploadSize: 524288000 # 500MB
|
|
|
|
# PostgreSQL configuration
|
|
postgresql:
|
|
enabled: true
|
|
auth:
|
|
username: user
|
|
password: password
|
|
database: w13
|
|
primary:
|
|
persistence:
|
|
enabled: true
|
|
size: 10Gi
|
|
|
|
# MinIO configuration (for self-hosted storage)
|
|
minio:
|
|
enabled: true
|
|
mode: standalone
|
|
rootUser: minioadmin
|
|
rootPassword: minioadmin
|
|
persistence:
|
|
enabled: true
|
|
size: 50Gi
|
|
service:
|
|
type: ClusterIP
|
|
port: 9000
|
|
consoleService:
|
|
port: 9001
|
|
|
|
# AWS S3 configuration (when using AWS)
|
|
aws:
|
|
enabled: false
|
|
accessKeyId: ""
|
|
secretAccessKey: ""
|
|
region: us-east-1
|
|
bucketName: test-artifacts
|
|
|
|
# Environment variables
|
|
env:
|
|
- name: API_HOST
|
|
value: "0.0.0.0"
|
|
- name: API_PORT
|
|
value: "8000"
|