add minio
This commit is contained in:
parent
413150012f
commit
12a1aeb0f8
@ -9,6 +9,7 @@ export async function migrateServicesToNewTemplate() {
|
||||
for (const service of services) {
|
||||
if (service.type === 'plausibleanalytics' && service.plausibleAnalytics) await plausibleAnalytics(service)
|
||||
if (service.type === 'fider' && service.fider) await fider(service)
|
||||
if (service.type === 'minio' && service.minio) await minio(service)
|
||||
}
|
||||
} catch (error) {
|
||||
console.log(error)
|
||||
@ -37,6 +38,25 @@ async function createVolumes(volumes: any[], service: any) {
|
||||
await prisma.servicePersistentStorage.findFirst({ where: { volumeName, serviceId: service.id } }) || await prisma.servicePersistentStorage.create({ data: { volumeName, path, containerId, predefined: true, service: { connect: { id: service.id } } } })
|
||||
}
|
||||
}
|
||||
async function minio(service: any) {
|
||||
const { rootUser, rootUserPassword, apiFqdn } = service.fider
|
||||
|
||||
const secrets = [
|
||||
`MINIO_ROOT_PASSWORD@@@${rootUserPassword}`,
|
||||
]
|
||||
const settings = [
|
||||
`MINIO_ROOT_USER@@@${rootUser}`,
|
||||
`MINIO_SERVER_URL@@@${apiFqdn}`,
|
||||
`MINIO_BROWSER_REDIRECT_URL@@@$$generate_fqdn`,
|
||||
`MINIO_DOMAIN@@@$$generate_domain`,
|
||||
]
|
||||
await migrateSettings(settings, service);
|
||||
await migrateSecrets(secrets, service);
|
||||
|
||||
// Remove old service data
|
||||
// await prisma.service.update({ where: { id: service.id }, data: { minio: { delete: true } } })
|
||||
|
||||
}
|
||||
async function fider(service: any) {
|
||||
const { postgresqlUser, postgresqlPassword, postgresqlDatabase, jwtSecret, emailNoreply, emailMailgunApiKey, emailMailgunDomain, emailMailgunRegion, emailSmtpHost, emailSmtpPort, emailSmtpUser, emailSmtpPassword, emailSmtpEnableStartTls } = service.fider
|
||||
|
||||
|
@ -1,4 +1,79 @@
|
||||
export default [
|
||||
{
|
||||
"templateVersion": "1.0.0",
|
||||
"serviceDefaultVersion": "RELEASE.2022-10-15T19-57-03Z",
|
||||
"name": "minio",
|
||||
"displayName": "MinIO",
|
||||
"description": " MinIO is a cloud storage server compatible with Amazon S3",
|
||||
"services": {
|
||||
"$$id": {
|
||||
"name": "MinIO",
|
||||
"command": "server /data --console-address :9001",
|
||||
"documentation": "Taken from https://docs.min.io/docs/minio-docker-quickstart-guide.html",
|
||||
"depends_on": [],
|
||||
"image": "minio/minio:$$core_version",
|
||||
"volumes": [
|
||||
"$$id-data-write:/files",
|
||||
],
|
||||
"environment": [
|
||||
"MINIO_SERVER_URL=$$config_minio_server_url",
|
||||
"MINIO_BROWSER_REDIRECT_URL=$$config_minio_browser_redirect_url",
|
||||
"MINIO_DOMAIN=$$config_minio_domain",
|
||||
"MINIO_ROOT_USER=$$config_minio_root_user",
|
||||
"MINIO_ROOT_PASSWORD=$$secret_minio_root_user_password",
|
||||
"MINIO_REGION_NAME=$$config_minio_region_name",
|
||||
],
|
||||
"ports": [
|
||||
"9001",
|
||||
"9000"
|
||||
]
|
||||
}
|
||||
},
|
||||
"variables": [
|
||||
{
|
||||
"id": "$$config_server_url",
|
||||
"name": "MINIO_SERVER_URL",
|
||||
"label": "Server URL",
|
||||
"defaultValue": "",
|
||||
"description": "",
|
||||
},
|
||||
{
|
||||
"id": "$$config_browser_redirect_url",
|
||||
"name": "MINIO_BROWSER_REDIRECT_URL",
|
||||
"label": "Browser Redirect URL",
|
||||
"defaultValue": "$$generate_fqdn",
|
||||
"description": "",
|
||||
},
|
||||
{
|
||||
"id": "$$config_minio_domain",
|
||||
"name": "MINIO_DOMAIN",
|
||||
"label": "Domain",
|
||||
"defaultValue": "$$generate_domain",
|
||||
"description": "",
|
||||
},
|
||||
{
|
||||
"id": "$$config_minio_root_user",
|
||||
"name": "MINIO_ROOT_USER",
|
||||
"label": "Root User",
|
||||
"defaultValue": "$$generate_username",
|
||||
"description": "",
|
||||
},
|
||||
{
|
||||
"id": "$$secret_minio_root_user_password",
|
||||
"name": "MINIO_ROOT_PASSWORD",
|
||||
"label": "Root User Password",
|
||||
"defaultValue": "$$generate_password",
|
||||
"description": "",
|
||||
},
|
||||
{
|
||||
"id": "$$config_minio_region_name",
|
||||
"name": "MINIO_REGION_NAME",
|
||||
"label": "Region Name",
|
||||
"defaultValue": "us-east-1",
|
||||
"description": "",
|
||||
},
|
||||
]
|
||||
},
|
||||
{
|
||||
"templateVersion": "1.0.0",
|
||||
"serviceDefaultVersion": "0.21.1",
|
||||
|
Loading…
x
Reference in New Issue
Block a user