Skip to content
Snippets Groups Projects
Verified Commit 45ffc799 authored by Martin Weise's avatar Martin Weise
Browse files

Updated helm schema

parent f84ed5a5
No related branches found
No related tags found
7 merge requests!345Updated docs and endpoints:,!341Fixed mapping problem where UK and FK share columns they are inserted,!339Fixed mapping problem where UK and FK share columns they are inserted,!338Fixed mapping problem where UK and FK share columns they are inserted,!334Fixed mapping problem where UK and FK share columns they are inserted,!333Fixed mapping problem where UK and FK share columns they are inserted,!325Dev
...@@ -2287,20 +2287,20 @@ data: ...@@ -2287,20 +2287,20 @@ data:
"fullSyncPeriod" : [ "-1" ], "fullSyncPeriod" : [ "-1" ],
"pagination" : [ "false" ], "pagination" : [ "false" ],
"startTls" : [ "false" ], "startTls" : [ "false" ],
"usersDn" : [ "ou=users,dc=dbrepo,dc=at" ], "usersDn" : [ "ou=users,{{ .Values.identityservice.global.ldapDomain }}" ],
"connectionPooling" : [ "true" ], "connectionPooling" : [ "true" ],
"cachePolicy" : [ "DEFAULT" ], "cachePolicy" : [ "DEFAULT" ],
"useKerberosForPasswordAuthentication" : [ "false" ], "useKerberosForPasswordAuthentication" : [ "false" ],
"importEnabled" : [ "true" ], "importEnabled" : [ "true" ],
"enabled" : [ "true" ], "enabled" : [ "true" ],
"bindDn" : [ "cn=admin,dc=dbrepo,dc=at" ], "bindDn" : [ "cn={{ .Values.identityservice.global.adminUser }},{{ .Values.identityservice.global.ldapDomain }}" ],
"bindCredential" : [ "admin" ], "bindCredential" : [ "{{ .Values.identityservice.global.adminPassword }}" ],
"usernameLDAPAttribute" : [ "uid" ], "usernameLDAPAttribute" : [ "uid" ],
"changedSyncPeriod" : [ "-1" ], "changedSyncPeriod" : [ "-1" ],
"lastSync" : [ "1719252666" ], "lastSync" : [ "1719252666" ],
"vendor" : [ "other" ], "vendor" : [ "other" ],
"uuidLDAPAttribute" : [ "entryUUID" ], "uuidLDAPAttribute" : [ "entryUUID" ],
"connectionUrl" : [ "ldap://identity-service:1389" ], "connectionUrl" : [ "ldap://identity-service:389" ],
"allowKerberosAuthentication" : [ "false" ], "allowKerberosAuthentication" : [ "false" ],
"syncRegistrations" : [ "true" ], "syncRegistrations" : [ "true" ],
"authType" : [ "simple" ], "authType" : [ "simple" ],
......
...@@ -44,10 +44,12 @@ data: ...@@ -44,10 +44,12 @@ data:
dialect character varying(255) NOT NULL, dialect character varying(255) NOT NULL,
driver_class character varying(255) NOT NULL, driver_class character varying(255) NOT NULL,
jdbc_method character varying(255) NOT NULL, jdbc_method character varying(255) NOT NULL,
is_default BOOLEAN NOT NULL DEFAULT FALSE,
created timestamp NOT NULL DEFAULT NOW(), created timestamp NOT NULL DEFAULT NOW(),
last_modified timestamp, last_modified timestamp,
PRIMARY KEY (id), PRIMARY KEY (id),
UNIQUE (name, version) UNIQUE (name, version),
UNIQUE (is_default)
) WITH SYSTEM VERSIONING; ) WITH SYSTEM VERSIONING;
CREATE TABLE IF NOT EXISTS `mdb_images_date` CREATE TABLE IF NOT EXISTS `mdb_images_date`
...@@ -81,6 +83,7 @@ data: ...@@ -81,6 +83,7 @@ data:
last_modified timestamp, last_modified timestamp,
privileged_username character varying(255) NOT NULL, privileged_username character varying(255) NOT NULL,
privileged_password character varying(255) NOT NULL, privileged_password character varying(255) NOT NULL,
quota integer NOT NULL DEFAULT 50,
PRIMARY KEY (id), PRIMARY KEY (id),
FOREIGN KEY (image_id) REFERENCES mdb_images (id) FOREIGN KEY (image_id) REFERENCES mdb_images (id)
) WITH SYSTEM VERSIONING; ) WITH SYSTEM VERSIONING;
...@@ -266,6 +269,7 @@ data: ...@@ -266,6 +269,7 @@ data:
cid BIGINT NOT NULL, cid BIGINT NOT NULL,
rcid BIGINT NOT NULL, rcid BIGINT NOT NULL,
PRIMARY KEY (id), PRIMARY KEY (id),
UNIQUE (fkid, cid, rcid),
FOREIGN KEY (fkid) REFERENCES mdb_constraints_foreign_key (fkid) ON UPDATE CASCADE, FOREIGN KEY (fkid) REFERENCES mdb_constraints_foreign_key (fkid) ON UPDATE CASCADE,
FOREIGN KEY (cid) REFERENCES mdb_columns (id), FOREIGN KEY (cid) REFERENCES mdb_columns (id),
FOREIGN KEY (rcid) REFERENCES mdb_columns (id) FOREIGN KEY (rcid) REFERENCES mdb_columns (id)
...@@ -555,7 +559,8 @@ data: ...@@ -555,7 +559,8 @@ data:
VALUES (1, '%Y-%c-%d %H:%i:%S.%f', 'yyyy-MM-dd HH:mm:ss.SSSSSS', '2022-01-30 13:44:25.499', true), VALUES (1, '%Y-%c-%d %H:%i:%S.%f', 'yyyy-MM-dd HH:mm:ss.SSSSSS', '2022-01-30 13:44:25.499', true),
(1, '%Y-%c-%d %H:%i:%S', 'yyyy-MM-dd HH:mm:ss', '2022-01-30 13:44:25', true), (1, '%Y-%c-%d %H:%i:%S', 'yyyy-MM-dd HH:mm:ss', '2022-01-30 13:44:25', true),
(1, '%Y-%c-%d', 'yyyy-MM-dd', '2022-01-30', false), (1, '%Y-%c-%d', 'yyyy-MM-dd', '2022-01-30', false),
(1, '%H:%i:%S', 'HH:mm:ss', '13:44:25', true); (1, '%H:%i:%S', 'HH:mm:ss', '13:44:25', true),
(1, '%d.%c.%Y', 'dd.MM.yyyy', '30.01.2022', false);
INSERT INTO `mdb_ontologies` (prefix, uri, uri_pattern, sparql_endpoint, rdf_path) INSERT INTO `mdb_ontologies` (prefix, uri, uri_pattern, sparql_endpoint, rdf_path)
VALUES ('om', 'http://www.ontology-of-units-of-measure.org/resource/om-2/', VALUES ('om', 'http://www.ontology-of-units-of-measure.org/resource/om-2/',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment