OBJECT

KubernetesCapability

Represents a capability which is a list of GVKs (CRDs) and is either provided or required by a package. This node is an entry from the cartesian product of capabilities and packages.

link GraphQL Schema definition

  • type KubernetesCapability implements Node {
  • # the catalog item id corresponding to the package that provides this capability
  • catalogItemId: String!
  • # user-visible description
  • description: String
  • # user-friendly name of the capability
  • displayName: String
  • # domain-specific capability identifier
  • id: ID!
  • kubernetesPackage: KubernetesKindPackage!
  • # name of the capability
  • name: String!
  • # package ref of the package that provides/requires the capability
  • packageRefName: String!
  • # package version of the package that provides/requires the capability
  • packageVersion: String!
  • # tags of the capability
  • tags: [String]
  • }