Skip to content

Commit

Permalink
Prepare for a new release 0.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pdechamboux committed May 27, 2020
1 parent 503f4f9 commit eb53e16
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ applications:
instances: 1
routes:
- route: $YOUR_ROUTE$
path: target/matomo-cf-service-0.8.1.jar
path: target/matomo-cf-service-0.8.2.jar
buildpacks:
- java_buildpack
services:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<organization>
<name>Orange S.A. - Open Source Software</name>
</organization>
<version>0.8.1</version>
<version>0.8.2</version>
<name>matomo-cf-service</name>
<description>An implementation of "Matomo as a Service" exposed through an OSB API and relying on SpringBoot and CloudFoundry</description>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,26 +84,31 @@ public Catalog catalog() {
}
Map<String,Map<String,Object>> props = new HashMap<String,Map<String,Object>>();
Map<String,Object> param_props = new HashMap<String,Object>();
param_props.put("title", "Matomo Version");
param_props.put("description", "Matomo version to be instanciated");
param_props.put("type", "string");
param_props.put("enum", relEnum);
props.put(MatomoServiceInstanceService.PARAM_VERSION, param_props);
param_props = new HashMap<String,Object>();
param_props.put("title", "Time Zone");
param_props.put("description", "Time Zone within which to run this Matomo instance (e.g. \"Europe/Paris\")");
param_props.put("type", "string");
props.put(MatomoServiceInstanceService.PARAM_TZ, param_props);
param_props = new HashMap<String,Object>();
param_props.put("title", "Number of Instances");
param_props.put("description", "Number of containers to run in parallel (in 1-" + MatomoServiceInstanceService.MAX_INSTANCES + " range)");
param_props.put("type", "integer");
param_props.put("minimum", 1);
param_props.put("maximum", MatomoServiceInstanceService.MAX_INSTANCES);
props.put(MatomoServiceInstanceService.PARAM_INSTANCES, param_props);
param_props = new HashMap<String,Object>();
param_props.put("title", "Upgrade Policy");
param_props.put("description", "Upgrade policy to move to the newest available version");
param_props.put("type", "string");
param_props.put("enum", polEnum);
props.put(MatomoServiceInstanceService.PARAM_VERSIONUPGRADEPOLICY, param_props);
param_props = new HashMap<String,Object>();
param_props.put("title", "Memory Size");
param_props.put("description", "Size in MB of containers to be run (in " + Parameters.MINMEMORYSIZE + "-" + Parameters.MAXMEMORYSIZE + " range)");
param_props.put("type", "integer");
param_props.put("minimum", Parameters.MINMEMORYSIZE);
Expand Down

0 comments on commit eb53e16

Please sign in to comment.