Trying to add readiness and liveness to filebeat

k8s version-v1.19.16
filebeat version 7.7.1

i am trying to add readiness and liveness to my code.

livenessProbe:

        exec:

          command:

          - sh

          - -c

          - |

            #!/usr/bin/env bash -e

            curl --fail 127.0.0.1:5044

        failureThreshold: 3

        initialDelaySeconds: 10

        periodSeconds: 10

        timeoutSeconds: 5

      readinessProbe:

        exec:

          command:

          - sh

          - -c

          - |

            #!/usr/bin/env bash -e

            filebeat test output

        failureThreshold: 3

        initialDelaySeconds: 10

        periodSeconds: 10

        timeoutSeconds: 5

when i restarted the pods i am getting port not found/reachable

i wanted to know which should be used

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.