replace_image_by_manifest_digest_registry_and_repository#

Replace container image by manifest digest.

Arguments#

registry | String required

Container registry. All Red Hat containers use the value of ‘registry.access.redhat.com’ (regardless of whether they are shipped only to the terms-based registry at registry.redhat.io). Partner containers use the value of ‘registry.connect.redhat.com’.

repository | String required

Path of the repository.

manifest_digest | String

input | Container Image

Returns#

response_type | single

response_object | Container Image

Mutation example:

mutation {
  replace_image_by_manifest_digest_registry_and_repository(registry: "example", repository: "example", manifest_digest: "example", input: {}) {
    error {
      detail
      status
    }

    data {
      _id
    }
  }
}