@@ -7,7 +7,7 @@ export const DEBUG_API_SERVER = 'https://v2.postgres.ai/api/general'
77
88export const availableTags = [ '3.4.0' , '4.0.0-alpha.6' ]
99
10- export const sePackageTag = 'v1.0-rc.8 '
10+ export const sePackageTag = 'v1.0-rc.9 '
1111
1212export const dockerRunCommand = ( provider : string ) => {
1313 /* eslint-disable no-template-curly-in-string */
@@ -48,13 +48,13 @@ export const getPlaybookCommand = (
4848 server_image='${ cloudImages ?. native_os_image } ' \\\r
4949 server_location='${ state . location . native_code } ' \\\r
5050 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
5353 ${ 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` : `` }
5656 ${ state . publicKeys ? `ssh_public_keys='${ state . publicKeys } ' \\\r` : `` }
57- dle_platform_project_name ='${ state . name } '"`
57+ platform_project_name ='${ state . name } '"`
5858
5959export const getPlaybookCommandWithoutDocker = (
6060 state : typeof initialState ,
@@ -68,19 +68,19 @@ export const getPlaybookCommandWithoutDocker = (
6868 server_image='${ cloudImages ?. native_os_image } ' \\\r
6969 server_location='${ state . location . native_code } ' \\\r
7070 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
7373 ${
7474 state . snapshots > 1 ? `zpool_datasets_number='${ state . snapshots } ' \\\r` : ``
7575 }
76- ${ orgKey ? `dle_platform_org_key ='${ orgKey } ' \\\r` : `` }
76+ ${ orgKey ? `platform_org_key ='${ orgKey } ' \\\r` : `` }
7777 ${
7878 API_SERVER === DEBUG_API_SERVER
79- ? `dle_platform_url ='${ DEBUG_API_SERVER } ' \\\r`
79+ ? `platform_url ='${ DEBUG_API_SERVER } ' \\\r`
8080 : ``
8181 }
8282 ${ state . publicKeys ? `ssh_public_keys='${ state . publicKeys } ' \\\r` : `` }
83- dle_platform_project_name ='${ state . name } '"`
83+ platform_project_name ='${ state . name } '"`
8484
8585export const getGcpAccountContents = ( ) =>
8686 `export GCP_SERVICE_ACCOUNT_CONTENTS='{
0 commit comments