OBJECT

KubernetesKindService

Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.

link GraphQL Schema definition

  • type KubernetesKindService implements KubernetesResourceInterface, Node {
  • # Kubernetes resource API version
  • apiVersion: String!
  • # Resource context
  • context: KubernetesResourceContext!
  • # Node-compatible globally unique opaque ID field
  • id: ID!
  • # Raw JSON response as produced by KRM API
  • json: JSON!
  • # Kubernetes resource kind coming from resourceKind.kind
  • kind: String!
  • # Standard object's metadata. More info:
  • # https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
  • metadata: KubernetesResourceMetadata!
  • # name field, taken from metadata.name
  • name: String!
  • # Relationships to other nodes
  • relationships: KubernetesKindServiceRelationships!
  • # Kubernetes resource kind metadata
  • resourceKind: KubernetesResourceKind!
  • # Spec defines the behavior of a service.
  • # https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
  • spec: KubernetesKindServiceSpec
  • # Most recently observed status of the service. Populated by the system.
  • # Read-only. More info:
  • # https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
  • status: KubernetesKindServiceStatus
  • # Raw YAML response as produced by KRM API
  • yaml: String!
  • }