Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(kubernetes): More configurable readiness/liveness probes #1598

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Mar 27, 2020

  1. feat(kubernetes): More configurable readiness/liveness probes

    Adds additional configuration options for liveness, and adds the same options for readiness.
    Probes have the same basic options, so refactored the type to be shared for both.
    
    Example halconfig block:
    
    ```
    deploymentEnvironment:
      # Numbers arbitrary
      livenessProbeConfig:
        enabled: true
        initialDelaySeconds: 9001
        timeoutSeconds: 62
        periodSeconds: 60
        successThreshold: 1
        failureThreshold: 5
      readinessProbeConfig:
        enabled: true
        initialDelaySeconds: 9001
        timeoutSeconds: 64
        periodSeconds: 61
        successThreshold: 2
        failureThreshold: 4
    ```
    jcavanagh committed Mar 27, 2020
    Configuration menu
    Copy the full SHA
    cfbb87b View commit details
    Browse the repository at this point in the history

Commits on Apr 6, 2020

  1. Configuration menu
    Copy the full SHA
    9e6e0da View commit details
    Browse the repository at this point in the history