Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mock_data.js « components « clusters_list « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e388d791b8960b41cfeb80831e2870c0d7eaa562 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
export const agentConfigurationsResponse = {
  data: {
    project: {
      agentConfigurations: {
        nodes: [{ agentName: 'installed-agent' }, { agentName: 'configured-agent' }],
      },
      clusterAgents: {
        nodes: [{ name: 'installed-agent' }],
      },
    },
  },
};