bugfix: firewall container Probe port using 9345 to sync sapp using fs4.

This commit is contained in:
fumingwei
2024-08-12 17:49:31 +08:00
committed by 付明卫
parent b0225608fe
commit ea48bf2802

View File

@@ -93,7 +93,7 @@ spec:
exec /opt/tsg/sapp/sapp exec /opt/tsg/sapp/sapp
{{- end }} {{- end }}
ports: ports:
- containerPort: 9273 - containerPort: 9345
{{- if eq .Values.dos_protector.enable .Values.define_enable_val_yes }} {{- if eq .Values.dos_protector.enable .Values.define_enable_val_yes }}
- containerPort: 8551 - containerPort: 8551
- containerPort: 8552 - containerPort: 8552
@@ -118,12 +118,12 @@ spec:
{{- if eq .Values.debug.firewall.enable_liveness_probe .Values.define_enable_val_yes }} {{- if eq .Values.debug.firewall.enable_liveness_probe .Values.define_enable_val_yes }}
livenessProbe: livenessProbe:
tcpSocket: tcpSocket:
port: 9273 port: 9345
failureThreshold: 1 failureThreshold: 1
timeoutSeconds: 10 timeoutSeconds: 10
startupProbe: startupProbe:
tcpSocket: tcpSocket:
port: 9273 port: 9345
failureThreshold: 90 failureThreshold: 90
periodSeconds: 10 periodSeconds: 10
{{- end }} {{- end }}