1

次の展開構成があります。エラーが原因でアプリケーションが失敗しているため、test-worker-health エンドポイントと health エンドポイントの両方に到達できません。startup プローブは、restartPolicy: Always として失敗した後もコンテナーを再起動し続けます。Pod は CrashLoopBackoff 状態になります。このような起動プローブを失敗させる方法はありますか?

livenessProbe:
          failureThreshold: 3
          httpGet:
            path: /health
            port: 8080
          periodSeconds: 20
          successThreshold: 1
          timeoutSeconds: 30
startupProbe:
          httpGet:
            path: /test-worker-health
            port: 8080
          failureThreshold: 12
          periodSeconds: 10
4

2 に答える 2