Skip to content

Commit 1a5d855

Browse files
committed
Move the enable-app-log-rate-limiting ops-file...
... to the experimental folder, since the feature it configures is currently considered experimental [#170267485](https://www.pivotaltracker.com/story/show/170267485)
1 parent ee65541 commit 1a5d855

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

operations/README.md

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ This is the README for Ops-files. To learn more about `cf-deployment`, go to the
3737
| [`cf-syslog-skip-cert-verify.yml`](cf-syslog-skip-cert-verify.yml) | This disables TLS verification when connecting to a HTTPS syslog drain. | | **NO** |
3838
| [`configure-default-router-group.yml`](configure-default-router-group.yml) | Allows deployer to configure reservable ports for default tcp router group by passing variable `default_router_group_ reservable_ports`. | | **NO** |
3939
| [`disable-router-tls-termination.yml`](disable-router-tls-termination.yml) | Eliminates keys related to performing TLS termination within the gorouter job. | Useful for deployments where TLS termination is performed prior to the gorouter - for instance, on AWS, such termination is commonly done at the ELB. This also eliminates the need to specify `((router_ssl.certificate))` and `((router_ssl.private_key))` in the var files. | **NO** |
40-
| [`enable-app-log-rate-limiting.yml`](enable-app-log-rate-limiting.yml) | Enable rate limiting for number of logs generated by the application. | Introduces variable `app_log_rate_limit`. | **NO** |
4140
| [`enable-cc-rate-limiting.yml`](enable-cc-rate-limiting.yml) | Enable rate limiting for UAA-authenticated endpoints. | Introduces variables `cc_rate_limiter_general_limit` and `cc_rate_limiter_unauthenticated_limit` | **NO** |
4241
| [`enable-nfs-ldap.yml`](enable-nfs-ldap.yml) | Enables LDAP authentication for NFS volume services | Requires `enable-nfs-volume-service.yml`. Introduces [new variables](example-vars-files/vars-enable-nfs-ldap.yml) | **NO** |
4342
| [`enable-nfs-volume-service.yml`](enable-nfs-volume-service.yml) | Enables volume support and deploys an NFS broker and volume driver | As of cf-deployment v2, you must use the `nfsbrokerpush` errand to cf push the nfs broker after `bosh deploy` completes. | **YES** |

operations/experimental/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ This is the README for Experimental Ops-files. To learn more about `cf-deploymen
2626
| [`add-system-metrics-agent-windows2019.yml`](add-system-metrics-agent-windows2019.yml) | Add agent to windows2019 Diego cells for the purpose of egressing system metrics | | **NO** |
2727
| [`disable-interpolate-service-bindings.yml`](disable-interpolate-service-bindings.yml) | Disables the interpolation of CredHub service credentials by Cloud Controller. | | **NO** |
2828
| [`disable-uaa-client-redirect-uri-legacy-matching-mode.yml`](disable-uaa-client-redirect-uri-legacy-matching-mode.yml) | Disables legacy (non-exact) matching of redirect URIs in the UAA. | | **NO** |
29+
| [`enable-app-log-rate-limiting.yml`](enable-app-log-rate-limiting.yml) | Enable rate limiting for number of logs generated by the application. | Introduces variable `app_log_rate_limit`. | **NO** |
2930
| [`enable-bpm-garden.yml`](enable-bpm-garden.yml) | Enables the [BOSH Process Manager](https://github.com/cloudfoundry-incubator/bpm-release) for Garden. | This ops file **cannot** be deployed in conjunction with `enable-oci-phase-1.yml`. | **NO** |
3031
| [`enable-containerd-for-processes.yml`](enable-containerd-for-processes.yml) | Configure Garden to run processes via containerd. | This ops file **cannot** be deployed in conjunction with `rootless-containers.yml`. | **NO** |
3132
| [`enable-iptables-logger.yml`](enable-iptables-logger.yml) | Enables iptables logger. | | **YES** |

units/tests/experimental_test/operations.yml

+3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ add-system-metrics-agent-windows2019.yml:
3131
add-system-metrics-agent.yml: {}
3232
disable-interpolate-service-bindings.yml: {}
3333
disable-uaa-client-redirect-uri-legacy-matching-mode.yml: {}
34+
enable-app-log-rate-limiting.yml:
35+
vars:
36+
- app_log_rate_limit=100
3437
enable-bpm-garden.yml: {}
3538
enable-containerd-for-processes.yml: {}
3639
enable-iptables-logger.yml: {}

units/tests/standard_test/operations.yml

-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ configure-default-router-group.yml:
77
vars:
88
- default_router_group_reservable_ports=1234-2024
99
disable-router-tls-termination.yml: {}
10-
enable-app-log-rate-limiting.yml:
11-
vars:
12-
- app_log_rate_limit=100
1310
enable-cc-rate-limiting.yml:
1411
vars:
1512
- cc_rate_limiter_general_limit=blah

0 commit comments

Comments
 (0)