48 lines
954 B
YAML
48 lines
954 B
YAML
deployment:
|
|
replica: 1
|
|
strategy: RollingUpdate
|
|
image:
|
|
repository: "rgy.angels-dev.fr/prod/bot_tamiseur"
|
|
tag: "build_2025-08-19_22h46"
|
|
pullPolicy: IfNotPresent
|
|
env:
|
|
NODE_ENV: "production"
|
|
|
|
## Pas de limite CPU pour éviter latence
|
|
resources:
|
|
limits:
|
|
# cpu: ""
|
|
# Memory: "500Mi"
|
|
requests:
|
|
Cpu: "0.1"
|
|
Memory: "50Mi"
|
|
|
|
service:
|
|
enabled: true
|
|
type: ClusterIP
|
|
name: twurple
|
|
|
|
ingress:
|
|
# If `true`, an Ingress is created
|
|
enabled: false
|
|
# The name of the Ingress Class associated with this ingress
|
|
ingressClassName: ""
|
|
# Ingress annotations
|
|
annotations: {}
|
|
# Additional Ingress labels
|
|
labels: {}
|
|
# List of rules for the Ingress
|
|
rules:
|
|
-
|
|
# Ingress host
|
|
host: discord.example.com
|
|
# Paths for the host
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
# TLS configuration
|
|
tls: []
|
|
# - hosts:
|
|
# - discord.example.com
|
|
# secretName: ""
|