2018-11-05 14:22:53 -05:00
|
|
|
// These need to match the enum found in app/models/clusters/cluster.rb
|
|
|
|
export const CLUSTER_TYPE = {
|
|
|
|
INSTANCE: 'instance_type',
|
|
|
|
GROUP: 'group_type',
|
|
|
|
PROJECT: 'project_type',
|
|
|
|
};
|
|
|
|
|
2019-09-22 20:06:29 -04:00
|
|
|
// These need to match the available providers in app/models/clusters/providers/
|
|
|
|
export const PROVIDER_TYPE = {
|
|
|
|
GCP: 'gcp',
|
|
|
|
};
|
|
|
|
|
2017-10-24 00:56:39 -04:00
|
|
|
// These are only used client-side
|
2019-04-26 04:15:44 -04:00
|
|
|
|
2020-03-19 05:09:27 -04:00
|
|
|
export const LOGGING_MODE = 'logging';
|
|
|
|
export const BLOCKING_MODE = 'blocking';
|