We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28dff2e commit e074b42Copy full SHA for e074b42
1 file changed
helm-chart/values.yaml
@@ -8,7 +8,7 @@ replicaCount: 1
8
9
# Kubernetes service configuration
10
service:
11
- type: LoadBalancer
+ type: ClusterIP
12
port: 80
13
targetPort: 80
14
# Environment variables
@@ -64,10 +64,20 @@ secrets:
64
# Ingress (if using)
65
ingress:
66
enabled: true
67
- annotations: { }
+ annotations:
68
+ kubernetes.io/ingress.class: nginx
69
+ nginx.ingress.kubernetes.io/ssl-redirect: "true"
70
+ nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
71
hosts:
72
- host: "api.whatnow"
73
paths:
74
- path: /
75
pathType: ImplementationSpecific
- tls: []
76
+ - host: "api.whatnow.jazusoft.com"
77
+ paths:
78
+ - path: /
79
+ pathType: Prefix
80
+ tls:
81
+ - hosts:
82
+ - "api.whatnow.jazusoft.com"
83
+ secretName: "your-tls-secret"
0 commit comments