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

flux_kustomization_status.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: 4eaea0147187c4c51bb66a01165c49b56bae022b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
query getFluxHelmKustomizationStatusQuery(
  $configuration: LocalConfiguration
  $namespace: String
  $environmentName: String
) {
  fluxKustomizationStatus(
    configuration: $configuration
    namespace: $namespace
    environmentName: $environmentName
  ) @client {
    status
    type
  }
}