×

Description

ImageStreamMapping represents a mapping from a single tag to a Docker image as well as the reference to the Docker image stream the image came from.

Object Schema

Expand or mouse-over a field for more information about it.

apiVersion:
Collapse all
image:
apiVersion:
dockerImageConfig:
Collapse all
dockerImageLayers:
- mediaType:
name:
size:
dockerImageManifest:
dockerImageManifestMediaType:
Collapse all
dockerImageMetadata:
Raw:
dockerImageMetadataVersion:
dockerImageReference:
Collapse all
dockerImageSignatures:
- [string]:
kind:
Collapse all
metadata:
Collapse all
annotations:
[string]:
clusterName:
creationTimestamp:
deletionGracePeriodSeconds:
deletionTimestamp:
Collapse all
finalizers:
- [string]:
generateName:
generation:
Collapse all
initializers:
Collapse all
pending:
- name:
Collapse all
result:
apiVersion:
code:
Collapse all
details:
Collapse all
causes:
- field:
message:
reason:
group:
kind:
name:
retryAfterSeconds:
uid:
kind:
message:
Collapse all
metadata:
resourceVersion:
selfLink:
reason:
status:
Collapse all
labels:
[string]:
name:
namespace:
Collapse all
ownerReferences:
- apiVersion:
blockOwnerDeletion:
controller:
kind:
name:
uid:
resourceVersion:
selfLink:
uid:
Collapse all
signatures:
- apiVersion:
Collapse all
conditions:
- lastProbeTime:
lastTransitionTime:
message:
reason:
status:
type:
content:
created:
imageIdentity:
Collapse all
issuedBy:
commonName:
organization:
Collapse all
issuedTo:
commonName:
organization:
publicKeyID:
kind:
Collapse all
metadata:
Collapse all
annotations:
[string]:
clusterName:
creationTimestamp:
deletionGracePeriodSeconds:
deletionTimestamp:
Collapse all
finalizers:
- [string]:
generateName:
generation:
Collapse all
initializers:
Collapse all
pending:
- name:
Collapse all
result:
apiVersion:
code:
Collapse all
details:
Collapse all
causes:
- field:
message:
reason:
group:
kind:
name:
retryAfterSeconds:
uid:
kind:
message:
Collapse all
metadata:
resourceVersion:
selfLink:
reason:
status:
Collapse all
labels:
[string]:
name:
namespace:
Collapse all
ownerReferences:
- apiVersion:
blockOwnerDeletion:
controller:
kind:
name:
uid:
resourceVersion:
selfLink:
uid:
Collapse all
signedClaims:
[string]:
type:
kind:
Collapse all
metadata:
Collapse all
annotations:
[string]:
clusterName:
creationTimestamp:
deletionGracePeriodSeconds:
deletionTimestamp:
Collapse all
finalizers:
- [string]:
generateName:
generation:
Collapse all
initializers:
Collapse all
pending:
- name:
Collapse all
result:
apiVersion:
code:
Collapse all
details:
Collapse all
causes:
- field:
message:
reason:
group:
kind:
name:
retryAfterSeconds:
uid:
kind:
message:
Collapse all
metadata:
resourceVersion:
selfLink:
reason:
status:
Collapse all
labels:
[string]:
name:
namespace:
Collapse all
ownerReferences:
- apiVersion:
blockOwnerDeletion:
controller:
kind:
name:
uid:
resourceVersion:
selfLink:
uid:
tag:

Operations

Create a ImageStreamMapping

Create an ImageStreamMapping

HTTP request

POST /apis/image.openshift.io/v1/imagestreammappings HTTP/1.1
Authorization: Bearer $TOKEN
Accept: application/json
Connection: close
Content-Type: application/json'

{
  "kind": "ImageStreamMapping",
  "apiVersion": "image.openshift.io/v1",
  ...
}

Curl request

$ curl -k \
    -X POST \
    -d @- \
    -H "Authorization: Bearer $TOKEN" \
    -H 'Accept: application/json' \
    -H 'Content-Type: application/json' \
    https://$ENDPOINT/apis/image.openshift.io/v1/imagestreammappings <<'EOF'
{
  "kind": "ImageStreamMapping",
  "apiVersion": "image.openshift.io/v1",
  ...
}
EOF

HTTP body

Parameter Schema

body

v1.ImageStreamMapping

Query parameters

Parameter Description

pretty

If 'true', then the output is pretty printed.

Responses

HTTP Code Schema

200 OK

v1.ImageStreamMapping

401 Unauthorized

Consumes

  • */*

Produces

  • application/json

  • application/yaml

  • application/vnd.kubernetes.protobuf

Create a ImageStreamMapping in a namespace

Create an ImageStreamMapping

HTTP request

POST /apis/image.openshift.io/v1/namespaces/$NAMESPACE/imagestreammappings HTTP/1.1
Authorization: Bearer $TOKEN
Accept: application/json
Connection: close
Content-Type: application/json'

{
  "kind": "ImageStreamMapping",
  "apiVersion": "image.openshift.io/v1",
  ...
}

Curl request

$ curl -k \
    -X POST \
    -d @- \
    -H "Authorization: Bearer $TOKEN" \
    -H 'Accept: application/json' \
    -H 'Content-Type: application/json' \
    https://$ENDPOINT/apis/image.openshift.io/v1/namespaces/$NAMESPACE/imagestreammappings <<'EOF'
{
  "kind": "ImageStreamMapping",
  "apiVersion": "image.openshift.io/v1",
  ...
}
EOF

HTTP body

Parameter Schema

body

v1.ImageStreamMapping

Path parameters

Parameter Description

namespace

object name and auth scope, such as for teams and projects

Query parameters

Parameter Description

pretty

If 'true', then the output is pretty printed.

Responses

HTTP Code Schema

200 OK

v1.ImageStreamMapping

401 Unauthorized

Consumes

  • */*

Produces

  • application/json

  • application/yaml

  • application/vnd.kubernetes.protobuf