-
-
Notifications
You must be signed in to change notification settings - Fork 117
configurable utilityImage + clusterDomain and increase default db timeouts to avoid replicaset timeout #356
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
Changes from 4 commits
1332ae8
5791b33
df15944
79711af
d968971
7ec5fb0
8e8c04b
3f0601a
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 |
|---|---|---|
|
|
@@ -5,6 +5,8 @@ | |
| ## Docker image settings, applied to all StackStorm pods | ||
| ## | ||
| image: | ||
|
|
||
| utilityImage: "" | ||
guzzijones marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| # Image pull policy | ||
| pullPolicy: IfNotPresent | ||
| # st2 image repository. Set this to override the default ("stackstorm"). | ||
|
|
@@ -20,7 +22,7 @@ image: | |
| # See: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/ | ||
| #pullSecret: "your-pull-secret" | ||
|
|
||
|
|
||
| clusterDomain: cluster.local | ||
|
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. This needs some kind of doc string. The clusterDomain is defined here: https://kubernetes.io/docs/reference/config-api/kubelet-config.v1beta1/#kubelet-config-k8s-io-v1beta1-KubeletConfiguration Looks like kube-dns is the thing that defaults to I use coredns where there is not a default domain, and I did not use the How is your cluster's dns configured? 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. I use coredns. 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. my 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. on the node my kubelet-config.json does have a line for: 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. I added a comment here as well. |
||
|
|
||
| ## | ||
| ## Service Account | ||
|
|
@@ -70,6 +72,17 @@ st2: | |
| config: | | ||
| [api] | ||
| allow_origin = '*' | ||
| # fixes no replicaset found bug; | ||
| [database] | ||
| # Connection retry backoff max (seconds). | ||
| connection_retry_backoff_max_s = 10 | ||
| # Backoff multiplier (seconds). | ||
| connection_retry_backoff_mul = 1 | ||
| # Connection retry total time (minutes). | ||
| connection_retry_max_delay_m = 3 | ||
| # Connection and server selection timeout (in ms). | ||
| connection_timeout = 12000 | ||
guzzijones marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
guzzijones marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
|
|
||
| #Override Definitions can be added here. | ||
| #https://docs.stackstorm.com/latest/packs.html#overriding-pack-defaults | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.