diff --git a/apollo-adminservice/src/main/resources/bootstrap.yml b/apollo-adminservice/src/main/resources/bootstrap.yml index a5d13176b5b1945a9d4b17d4d8a7ecac0a322972..d2c245edf25da3416d2e180dbf13d7984ca6109e 100644 --- a/apollo-adminservice/src/main/resources/bootstrap.yml +++ b/apollo-adminservice/src/main/resources/bootstrap.yml @@ -9,5 +9,12 @@ eureka: enabled: true endpoints: - shutdown: - enabled: true \ No newline at end of file + health: + sensitive: false + +management: + security: + enabled: false + health: + status: + order: DOWN, OUT_OF_SERVICE, UNKNOWN, UP \ No newline at end of file diff --git a/apollo-adminservice/src/test/resources/bootstrap.yml b/apollo-adminservice/src/test/resources/bootstrap.yml index a1b5dbae6a24b740442a9ee0568bcad4035db4a6..6f11157de6877ee432d682a5aaa0eae29e554de2 100644 --- a/apollo-adminservice/src/test/resources/bootstrap.yml +++ b/apollo-adminservice/src/test/resources/bootstrap.yml @@ -5,4 +5,16 @@ eureka: serviceUrl: defaultZone: http://${eureka.instance.hostname}:8090/eureka/ healthcheck: - enabled: true \ No newline at end of file + enabled: true + + +endpoints: + health: + sensitive: false + +management: + security: + enabled: false + health: + status: + order: DOWN, OUT_OF_SERVICE, UNKNOWN, UP \ No newline at end of file diff --git a/apollo-configservice/src/main/resources/bootstrap.yml b/apollo-configservice/src/main/resources/bootstrap.yml index d829dee4599fcf2564c5937b2d99c5a78dcb8e42..47ca40880f9eb7dd85e8e3221315baa6b2dd0dcd 100644 --- a/apollo-configservice/src/main/resources/bootstrap.yml +++ b/apollo-configservice/src/main/resources/bootstrap.yml @@ -11,5 +11,12 @@ eureka: enabled: true endpoints: - shutdown: - enabled: true \ No newline at end of file + health: + sensitive: false + +management: + security: + enabled: false + health: + status: + order: DOWN, OUT_OF_SERVICE, UNKNOWN, UP \ No newline at end of file diff --git a/apollo-configservice/src/test/resources/bootstrap.yml b/apollo-configservice/src/test/resources/bootstrap.yml index 64d2862baa93ff4d48b6b85b3180b4903cf3e29f..02de07540941ed5628a65c51f8dc32f55e3d8c6f 100644 --- a/apollo-configservice/src/test/resources/bootstrap.yml +++ b/apollo-configservice/src/test/resources/bootstrap.yml @@ -6,4 +6,16 @@ eureka: serviceUrl: defaultZone: http://${eureka.instance.hostname}:8080/eureka/ healthcheck: - enabled: true \ No newline at end of file + enabled: true + + +endpoints: + health: + sensitive: false + +management: + security: + enabled: false + health: + status: + order: DOWN, OUT_OF_SERVICE, UNKNOWN, UP \ No newline at end of file diff --git a/apollo-portal/src/main/resources/application.yml b/apollo-portal/src/main/resources/application.yml index 7b046657562dc7a9326ece440a51e348ebfa42ba..28d24c4930fa40630e8f27546b38db15dbac68cd 100644 --- a/apollo-portal/src/main/resources/application.yml +++ b/apollo-portal/src/main/resources/application.yml @@ -12,7 +12,14 @@ server: logging: file: /opt/logs/100003173/apollo-portal.log - + endpoints: - shutdown: - enabled: true + health: + sensitive: false + +management: + security: + enabled: false + health: + status: + order: DOWN, OUT_OF_SERVICE, UNKNOWN, UP diff --git a/apollo-portal/src/test/resources/application.yml b/apollo-portal/src/test/resources/application.yml index e42341fb94842142e45b203f4672228d41cc6106..e6cb0ca442297f9f2d33baff9c4f95c6b2918192 100644 --- a/apollo-portal/src/test/resources/application.yml +++ b/apollo-portal/src/test/resources/application.yml @@ -16,3 +16,15 @@ ctrip: apollo: portal: env: local + + +endpoints: + health: + sensitive: false + +management: + security: + enabled: false + health: + status: + order: DOWN, OUT_OF_SERVICE, UNKNOWN, UP \ No newline at end of file