Files
bentopdf/chart/values.yaml
2026-02-19 12:18:33 +01:00

74 lines
1.5 KiB
YAML

# 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
tag: ''
imagePullSecrets: []
nameOverride: ''
podAnnotations: {}
podLabels: {}
service:
type: ClusterIP
port: 80
# Container listen port (BentoPDF nginx image listens on 8080).
containerPort: 8080
env: []
ingress:
enabled: false
className: ''
annotations: {}
hosts:
- host: bentopdf.local
paths:
- path: /
pathType: ImplementationSpecific
tls: []
# Gateway API (optional)
gateway:
enabled: false
name: '' # default: release name + "-gateway" suffix
namespace: '' # to override the namespace
annotations: {}
gatewayClassName: '' # required when enabled=true
listeners:
- name: http
protocol: HTTP
port: 80
allowedRoutes:
namespaces:
from: Same # Allow routes from the same namespace
httpRoute:
enabled: false
annotations: {}
# parentRefs: # Omit entirely to use default (auto-references gateway in same namespace)
# - name: "" # default: gateway.name or {release-name}-gateway
# namespace: "" # to override the namespace
# sectionName: "http"
hostnames:
- bentopdf.local
rules:
- matches:
- path:
resources: {}
livenessProbe:
httpGet:
path: /
port: http
readinessProbe:
httpGet:
path: /
port: http