summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/clusters/agents/constants.js
blob: 8eff9a152b2063145fc2fc20e0f1bca6676a037d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import { s__ } from '~/locale';
import { helpPagePath } from '~/helpers/help_page_helper';

export const MAX_LIST_COUNT = 25;

export const EVENTS_STORED_DAYS = 7;

export const EVENT_DETAILS = {
  token_created: {
    eventTypeIcon: 'token',
    title: s__('ClusterAgents|%{tokenName} created'),
    body: s__('ClusterAgents|Token created by %{userName}'),
  },
  token_revoked: {
    eventTypeIcon: 'token',
    title: s__('ClusterAgents|%{tokenName} revoked'),
    body: s__('ClusterAgents|Token revoked by %{userName}'),
  },
  agent_connected: {
    eventTypeIcon: 'connected',
    title: s__('ClusterAgents|%{titleIcon}Connected'),
    body: s__('ClusterAgents|Agent %{strongStart}connected%{strongEnd}'),
    titleIcon: {
      name: 'status-success',
      class: 'gl-text-green-500',
    },
  },
  agent_disconnected: {
    eventTypeIcon: 'connected',
    title: s__('ClusterAgents|%{titleIcon}Not connected'),
    body: s__('ClusterAgents|Agent %{strongStart}disconnected%{strongEnd}'),
    titleIcon: {
      name: 'severity-critical',
      class: 'gl-text-red-800',
    },
  },
};

export const DEFAULT_ICON = 'token';

export const CREATE_TOKEN_MODAL = 'create-token';
export const EVENT_LABEL_MODAL = 'agent_token_creation_modal';
export const EVENT_ACTIONS_OPEN = 'open_modal';
export const EVENT_ACTIONS_CLICK = 'click_button';

export const TOKEN_NAME_LIMIT = 255;

export const REVOKE_TOKEN_MODAL_ID = 'revoke-token-%{tokenName}';

export const INTEGRATION_STATUS_VALID_TOKEN = {
  icon: 'status-success',
  iconClass: 'gl-text-green-500',
  text: s__('ClusterAgents|Valid access token'),
};
export const INTEGRATION_STATUS_NO_TOKEN = {
  icon: 'status-alert',
  iconClass: 'gl-text-red-500',
  text: s__('ClusterAgents|No agent access token'),
};

export const INTEGRATION_STATUS_RESTRICTED_CI_CD = {
  icon: 'information',
  iconClass: 'text-info',
  text: s__('ClusterAgents|CI/CD workflow with restricted access'),
  helpUrl: helpPagePath('user/clusters/agent/ci_cd_workflow', {
    anchor: 'restrict-project-and-group-access-by-using-impersonation',
  }),
  featureName: 'clusterAgentsCiImpersonation',
};