-
Notifications
You must be signed in to change notification settings - Fork 1
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
Probes are defaulted on, but can be totally overriden #41
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,17 +15,31 @@ netpol: | |
enabled: true | ||
|
||
kitcaddy: | ||
startupProbe: | ||
failureThreshold: 5 | ||
httpGet: | ||
path: /metrics | ||
port: 80 | ||
scheme: HTTP | ||
initialDelaySeconds: 50 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Jeg synes ikke jeg oplever at det er normalt at det tager så lang tid for Kitcaddy for at være klar. Normalt plejer Kitcaddy at starte op på meget kort tid (< 1sek). Kan det være en ting i Netic miljøet der gør at det tager så lang tid? Så synes jeg default skal være lavere, så det ikke går ud over andre anvendere af Kitcaddy. |
||
periodSeconds: 10 | ||
successThreshold: 1 | ||
timeoutSeconds: 5 | ||
readinessProbe: | ||
failureThreshold: 3 | ||
httpGet: | ||
path: /metrics | ||
port: 80 | ||
scheme: HTTP | ||
initialDelaySeconds: 5 | ||
periodSeconds: 5 | ||
successThreshold: 1 | ||
timeoutSeconds: 1 | ||
logLevel: INFO | ||
admin: | ||
disabled: true | ||
image: | ||
repository: kvalitetsit/kitcaddy | ||
startupProbe: | ||
path: /metrics | ||
port: 80 | ||
readinessProbe: | ||
path: /metrics | ||
port: 80 | ||
resources: | ||
limits: | ||
cpu: 100m | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nu vi er så godt i gang med at pille, burde vi ikke give mulighed for at definere en liveness probe også?