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