@@ -7,7 +7,7 @@ export const DEBUG_API_SERVER = 'https://v2.postgres.ai/api/general'
7
7
8
8
export const availableTags = [ '3.4.0' , '4.0.0-alpha.6' ]
9
9
10
- export const sePackageTag = 'v1.0-rc.8 '
10
+ export const sePackageTag = 'v1.0-rc.9 '
11
11
12
12
export const dockerRunCommand = ( provider : string ) => {
13
13
/* eslint-disable no-template-curly-in-string */
@@ -48,13 +48,13 @@ export const getPlaybookCommand = (
48
48
server_image='${ cloudImages ?. native_os_image } ' \\\r
49
49
server_location='${ state . location . native_code } ' \\\r
50
50
volume_size='${ state . storage } ' \\\r
51
- dle_verification_token ='${ state . verificationToken } ' \\\r
52
- dle_version ='${ state . tag } ' \\\r
51
+ dblab_engine_verification_token ='${ state . verificationToken } ' \\\r
52
+ dblab_engine_version ='${ state . tag } ' \\\r
53
53
${ state . snapshots > 1 ? `zpool_datasets_number='${ state . snapshots } ' \\\r` : `` }
54
- ${ orgKey ? `dle_platform_org_key ='${ orgKey } ' \\\r` : `` }
55
- ${ API_SERVER === DEBUG_API_SERVER ? `dle_platform_url ='${ DEBUG_API_SERVER } ' \\\r` : `` }
54
+ ${ orgKey ? `platform_org_key ='${ orgKey } ' \\\r` : `` }
55
+ ${ API_SERVER === DEBUG_API_SERVER ? `platform_url ='${ DEBUG_API_SERVER } ' \\\r` : `` }
56
56
${ state . publicKeys ? `ssh_public_keys='${ state . publicKeys } ' \\\r` : `` }
57
- dle_platform_project_name ='${ state . name } '"`
57
+ platform_project_name ='${ state . name } '"`
58
58
59
59
export const getPlaybookCommandWithoutDocker = (
60
60
state : typeof initialState ,
@@ -68,19 +68,19 @@ export const getPlaybookCommandWithoutDocker = (
68
68
server_image='${ cloudImages ?. native_os_image } ' \\\r
69
69
server_location='${ state . location . native_code } ' \\\r
70
70
volume_size='${ state . storage } ' \\\r
71
- dle_verification_token ='${ state . verificationToken } ' \\\r
72
- dle_version ='${ state . tag } ' \\\r
71
+ dblab_engine_verification_token ='${ state . verificationToken } ' \\\r
72
+ dblab_engine_version ='${ state . tag } ' \\\r
73
73
${
74
74
state . snapshots > 1 ? `zpool_datasets_number='${ state . snapshots } ' \\\r` : ``
75
75
}
76
- ${ orgKey ? `dle_platform_org_key ='${ orgKey } ' \\\r` : `` }
76
+ ${ orgKey ? `platform_org_key ='${ orgKey } ' \\\r` : `` }
77
77
${
78
78
API_SERVER === DEBUG_API_SERVER
79
- ? `dle_platform_url ='${ DEBUG_API_SERVER } ' \\\r`
79
+ ? `platform_url ='${ DEBUG_API_SERVER } ' \\\r`
80
80
: ``
81
81
}
82
82
${ state . publicKeys ? `ssh_public_keys='${ state . publicKeys } ' \\\r` : `` }
83
- dle_platform_project_name ='${ state . name } '"`
83
+ platform_project_name ='${ state . name } '"`
84
84
85
85
export const getGcpAccountContents = ( ) =>
86
86
`export GCP_SERVICE_ACCOUNT_CONTENTS='{
0 commit comments