Files
bentopdf/chart/values.yaml

76 lines
1.4 KiB
YAML
Raw Normal View History

# Default values for the BentoPDF chart (single nginx static frontend).
replicaCount: 1
image:
# Image built from this repo's `Dockerfile` (nginx serving static frontend).
repository: ghcr.io/alam00000/bentopdf-simple
pullPolicy: IfNotPresent
2026-02-18 06:48:01 +01:00
tag: ''
imagePullSecrets: []
2026-02-18 06:48:01 +01:00
nameOverride: ''
fullnameOverride: ''
podAnnotations: {}
podLabels: {}
service:
type: ClusterIP
port: 80
# Container listen port (BentoPDF nginx image listens on 8080).
containerPort: 8080
env: []
ingress:
enabled: false
2026-02-18 06:48:01 +01:00
className: ''
annotations: {}
hosts:
- host: bentopdf.local
paths:
- path: /
pathType: ImplementationSpecific
tls: []
# Gateway API (optional)
gateway:
enabled: false
2026-02-18 06:48:01 +01:00
name: '' # default: release fullname + "-gateway" suffix
namespace: '' # to override the namespace
annotations: {}
2026-02-18 06:48:01 +01:00
gatewayClassName: '' # required when enabled=true
listeners:
- name: http
protocol: HTTP
port: 80
allowedRoutes:
namespaces:
from: Same # Allow routes from the same namespace
httpRoute:
2026-02-18 06:48:01 +01:00
enabled: true
parentRefs:
- name: existing-gateway
namespace: gateway-namespace
sectionName: http
hostnames:
2026-02-18 06:48:01 +01:00
- pdfs.example.com
rules:
- matches:
- path:
type: PathPrefix
value: /
resources: {}
livenessProbe:
httpGet:
path: /
port: http
readinessProbe:
httpGet:
path: /
port: http