15 lines
265 B
GraphQL
15 lines
265 B
GraphQL
query getK8sServices($configuration: LocalConfiguration) {
|
|
k8sServices(configuration: $configuration) @client {
|
|
metadata {
|
|
name
|
|
namespace
|
|
creationTimestamp
|
|
}
|
|
spec {
|
|
type
|
|
clusterIP
|
|
externalIP
|
|
ports
|
|
}
|
|
}
|
|
}
|