Is your feature request related to a problem? Please describe.
Presently a configuration file for zot that uses DynamoDB as the cache driver has the following format:
"cacheDriver": {
"name": "dynamodb",
"endpoint": "http://localhost:4566",
"region": "us-east-2",
"cacheTablename": "BlobTable",
"repoMetaTablename": "RepoMetadataTable",
"imageMetaTablename": "ImageMetaTable",
"repoBlobsInfoTablename": "RepoBlobsInfoTable",
"apiKeyTablename": "ApiKeyDataTable",
"userDataTablename": "UserDataTable",
"versionTablename": "VersionTable"
}
Describe the solution you'd like
I believe it would be easier for the administrator if we could could configure a table name prefix instead of each table name individually.
For example:
"cacheDriver": {
"name": "dynamodb",
"endpoint": "http://localhost:4566",
"region": "us-east-2",
"tablenamePrefix": "Zot"
}
Describe alternatives you've considered
No response
Additional context
No response
Is your feature request related to a problem? Please describe.
Presently a configuration file for zot that uses DynamoDB as the cache driver has the following format:
Describe the solution you'd like
I believe it would be easier for the administrator if we could could configure a table name prefix instead of each table name individually.
For example:
Describe alternatives you've considered
No response
Additional context
No response