From a8dbee22f0f53ca6a48e050c13ae9306d0ddddf2 Mon Sep 17 00:00:00 2001 From: geigerj0 <112163019+geigerj0@users.noreply.github.com> Date: Tue, 18 Jun 2024 15:55:08 +0200 Subject: [PATCH 1/3] fix rendering --- README.md | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index fe1210d875..d1f6b53c38 100644 --- a/README.md +++ b/README.md @@ -17,23 +17,23 @@ through ### Make Targets -| Category | Description | Target | -|-------------------|----------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------| -| mock | generate mocks | `make generate-fakes` | -| unit-tests | run against PostgreSQL | `make test` | -| unit-tests | run against specific PostgreSQL version |
make clean #Only if you're changing versions to refresh the running docker image
make test POSTGRES_TAG=x.y
| -| unit-tests | run against MySQL | `make test db_type=mysql` | -| unit-tests | run against specific MySQL version |
make clean #Only if you're changing versions to refresh the running docker image
make test db_type=mysql MYSQL_TAG=x.y
| -| integration-tests | run against PostgreSQL | `make integration` | -| integration-tests | run against specific PostgreSQL version |
make clean #Only if you're changing versions to refresh the running docker image
make integration POSTGRES_TAG=x.y
| -| integration-tests | run against MySQL | `make integration db_type=mysql` | -| integration-tests | run against specific MySQL version |
make clean #Only if you're changing versions to refresh the running docker image
make integration db_type=mysql MYSQL_TAG=x.y
| -| acceptance-tests | run acceptance-tests, see [AutoScaler UAT guide](src/acceptance/README.md) for details | `make acceptance-tests` | -| lint | check code style | `make lint` | -| lint | check code style and apply auto-fixes | `OPTS=--fix RUBOCOP_OPTS=-A make lint` | -| build | compile project | `make build` | -| deploy | deploy Application Autoscaler and register the service broker in CF | `make deploy-autoscaler` | -| cleanup | remove build artifacts | `make clean` | +| Category | Description | Target | +|-------------------|----------------------------------------------------------------------------------------|--------------------------------------------------------------------------| +| mock | generate mocks | `make generate-fakes` | +| unit-tests | run against PostgreSQL | `make test` | +| unit-tests | run against specific PostgreSQL version | `make clean && make test POSTGRES_TAG=x.y` | +| unit-tests | run against MySQL | `make test db_type=mysql` | +| unit-tests | run against specific MySQL version | `make clean && make test db_type=mysql MYSQL_TAG=x.y` | +| integration-tests | run against PostgreSQL | `make integration` | +| integration-tests | run against specific PostgreSQL version | `make clean && make integration POSTGRES_TAG=x.y` | +| integration-tests | run against MySQL | `make integration db_type=mysql` | +| integration-tests | run against specific MySQL version | `make clean && make integration db_type=mysql MYSQL_TAG=x.y` | +| acceptance-tests | run acceptance-tests, see [AutoScaler UAT guide](src/acceptance/README.md) for details | `make acceptance-tests` | +| lint | check code style | `make lint` | +| lint | check code style and apply auto-fixes | `OPTS=--fix RUBOCOP_OPTS=-A make lint` | +| build | compile project | `make build` | +| deploy | deploy Application Autoscaler and register the service broker in CF | `make deploy-autoscaler` | +| cleanup | remove build artifacts | `make clean` | ## Use Application Autoscaler Service From 17e7306ac6b6f821cfc40a67468e23550c9bc9a6 Mon Sep 17 00:00:00 2001 From: geigerj0 <112163019+geigerj0@users.noreply.github.com> Date: Tue, 18 Jun 2024 15:56:28 +0200 Subject: [PATCH 2/3] add info about custom metrics --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d1f6b53c38..9651f0f0ae 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ The Application Autoscaler provides the capability to adjust the computation res through * dynamic scaling based on application performance metrics +* dynamic scaling based on custom metrics * scheduled scaling based on time ## Local Development From 5f1722641fb30547ea95f541770a60bfc1e179ff Mon Sep 17 00:00:00 2001 From: geigerj0 <112163019+geigerj0@users.noreply.github.com> Date: Tue, 18 Jun 2024 15:58:53 +0200 Subject: [PATCH 3/3] get rid of category --- README.md | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 9651f0f0ae..820093f5bb 100644 --- a/README.md +++ b/README.md @@ -18,23 +18,23 @@ through ### Make Targets -| Category | Description | Target | -|-------------------|----------------------------------------------------------------------------------------|--------------------------------------------------------------------------| -| mock | generate mocks | `make generate-fakes` | -| unit-tests | run against PostgreSQL | `make test` | -| unit-tests | run against specific PostgreSQL version | `make clean && make test POSTGRES_TAG=x.y` | -| unit-tests | run against MySQL | `make test db_type=mysql` | -| unit-tests | run against specific MySQL version | `make clean && make test db_type=mysql MYSQL_TAG=x.y` | -| integration-tests | run against PostgreSQL | `make integration` | -| integration-tests | run against specific PostgreSQL version | `make clean && make integration POSTGRES_TAG=x.y` | -| integration-tests | run against MySQL | `make integration db_type=mysql` | -| integration-tests | run against specific MySQL version | `make clean && make integration db_type=mysql MYSQL_TAG=x.y` | -| acceptance-tests | run acceptance-tests, see [AutoScaler UAT guide](src/acceptance/README.md) for details | `make acceptance-tests` | -| lint | check code style | `make lint` | -| lint | check code style and apply auto-fixes | `OPTS=--fix RUBOCOP_OPTS=-A make lint` | -| build | compile project | `make build` | -| deploy | deploy Application Autoscaler and register the service broker in CF | `make deploy-autoscaler` | -| cleanup | remove build artifacts | `make clean` | +| Target | Description | +|--------------------------------------------------------------------------|----------------------------------------------------------------------------------------| +| `make generate-fakes` | generate mocks | +| `make test` | run unit-tests against PostgreSQL | +| `make clean && make test POSTGRES_TAG=x.y` | run unit-tests against specific PostgreSQL version | +| `make test db_type=mysql` | run unit-tests against MySQL | +| `make clean && make test db_type=mysql MYSQL_TAG=x.y` | run unit-tests against specific MySQL version | +| `make integration` | run integration-tests against PostgreSQL | +| `make clean && make integration POSTGRES_TAG=x.y` | run integration-tests against specific PostgreSQL version | +| `make integration db_type=mysql` | run integration-tests against MySQL | +| `make clean && make integration db_type=mysql MYSQL_TAG=x.y` | run integration-tests against specific MySQL version | +| `make acceptance-tests` | run acceptance-tests, see [AutoScaler UAT guide](src/acceptance/README.md) for details | +| `make lint` | check code style | +| `OPTS=--fix RUBOCOP_OPTS=-A make lint` | check code style and apply auto-fixes | +| `make build` | compile project | +| `make deploy-autoscaler` | deploy Application Autoscaler and register the service broker in CF | +| `make clean` | remove build artifacts | ## Use Application Autoscaler Service