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

k8s_dashboard_jobs.query.graphql « queries « graphql « kubernetes_dashboard « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 86afb47f2f9a25e4dbcda80a50d5afb113eff067 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
query getK8sDashboardJobs($configuration: LocalConfiguration) {
  k8sJobs(configuration: $configuration) @client {
    metadata {
      name
      namespace
      creationTimestamp
      labels
      annotations
    }
    status {
      failed
      succeeded
    }
    spec {
      completions
    }
  }
}