Recipya Helm Chart
A Helm chart for deploying Recipya, a recipe management application, on Kubernetes.
Introduction
This chart deploys Recipya on a Kubernetes cluster using the Helm package manager. Recipya includes optimized Traefik ingress configuration with Content Security Policy support and sticky session handling for authentication.
Source code: https://github.com/rtomik/helm-charts/tree/main/charts/recipya
Prerequisites
- Kubernetes 1.19+
- Helm 3.2.0+
- PV provisioner support (if persistence is needed)
Installing the Chart
Uninstalling the Chart
Configuration Examples
Minimal Installation
With SendGrid Email
With SendGrid and Azure Document Intelligence via Existing Secrets
Parameters
Global Parameters
| Name |
Description |
Default |
nameOverride |
Override the release name |
"" |
fullnameOverride |
Fully override the release name |
"" |
replicaCount |
Number of replicas |
1 |
revisionHistoryLimit |
Revisions to retain |
3 |
Image Parameters
| Name |
Description |
Default |
image.repository |
Recipya image repository |
reaper99/recipya |
image.tag |
Image tag |
v1.2.2 |
image.pullPolicy |
Image pull policy |
IfNotPresent |
imagePullSecrets |
Image pull secrets |
[] |
Pod Security Parameters
| Name |
Description |
Default |
podSecurityContext.fsGroup |
Filesystem group ID |
1000 |
containerSecurityContext |
Container security context |
{} |
Application Configuration
| Name |
Description |
Default |
config.server.port |
Server port |
8078 |
config.server.url |
Base URL (must match ingress) |
http://0.0.0.0 |
config.server.autologin |
Auto-login |
false |
config.server.is_demo |
Demo mode |
false |
config.server.is_prod |
Production mode |
true |
config.server.no_signups |
Disable user registration |
false |
config.email.address |
SendGrid email address |
"" |
config.email.sendgrid |
SendGrid API key |
"" |
config.email.existingSecret |
Existing secret for email |
"" |
config.email.addressKey |
Key for email address in secret |
email |
config.email.sendgridKey |
Key for SendGrid key in secret |
sendgrid |
config.documentIntelligence.endpoint |
Azure Document Intelligence endpoint |
"" |
config.documentIntelligence.key |
Azure Document Intelligence key |
"" |
config.documentIntelligence.existingSecret |
Existing secret for Azure DI |
"" |
config.documentIntelligence.endpointKey |
Key for endpoint in secret |
di_endpoint |
config.documentIntelligence.keyKey |
Key for API key in secret |
di_key |
Service Parameters
| Name |
Description |
Default |
service.type |
Service type |
ClusterIP |
service.port |
Service port |
8078 |
Ingress Parameters
| Name |
Description |
Default |
ingress.enabled |
Enable ingress |
false |
ingress.className |
Ingress class name |
"" |
ingress.annotations |
Ingress annotations |
See values.yaml |
ingress.hosts |
Ingress hosts |
See values.yaml |
ingress.tls |
TLS configuration |
[] |
Persistence Parameters
| Name |
Description |
Default |
persistence.enabled |
Enable persistence |
false |
persistence.storageClass |
Storage class |
"" |
persistence.accessMode |
Access mode |
ReadWriteOnce |
persistence.size |
PVC size |
5Gi |
persistence.annotations |
PVC annotations |
{} |
Resource Parameters
| Name |
Description |
Default |
resources |
Resource limits and requests |
{} |
Health Check Parameters
| Name |
Description |
Default |
probes.liveness.enabled |
Enable liveness probe |
true |
probes.liveness.path |
Liveness probe path |
/ |
probes.liveness.initialDelaySeconds |
Liveness initial delay |
30 |
probes.liveness.periodSeconds |
Liveness period |
10 |
probes.readiness.enabled |
Enable readiness probe |
true |
probes.readiness.path |
Readiness probe path |
/ |
probes.readiness.initialDelaySeconds |
Readiness initial delay |
30 |
probes.readiness.periodSeconds |
Readiness period |
10 |
Troubleshooting
Post-Login Redirect Fails
Ensure config.server.url matches your ingress URL exactly, including the scheme (https://).
Content Security Policy Errors
The chart includes a Traefik middleware with a CSP policy allowing scripts from unpkg.com. If using a different ingress controller, configure an equivalent CSP policy:
Debugging
Links