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

k8s_dashboard_pods.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: 0153d5e298f7325ffcd1c5473494060858b7b31f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
query getK8sDashboardPods($configuration: LocalConfiguration) {
  k8sPods(configuration: $configuration) @client {
    metadata {
      name
      namespace
      creationTimestamp
    }
    status {
      phase
    }
  }
}