Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions kubernetes/helm/templates/nginx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ spec:
ports:
- port: {{ .Values.nginxPort }}
targetPort: {{ .Values.nginxTargetPort }}
{{- if .Values.nginxNodePort }}
nodePort: {{ .Values.nginxNodePort }}
{{- end }}
protocol: TCP
selector:
app: nginx
Expand Down
1 change: 1 addition & 0 deletions kubernetes/helm/values.dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@ memcachedLimitsMemory: "4000Mi"
memcachedServiceMemory: "3400"

# Nginx
nginxNodePort: ""
nginxReplicas: 1

3 changes: 3 additions & 0 deletions kubernetes/helm/values.fallback.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ database: db-fb-pg-16
# Proxy
proxy: proxy-hx

# Nginx
nginxNodePort: 33000

# RNAcentral
rnacentralReplicas: 1

1 change: 1 addition & 0 deletions kubernetes/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ memcachedServiceMemory: "14000"
# Nginx
nginxPort: 8000
nginxTargetPort: 80
nginxNodePort: 31000
nginxReplicas: 2
nginxRequestsMemory: "2000Mi"
nginxRequestsCPU: "1000m"
Expand Down
Loading