Skip to content

Commit

Permalink
Merge pull request #28 from cmgrote/master
Browse files Browse the repository at this point in the history
Ports changes still being made against Egeria core repo
  • Loading branch information
cmgrote authored Sep 29, 2020
2 parents b30af63 + 9d57e0d commit c2dacd0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
class: ConnectorType
connectorProviderClassName: "{{ config.value.lineage_graph_provider }}"
configurationProperties: "{{ config.value.configurationProperties}}"
jobIntervalInSeconds: "{{ config.value.jobIntervalInSeconds }}"
jobIntervalInSeconds: "{{ config.value.job_interval_seconds | default(60, true) }}"
when: config.value.mode == 'open-lineage-service'

- name: "{{ config.key }} data engine proxy service connectivity"
Expand All @@ -91,7 +91,9 @@
userId: "{{ config.value.user_id }}"
clearPassword: "{{ config.value.clear_password }}"
configurationProperties: "{{ config.value.configuration_properties }}"
pollIntervalInSeconds: "{{ config.value.pool_interval_seconds }}"
pollIntervalInSeconds: "{{ config.value.pool_interval_seconds | default(60, true) }}"
batchWindowInSeconds: "{{ config.value.batch_window_seconds | default(86400, true) }}"
eventsClientEnabled: "{{ config.value.events_client_enabled | default(false, true) }}"
when: config.value.mode == 'data-engine-proxy-service'

- name: "{{ config.key }} set auditlog"
Expand All @@ -103,4 +105,4 @@
headers:
Content-Type: application/json
validate_certs: no
when: "config.value.auditlog_destination is defined"
when: "config.value.auditlog_destination is defined"
2 changes: 1 addition & 1 deletion helm-charts/odpi-egeria-vdc/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# repomode: supported values are in-memory-repository & local-graph-repository
# version: This is used for egeria images rather than 'tag' above, which is only used for other images
egeria:
version: "2.3-SNAPSHOT"
version: "2.4-SNAPSHOT"
repomode: local-graph-repository
user: myuser
cohort: coco
Expand Down

0 comments on commit c2dacd0

Please sign in to comment.