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 07:32:52 UTC

[GitHub] [incubator-streampark] MonsterChenzhuo opened a new pull request, #2095: [bug]Repair helm is unavailable

MonsterChenzhuo opened a new pull request, #2095:
URL: https://github.com/apache/incubator-streampark/pull/2095

   <!--
   Thank you for contributing to StreamPark! Please make sure that your code changes
   are covered with tests. And in case of new features or big changes
   remember to adjust the documentation.
   
   ## Contribution Checklist
   
     - If this is your first time, please read our contributor guidelines: [Submit Code](https://streampark.apache.org/community/submit_guide/submit_code).
   
     - Make sure that the pull request corresponds to a [GITHUB issue](https://github.com/apache/incubator-streampark/issues).
   
     - Name the pull request in the form "[Feature] Title of the pull request", where *Feature* can be replaced by `Hotfix`, `Bug`, etc.
   
     - Fill out the template below to describe the changes contributed by the pull request. That will give reviewers the context they need to do the review.
   
     - If the PR is unfinished, add `[WIP]` in your PR title, e.g., `[WIP][Feature] Title of the pull request`.
   
   -->
   
   ## What changes were proposed in this pull request
   
   Issue Number: close #xxx <!-- REMOVE this line if no issue to close -->
   
   <!--(For example: This pull request proposed to add checkstyle plugin).-->
   
   ## Brief change log
   
   <!--*(for example:)*
   - *Add maven-checkstyle-plugin to root pom.xml*
   -->
   
   ## Verifying this change
   
   <!--*(Please pick either of the following options)*-->
   
   This change is a trivial rework / code cleanup without any test coverage.
   
   *(or)*
   
   This change is already covered by existing tests, such as *(please describe tests)*.
   
   *(or)*
   
   This change added tests and can be verified as follows:
   
   <!--*(example:)*
   - *Added integration tests for end-to-end.*
   - *Added *Test to verify the change.*
   - *Manually verified the change by testing locally.* -->
   
   ## Does this pull request potentially affect one of the following parts
    - Dependencies (does it add or upgrade a dependency): (yes / no)
   


-- 
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


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

Posted by GitBox <gi...@apache.org>.
lvshaokang commented on PR #2095:
URL: https://github.com/apache/incubator-streampark/pull/2095#issuecomment-1334704410

   @MonsterChenzhuo , Is there a problem in this place?
   
   https://github.com/apache/incubator-streampark/blob/18b1c8d6837d7cb060d832f5de2fa8bb93504ad0/deploy/helm/streampark/templates/streampark.yml#L61-L62
   


-- 
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


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

Posted by GitBox <gi...@apache.org>.
MonsterChenzhuo commented on PR #2095:
URL: https://github.com/apache/incubator-streampark/pull/2095#issuecomment-1333020744

   > 你好 @MonsterChenzhuo, 你能加吗 `livenessProbe`和 `readinessProbe`基于 helm 模板的部分。 像这样,参考[1]:
   > 
   >     * 活性探针
   > 
   > 
   > ```
   > livenessProbe:
   >     exec:
   >         command: ["curl", "-s", "http://${host}:${port}/actuator/health/liveness"]
   >     initialDelaySeconds: 30
   >     periodSeconds: 30
   >     ......
   > ```
   > 
   >     * 就绪探针
   > 
   > 
   > ```
   > 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/ ](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/)
   
   Sorry about the probe part I'm not particularly clear, I hope to add it in the next version


-- 
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


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

Posted by GitBox <gi...@apache.org>.
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


[GitHub] [incubator-streampark] wolfboys merged pull request #2095: [bug]Repair helm is unavailable

Posted by GitBox <gi...@apache.org>.
wolfboys merged PR #2095:
URL: https://github.com/apache/incubator-streampark/pull/2095


-- 
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


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

Posted by GitBox <gi...@apache.org>.
wolfboys commented on PR #2095:
URL: https://github.com/apache/incubator-streampark/pull/2095#issuecomment-1336047980

   cc @lvshaokang about livenessProbe, we can do it in next pr


-- 
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