-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Barbican use same uwsgi config as other services. (#1119)
This renew Barbican uwsgi config and make sure it uses same uwsgi config as other services. relate to #42 Reviewed-by: Mohammed Naser <[email protected]>
- Loading branch information
Showing
6 changed files
with
57 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
diff --git a/barbican/values.yaml b/charts/barbican/values.yaml | ||
index 3991d2ba..86abf1d3 100644 | ||
--- a/barbican/values.yaml | ||
+++ b/barbican/values.yaml | ||
@@ -360,15 +360,20 @@ conf: | ||
uwsgi: | ||
add-header: "Connection: close" | ||
buffer-size: 65535 | ||
+ chunked-input-limit: "4096000" | ||
die-on-term: true | ||
enable-threads: true | ||
exit-on-reload: false | ||
hook-master-start: unix_signal:15 gracefully_kill_them_all | ||
+ http-auto-chunked: true | ||
+ http-raw-body: true | ||
lazy-apps: true | ||
log-x-forwarded-for: true | ||
master: true | ||
+ need-app: true | ||
procname-prefix-spaced: "barbiacan-api:" | ||
route-user-agent: '^kube-probe.* donotlog:' | ||
+ socket-timeout: 10 | ||
thunder-lock: true | ||
worker-reload-mercy: 80 | ||
wsgi-file: /var/lib/openstack/bin/barbican-wsgi-api |