Compare commits
No commits in common. "master" and "r5.4.0" have entirely different histories.
|
@ -2,11 +2,6 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
||||||
|
|
||||||
# Changelog for Resource Checker Smart Executor Plugin
|
# Changelog for Resource Checker Smart Executor Plugin
|
||||||
|
|
||||||
## [v2.0.1]
|
|
||||||
|
|
||||||
- Removed HomeLibraryWebApp check [#23387]
|
|
||||||
|
|
||||||
|
|
||||||
## [v2.0.0]
|
## [v2.0.0]
|
||||||
|
|
||||||
- Contexts listing is performed via rpm-common-library [#21636]
|
- Contexts listing is performed via rpm-common-library [#21636]
|
||||||
|
|
5
pom.xml
5
pom.xml
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
<groupId>org.gcube.information-system</groupId>
|
<groupId>org.gcube.information-system</groupId>
|
||||||
<artifactId>resource-checker-se-plugin</artifactId>
|
<artifactId>resource-checker-se-plugin</artifactId>
|
||||||
<version>2.0.1</version>
|
<version>2.0.0</version>
|
||||||
<name>Resource Checker Smart Executor Plugin</name>
|
<name>Resource Checker Smart Executor Plugin</name>
|
||||||
<description>Resource Checker Smart Executor Plugin periodically checks the presence of required resources in the gCore IS in every context</description>
|
<description>Resource Checker Smart Executor Plugin periodically checks the presence of required resources in the gCore IS in every context</description>
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.gcube.vremanagement</groupId>
|
<groupId>org.gcube.vremanagement</groupId>
|
||||||
<artifactId>smart-executor-bom</artifactId>
|
<artifactId>smart-executor-bom</artifactId>
|
||||||
<version>3.1.0</version>
|
<version>3.0.0</version>
|
||||||
<type>pom</type>
|
<type>pom</type>
|
||||||
<scope>import</scope>
|
<scope>import</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
@ -66,6 +66,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.googlecode.json-simple</groupId>
|
<groupId>com.googlecode.json-simple</groupId>
|
||||||
<artifactId>json-simple</artifactId>
|
<artifactId>json-simple</artifactId>
|
||||||
|
<version>1.1.1</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
@ -4,8 +4,8 @@
|
||||||
# For Types look at org.gcube.informationsystem.resource_checker.beans.BasicFunctionalityBean
|
# For Types look at org.gcube.informationsystem.resource_checker.beans.BasicFunctionalityBean
|
||||||
# For Contexts: ALL means it has to check a resource in all contexts, VO just in ROOT VO and VOs
|
# For Contexts: ALL means it has to check a resource in all contexts, VO just in ROOT VO and VOs
|
||||||
# For Operations: ALERT_READD means the service is readded and alert is sent, or only alert is sent (ALERT)
|
# For Operations: ALERT_READD means the service is readded and alert is sent, or only alert is sent (ALERT)
|
||||||
ServiceNames=HTTP-URI-Resolver,Persistence,StorageManager
|
ServiceNames=HTTP-URI-Resolver,Persistence,StorageManager,HomeLibraryWebapp
|
||||||
CategoryNames=Service,Accounting,DataStorage
|
CategoryNames=Service,Accounting,DataStorage,DataAccess
|
||||||
Types=ENDPOINT,ENDPOINT,ENDPOINT
|
Types=ENDPOINT,ENDPOINT,ENDPOINT,GCOREENDPOINT
|
||||||
Contexts=ALL,ALL,ALL
|
Contexts=ALL,ALL,ALL,VO
|
||||||
Operations=ALERT_READ,ALERT_READ,ALERT_READ
|
Operations=ALERT_READ,ALERT_READ,ALERT_READ,ALERT
|
|
@ -0,0 +1 @@
|
||||||
|
location=missing_resources/identifiers
|
|
@ -0,0 +1,11 @@
|
||||||
|
# Resources to fetch are reported here. It can be read as follows
|
||||||
|
# check for resource having (ServiceName = ServiceNames[i], CategoryName = CategoryNames[i])
|
||||||
|
# where i stands for the i-th position
|
||||||
|
# For Types look at org.gcube.informationsystem.resource_checker.beans.BasicFunctionalityBean
|
||||||
|
# For Contexts: ALL means it has to check a resource in all contexts, VO just in ROOT VO and VOs
|
||||||
|
# For Operations: ALERT_READD means the service is readded and alert is sent, or only alert is sent (ALERT)
|
||||||
|
ServiceNames=HTTP-URI-Resolver,Persistence,StorageManager,HomeLibraryWebapp
|
||||||
|
CategoryNames=Service,Accounting,DataStorage,DataAccess
|
||||||
|
Types=ENDPOINT,ENDPOINT,ENDPOINT,GCOREENDPOINT
|
||||||
|
Contexts=ALL,ALL,ALL,VO
|
||||||
|
Operations=ALERT_READ,ALERT_READ,ALERT_READ,ALERT
|
Loading…
Reference in New Issue