diff options
author | OpenShift Bot <eparis+openshiftbot@redhat.com> | 2017-08-01 11:58:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-01 11:58:07 -0400 |
commit | 01e48932d615dd17c316c1b9ab00216ab0f3f78d (patch) | |
tree | eb5b9876d0219bca6c667237f9a17f9a70e52efe /inventory | |
parent | bf0bf407479458206f48885e43d3e1d3a2eab6e1 (diff) | |
parent | 604b0cc7589e1bc12041f7d4201fdf17004d7d7e (diff) | |
download | openshift-01e48932d615dd17c316c1b9ab00216ab0f3f78d.tar.gz openshift-01e48932d615dd17c316c1b9ab00216ab0f3f78d.tar.bz2 openshift-01e48932d615dd17c316c1b9ab00216ab0f3f78d.tar.xz openshift-01e48932d615dd17c316c1b9ab00216ab0f3f78d.zip |
Merge pull request #4700 from sdodson/rate-limit
Merged by openshift-bot
Diffstat (limited to 'inventory')
-rw-r--r-- | inventory/byo/hosts.origin.example | 7 | ||||
-rw-r--r-- | inventory/byo/hosts.ose.example | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/inventory/byo/hosts.origin.example b/inventory/byo/hosts.origin.example index 49f88fa20..f09c3d255 100644 --- a/inventory/byo/hosts.origin.example +++ b/inventory/byo/hosts.origin.example @@ -84,6 +84,13 @@ openshift_release=v3.6 # See: https://godoc.org/github.com/openshift/origin/pkg/cmd/server/api#ImagePolicyConfig #openshift_master_image_policy_config={"maxImagesBulkImportedPerRepository": 3, "disableScheduledImport": true} +# Configure master API rate limits for external clients +#openshift_master_external_ratelimit_qps=200 +#openshift_master_external_ratelimit_burst=400 +# Configure master API rate limits for loopback clients +#openshift_master_loopback_ratelimit_qps=300 +#openshift_master_loopback_ratelimit_burst=600 + # Docker Configuration # Add additional, insecure, and blocked registries to global docker configuration # For enterprise deployment types we ensure that registry.access.redhat.com is diff --git a/inventory/byo/hosts.ose.example b/inventory/byo/hosts.ose.example index ec18cb8ff..c4b5da5b8 100644 --- a/inventory/byo/hosts.ose.example +++ b/inventory/byo/hosts.ose.example @@ -84,6 +84,13 @@ openshift_release=v3.6 # See: https://godoc.org/github.com/openshift/origin/pkg/cmd/server/api#ImagePolicyConfig #openshift_master_image_policy_config={"maxImagesBulkImportedPerRepository": 3, "disableScheduledImport": true} +# Configure master API rate limits for external clients +#openshift_master_external_ratelimit_qps=200 +#openshift_master_external_ratelimit_burst=400 +# Configure master API rate limits for loopback clients +#openshift_master_loopback_ratelimit_qps=300 +#openshift_master_loopback_ratelimit_burst=600 + # Docker Configuration # Add additional, insecure, and blocked registries to global docker configuration # For enterprise deployment types we ensure that registry.access.redhat.com is |