From ea48bf28025550b2df3a749e155afc4f2ff2a608 Mon Sep 17 00:00:00 2001 From: fumingwei Date: Mon, 12 Aug 2024 17:49:31 +0800 Subject: [PATCH] bugfix: firewall container Probe port using 9345 to sync sapp using fs4. --- .../files/helm/templates/deployment-firewall.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/roles/traffic-engine/files/helm/templates/deployment-firewall.yaml b/ansible/roles/traffic-engine/files/helm/templates/deployment-firewall.yaml index 9fa9c0f9..0d15c81d 100644 --- a/ansible/roles/traffic-engine/files/helm/templates/deployment-firewall.yaml +++ b/ansible/roles/traffic-engine/files/helm/templates/deployment-firewall.yaml @@ -93,7 +93,7 @@ spec: exec /opt/tsg/sapp/sapp {{- end }} ports: - - containerPort: 9273 + - containerPort: 9345 {{- if eq .Values.dos_protector.enable .Values.define_enable_val_yes }} - containerPort: 8551 - containerPort: 8552 @@ -118,12 +118,12 @@ spec: {{- if eq .Values.debug.firewall.enable_liveness_probe .Values.define_enable_val_yes }} livenessProbe: tcpSocket: - port: 9273 + port: 9345 failureThreshold: 1 timeoutSeconds: 10 startupProbe: tcpSocket: - port: 9273 + port: 9345 failureThreshold: 90 periodSeconds: 10 {{- end }}