summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/clusters/constants.js
blob: 72fc9355d826862b357877cbd45e703d81391596 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// These need to match what is returned from the server
export const APPLICATION_STATUS = {
  NOT_INSTALLABLE: 'not_installable',
  INSTALLABLE: 'installable',
  SCHEDULED: 'scheduled',
  INSTALLING: 'installing',
  INSTALLED: 'installed',
  UPDATED: 'updated',
  ERROR: 'errored',
};

// These are only used client-side
export const REQUEST_LOADING = 'request-loading';
export const REQUEST_SUCCESS = 'request-success';
export const REQUEST_FAILURE = 'request-failure';
export const INGRESS = 'ingress';
export const JUPYTER = 'jupyter';