1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

F #3951: fix defaults (#911)

Signed-off-by: Jorge Lobo <jlobo@opennebula.io>
This commit is contained in:
Jorge Miguel Lobo Escalona 2021-03-03 18:29:43 +01:00 committed by GitHub
parent 559c6e6ef0
commit 40515f9696
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View File

@ -30,9 +30,8 @@ export const UserInput = PropTypes.shape({
export const ProviderType = PropTypes.oneOf(['aws', 'packet'])
export const ProvisionType = PropTypes.oneOf([
'hybrid+',
'hybrid+_qemu',
'hybrid+_firecracker'
'metal',
'virtual'
])
export const ProvisionHost = PropTypes.shape({

View File

@ -187,7 +187,7 @@ const genPathResources = () => {
global.ETC_CPI = `${ETC_LOCATION}/${defaultAppName}`
}
if (!global.SHARE_CPI) {
global.SHARE_CPI = `${SHARE_LOCATION}/oneprovision/provisions`
global.SHARE_CPI = `${SHARE_LOCATION}/oneprovision/edge-clusters`
}
}
}