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

k8s_services.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: d97849eecc120a63e83b839f0fb484c687bd383f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
query getK8sServices($configuration: LocalConfiguration) {
  k8sServices(configuration: $configuration) @client {
    metadata {
      name
      namespace
      creationTimestamp
    }
    spec {
      type
      clusterIP
      externalIP
      ports
    }
  }
}