UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit db4ccab1 authored by Scott Stroud's avatar Scott Stroud
Browse files

tweak

parent 44500b04
No related branches found
No related tags found
2 merge requests!12Development,!112.6.0
Pipeline #1784996 passed
Pipeline: confluent-operator-2.9.x

#1784998

    ......@@ -30,8 +30,11 @@ RUN echo "===> Dependency update" \
    && yum clean all \
    && rm -rf /tmp/* /var/cache/dnf
    ENTRYPOINT ["/opt/manager"]
    HEALTHCHECK --interval=5s --timeout=5s --retries=5 CMD /bin/bash -c "ls /opt/manager"
    USER 1001
    # Polling period : 5 seconds
    # Timeout period : 2 seconds (if the polling does not return within this time, treat as a failed poll)
    # Retry period : 25 sec (after which container is deemed unhealthy)
    # All settings can be overriden at run-time in Docker/Docker Compose.
    HEALTHCHECK --interval=5s --timeout=2s --retries=5 \
    CMD curl --fail --silent --output /dev/null http://localhost:8080/readyz || exit 1
    USER 1001
    \ No newline at end of file
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment