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

environment_cluster_agent_with_flux_resource.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: 80363a06d427c8f8da4867c16affe69130a62f06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
query getEnvironmentClusterAgentWithFluxResource($projectFullPath: ID!, $environmentName: String) {
  project(fullPath: $projectFullPath) {
    id
    environment(name: $environmentName) {
      id
      kubernetesNamespace
      fluxResourcePath
      clusterAgent {
        id
        name
        webPath
        tokens {
          nodes {
            id
            lastUsedAt
          }
        }
      }
    }
  }
}