Skip to content

Commit

Permalink
Merge pull request #85 from DataONEorg/feature-70-mc3.0.0-release-work
Browse files Browse the repository at this point in the history
update version numbers for release
  • Loading branch information
artntek authored Apr 24, 2024
2 parents e80f3ed + 0a84f3e commit 11e6a72
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 12 deletions.
8 changes: 4 additions & 4 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,21 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.5.0
version: 1.0.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "3.0.0-SNAPSHOT"
appVersion: "3.0.0"

# Chart dependencies
dependencies:
- name: rabbitmq
- name: rabbitmq # rabbitmq version 3.10.5 is deployed by chart version 10.1.14
repository: https://charts.bitnami.com/bitnami
version: 10.1.14
condition: rabbitmq.enabled, global.rabbitmq.enabled
- name: solr
repository: https://charts.bitnami.com/bitnami
version: 6.2.3
version: 6.2.3 # solr version 9.0.0 is deployed by chart version 6.2.3
condition: solr.enabled, global.solr.enabled
12 changes: 4 additions & 8 deletions helm/config/dataone-indexer.properties
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,7 @@ index.resourcemap.namespace=http://www.w3.org/TR/rdf-syntax-grammar;

dataone.mn.registration.serviceType.url={{ .Values.idxworker.d1_serviceType_url }}

#Time (milliseconds) that resource map processor waits for solr doc readiness of its components
index.resourcemap.waitingComponent.time=800
#Number of times the resource map processor waits for the solr doc readiness of its components
index.resourcemap.waitingComponent.max.attempts=25
#Time (milliseconds) indexer will wait to grab a newer version of solr doc after a version conflict
index.solr.versionConflict.waiting.time=500
#Number of the times the indexer tries to get a newer version of solr doc after a version conflict
index.solr.versionConflict.max.attempts=25
index.resourcemap.waitingComponent.time={{ default 800 .Values.idxworker.resourcemapWaitMs }}
index.resourcemap.waitingComponent.max.attempts={{ default 25 .Values.idxworker.resourcemapMaxTries }}
index.solr.versionConflict.waiting.time={{ default 1000 .Values.idxworker.solrVerConflictWaitMs }}
index.solr.versionConflict.max.attempts={{ default 50 .Values.idxworker.solrVerConflictMaxTries }}
20 changes: 20 additions & 0 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,26 @@ idxworker:
##
solrHostname: ""

## @param idxworker.solrVerConflictWaitMs wait time (mS) before indexer grabs a newer version
## of solr doc after a version conflict
##
solrVerConflictWaitMs: 1000

## @param idxworker.solrVerConflictMaxTries Number of tries to get a newer version of solr doc
## after a version conflict
##
solrVerConflictMaxTries: 50

## @param idxworker.resourcemapWaitMs resource map processor wait time (mS) for solr doc readiness
## of its components
##
resourcemapWaitMs: 800

## @param idxworker.resourcemapMaxTries resource map processor number of tries for solr doc
## readiness of its components
##
resourcemapMaxTries: 25

## @param idxworker.rabbitmqHostname hostname of the rabbitmq service to use
## Leave unset (rabbitmqHostname: "") to automatically populate when using rmq bitnami subchart
##
Expand Down

0 comments on commit 11e6a72

Please sign in to comment.