Skip to content

Commit 058cc59

Browse files
committed
fix missing semicolon
1 parent d789df8 commit 058cc59

7 files changed

+7
-7
lines changed

server/src/addons/kuberoCouchDB.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class KuberoCouchDB extends Plugin implements IPlugin {
3030
options: ['3.2.1', '3.3', '3.4.2', 'latest'], // TODO - load this dynamically
3131
name: 'spec.couchdb.image.tag',
3232
required: true,
33-
default: '3.2.1'
33+
default: '3.2.1',
3434
description: 'Version of the PostgreSQL image to use'
3535
},
3636
'KuberoCouchDB.spec.couchdb.clusterSize':{

server/src/addons/kuberoElasticsearch.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class KuberoElasticsearch extends Plugin implements IPlugin {
3030
options: ['7', '7.17.26', '8.6.0-debian-11-r0', '8', '8.17.1', 'latest'], // TODO - load this dynamically
3131
name: 'spec.couchdb.image.tag',
3232
required: true,
33-
default: '8.6.0-debian-11-r0'
33+
default: '8.6.0-debian-11-r0',
3434
description: 'Version of the PostgreSQL image to use'
3535
},
3636
'KuberoElasticsearch.spec.elasticsearch.global.storageClass':{

server/src/addons/kuberoMemcached.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class KuberoMemcached extends Plugin implements IPlugin {
3030
options: ['1.6.22-debian-11-r1', '1', '1.6.34', 'latest'], // TODO - load this dynamically
3131
name: 'spec.memcached.image.tag',
3232
required: true,
33-
default: '1.6.22-debian-11-r1'
33+
default: '1.6.22-debian-11-r1',
3434
description: 'Version of the PostgreSQL image to use'
3535
},
3636
'KuberoMemcached.spec.memcached.architecture':{

server/src/addons/kuberoMongoDB.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class KuberoMongoDB extends Plugin implements IPlugin {
3030
options: ['6.0.6-debian-11-r3', '7.0.15', '8.0', '8.0.4', 'latest'], // TODO - load this dynamically
3131
name: 'spec.mongodb.image.tag',
3232
required: true,
33-
default: '8.0'
33+
default: '8.0',
3434
description: 'Version of the PostgreSQL image to use'
3535
},
3636
'KuberoMongoDB.spec.mongodb.global.storageClass':{

server/src/addons/kuberoMysql.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class KuberoMysql extends Plugin implements IPlugin {
3030
options: ['8.0.33-debian-11-r12', '8.1', '8.2-debian-11', '8.4.4', '9.0', 'latest'], // TODO - load this dynamically
3131
name: 'spec.mysql.image.tag',
3232
required: true,
33-
default: '8.4.4'
33+
default: '8.4.4',
3434
description: 'Version of the PostgreSQL image to use'
3535
},
3636
'KuberoMysql.spec.mysql.global.storageClass':{

server/src/addons/kuberoPostgresql.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export class KuberoPostgresql extends Plugin implements IPlugin {
3030
options: ['13', '14', '15', '16.6.0', '17.2.0', 'latest'], // TODO - load this dynamically
3131
name: 'spec.postgresql.image.tag',
3232
required: true,
33-
default: '16'
33+
default: '16',
3434
description: 'Version of the PostgreSQL image to use'
3535
},
3636
'KuberoPostgresql.spec.postgresql.global.postgresql.auth.postgresPassword':{

server/src/addons/plugin.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import axios from 'axios';
22
import { KubernetesListObject, KubernetesObject } from '@kubernetes/client-node'
33

44
export interface IPluginFormFields {
5-
type: 'text' | 'number' |'switch' | 'select' | 'select-storageclass',
5+
type: 'text' | 'number' |'switch' | 'select' | 'select-storageclass' | 'combobox',
66
label: string,
77
name: string,
88
required: boolean,

0 commit comments

Comments
 (0)