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

environment_cluster_agent.query.graphql « queries « graphql « environments « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f8874f2a8d8874d74a3d4471857ec0f58a4c602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
query getEnvironmentClusterAgent($projectFullPath: ID!, $environmentName: String) {
  project(fullPath: $projectFullPath) {
    id
    environment(name: $environmentName) {
      id
      fluxResourcePath
      kubernetesNamespace
      clusterAgent {
        id
        name
        webPath
        tokens {
          nodes {
            id
            lastUsedAt
          }
        }
      }
    }
  }
}