diff options
author | shivasubedi <shiva.subedi@est.tech> | 2021-06-23 16:31:02 +0100 |
---|---|---|
committer | shivasubedi <shiva.subedi@est.tech> | 2021-06-29 02:37:43 +0100 |
commit | 55500c3685dbc032c5cb79a727cc588d542e7d15 (patch) | |
tree | 2c8a8170b3610497fc3a6c737efd2b27d83bbf4b /src/main/resources | |
parent | b5a238326e5fc5e240acb11f52748774c2f6da40 (diff) |
create quality params in dmi-plugin
Issue-ID: CPS-432
Issue-ID: CPS-403
Signed-off-by: tragait <rahul.tyagi@est.tech>
Change-Id: I4ada1e4927a3726500396da64c454d9937f95bcf
Signed-off-by: shivasubedi <shiva.subedi@est.tech>
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/application.yml | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 08466681..e506a546 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -26,4 +26,20 @@ security: permit-uri: /manage/health/**,/manage/info,/swagger-ui/**,/swagger-resources/**,/v3/api-docs auth: username: ${CPS_USERNAME} - password: ${CPS_PASSWORD}
\ No newline at end of file + password: ${CPS_PASSWORD} + +# Actuator +management: + endpoints: + web: + base-path: /manage + exposure: + include: info,health,loggers + endpoint: + health: + show-details: always + # kubernetes probes: liveness and readiness + probes: + enabled: true + loggers: + enabled: true |