Liveness and readiness probe connection refused
问题 I keep getting this error when I try to setup liveness & readiness prob for my awx_web container Liveness probe failed: Get http://POD_IP:8052/: dial tcp POD_IP:8052: connect: connection refused Liveness & Readiness section in my deployment for the container awx_web ports: - name: http containerPort: 8052 # the port of the container awx_web protocol: TCP livenessProbe: httpGet: path: / port: 8052 initialDelaySeconds: 5 periodSeconds: 5 readinessProbe: httpGet: path: / port: 8052