Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions docker/development/docker-compose-fuseki.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,9 @@ services:
memory: 4G
reservations:
memory: 2G
networks:
- app_net
# Create the database directory before starting Fuseki
entrypoint: /bin/sh -c "mkdir -p /fuseki/databases/openmetadata && exec /docker-entrypoint.sh /jena-fuseki/fuseki-server --update --loc=/fuseki/databases/openmetadata /openmetadata"

volumes:
fuseki-data:
driver: local

networks:
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this change is intended (though not related). Just helps spinning up Fuseki standalone. Otherwise networks were clashing

app_net:
driver: bridge
ipam:
driver: default
config:
- subnet: 172.16.240.0/24
Original file line number Diff line number Diff line change
Expand Up @@ -525,9 +525,14 @@ public ValidationResponse validateSystem(
validation.setLogStorage(logStorageValidation);
}

addExtraValidations(applicationConfig, validation);

return validation;
}

public void addExtraValidations(
OpenMetadataApplicationConfig applicationConfig, ValidationResponse validation) {}

private StepValidation getDatabaseValidation(OpenMetadataApplicationConfig applicationConfig) {
try {
dao.testConnection();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@
"$ref": "#/definitions/stepValidation"
}
},
"additionalProperties": false
"additionalProperties": true
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export interface ValidationResponse {
* Search instance connectivity check
*/
searchInstance?: StepValidation;
[property: string]: any;
}

/**
Expand Down
Loading