You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@streampark.apache.org by GitBox <gi...@apache.org> on 2022/11/25 09:30:49 UTC

[GitHub] [incubator-streampark] lvshaokang commented on pull request #2095: [bug]Repair helm is unavailable

lvshaokang commented on PR #2095:
URL: https://github.com/apache/incubator-streampark/pull/2095#issuecomment-1327208987

   Hi @MonsterChenzhuo , could you add `livenessProbe` and `readinessProbe` section base on the helm template.
   like this, refer[1]:
   - livenessProbe
   ```
   livenessProbe:
       exec:
           command: ["curl", "-s", "http://${host}:${port}/actuator/health/liveness"]
       initialDelaySeconds: 30
       periodSeconds: 30
       ......
   ```
   
   - readinessProbe
   ```
   readinessProbe:
       exec:
           command: ["curl", "-s", "http://${host}:${port}/actuator/health/readiness"]
       initialDelaySeconds: 30
       periodSeconds: 30
       ......
   ```
   
   [1]. https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampark.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org