Skip to content

Commit

Permalink
Remove nginx Smee services when Smee's in hostNetwork mode:
Browse files Browse the repository at this point in the history
This removes issues when both Smee and nginx want
to listen on the same ports.

Signed-off-by: Jacob Weinstock <[email protected]>
  • Loading branch information
jacobweinstock committed Jun 10, 2024
1 parent f64eb25 commit 43f908e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tinkerbell/stack/templates/nginx-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ data:
user root;
http {
{{- if not .Values.smee.hostNetwork }}
server {
listen {{ .Values.smee.http.port }};
location / {
Expand All @@ -26,6 +27,7 @@ data:
proxy_pass http://$smee_dns:{{ .Values.smee.http.port }};
}
}
{{- end }}
server {
listen {{ .Values.hegel.service.port }};
Expand Down Expand Up @@ -65,6 +67,7 @@ data:
stream {
log_format logger-json escape=json '{"source": "nginx", "time": $msec, "address": "$remote_addr", "status": $status, "upstream_addr": "$upstream_addr"}';
{{- if not .Values.smee.hostNetwork }}
server {
listen {{ .Values.smee.tftp.port }} udp;
resolver $POD_NAMESERVER;
Expand All @@ -79,5 +82,6 @@ data:
proxy_pass $smee_dns:{{ .Values.smee.syslog.port }};
access_log /dev/stdout logger-json;
}
{{- end }}
}
{{- end }}
2 changes: 2 additions & 0 deletions tinkerbell/stack/templates/nginx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ spec:
- containerPort: {{ .Values.stack.hook.port }}
protocol: TCP
name: hook-http
{{- if not .Values.smee.hostNetwork }}
- containerPort: {{ .Values.smee.http.port }}
protocol: TCP
name: {{ .Values.smee.http.name }}
Expand All @@ -69,6 +70,7 @@ spec:
- containerPort: {{ .Values.smee.syslog.port }}
protocol: UDP
name: {{ .Values.smee.syslog.name }}
{{- end }}
resources:
limits:
cpu: 500m
Expand Down

0 comments on commit 43f908e

Please sign in to comment.