# 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: "" fullnameOverride: "" 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 fullname + "-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: type: PathPrefix value: / resources: {} livenessProbe: httpGet: path: / port: http readinessProbe: httpGet: path: / port: http