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

Optimize: k8s健康检测情况下,产生大量auth timeout #105

Merged
merged 1 commit into from
Mar 24, 2023
Merged

Optimize: k8s健康检测情况下,产生大量auth timeout #105

merged 1 commit into from
Mar 24, 2023

Conversation

xuanyanwow
Copy link
Contributor

livenessProbe:
          tcpSocket:
            port: 1215
          initialDelaySeconds: 10
          periodSeconds: 3
        readinessProbe:
          tcpSocket:
            port: 1215
          initialDelaySeconds: 10
          periodSeconds: 3

配置了健康检测,k8s会每间隔几秒就探测1215端口是否可用,close的时候应该清空Timer

```
livenessProbe:
          tcpSocket:
            port: 1215
          initialDelaySeconds: 10
          periodSeconds: 3
        readinessProbe:
          tcpSocket:
            port: 1215
          initialDelaySeconds: 10
          periodSeconds: 3
```


配置了健康检测,k8s会每间隔几秒就探测1215端口是否可用,close的时候应该清空Timer
@walkor walkor merged commit ab718a7 into walkor:master Mar 24, 2023
@walkor
Copy link
Owner

walkor commented Mar 24, 2023

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants