46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
# ingress-values.yaml
|
|
controller:
|
|
# Disable admission webhook to prevent ACME challenge validation issues
|
|
admissionWebhooks:
|
|
enabled: false
|
|
# Service configuratie
|
|
service:
|
|
type: LoadBalancer
|
|
loadBalancerIP: "51.159.25.49" # Jouw huidige IP
|
|
annotations:
|
|
# Scaleway specifieke annotaties
|
|
service.beta.kubernetes.io/scw-loadbalancer-use-hostname: "true"
|
|
service.beta.kubernetes.io/scw-loadbalancer-proxy-protocol-v1: "false"
|
|
service.beta.kubernetes.io/scw-loadbalancer-proxy-protocol-v2: "false"
|
|
|
|
# Resource limits (optioneel, maar aanbevolen)
|
|
resources:
|
|
limits:
|
|
cpu: 500m
|
|
memory: 512Mi
|
|
requests:
|
|
cpu: 100m
|
|
memory: 128Mi
|
|
|
|
# Replica's voor high availability (optioneel)
|
|
replicaCount: 1
|
|
|
|
# Node selector (optioneel, voor specific nodes)
|
|
# nodeSelector:
|
|
# kubernetes.io/os: linux
|
|
|
|
# Metrics (voor monitoring later)
|
|
metrics:
|
|
enabled: true
|
|
service:
|
|
annotations:
|
|
prometheus.io/scrape: "true"
|
|
prometheus.io/port: "10254"
|
|
|
|
# Default backend (optioneel)
|
|
defaultBackend:
|
|
enabled: true
|
|
image:
|
|
registry: registry.k8s.io
|
|
image: defaultbackend-amd64
|
|
tag: "1.5" |