清单¶
清单资源的模型和管理器。
- class Manifest(attrs: Mapping[str, Any] | None = None, client: APIClient | None = None, collection: Manager | None = None)[source]¶
-
由 Podman 服务管理的清单的详细信息和配置。
初始化 PodmanResource 的基类。
- 参数:
attrs – 来自 Podman 服务的资源属性映射。
client – 配置的 Podman 服务连接。
collection – 此类资源的管理器,命名为 collection 以保持兼容性
- add(images: List[Image | str], **kwargs) None [source]¶
将镜像添加到清单列表。
- 参数:
images – 要添加到清单的镜像列表。
- 关键字参数:
all (bool) –
annotation (Dict[str, str]) –
arch (str) –
features (List[str]) –
os (str) –
os_version (str) –
variant (str) –
- 引发:
ImageNotFound – 当找不到镜像时
APIError – 当服务报告错误时
- push(destination: str, all: bool | None = None) None [source]¶
将清单列表或镜像索引推送到注册表。
- 参数:
destination – 推送的目标。
all – 推送所有镜像。
- 引发:
NotFound – 当找不到清单时
APIError – 当服务报告错误时
- remove(digest: str) None [source]¶
从清单列表中删除镜像摘要。
- 参数:
digest – 要删除的镜像摘要。如果提供了完整的镜像引用,则会解析出摘要。
- 引发:
ImageNotFound – 当找不到镜像时
APIError – 当服务报告错误时
- property id¶
返回清单列表的标识符。
- 类型:
str
- property media_type¶
返回此清单的媒体/MIME 类型。
- 类型:
Optional[str]
- property name¶
返回清单列表的人类可读标识符。
- 类型:
str
- property names¶
返回清单的标识符。
- 类型:
List[str]
- property quoted_name¶
作为路径参数引用的名称。
- 类型:
str
- property short_id¶
返回截断的标识符。当包含在 id 中时,保留“sha256”。
不会尝试确保返回值对所有资源在语义上都有意义。
- 类型:
str
- property version¶
返回此清单的模式版本类型。
- 类型:
int
- class ManifestsManager(client: APIClient = None)[source]¶
基类:
Manager
清单资源的专用管理器。
初始化 Manager() 对象。
- 参数:
client – 配置为连接到 Podman 服务的 APIClient()。
- create(name: str, images: List[Image | str] | None = None, all: bool | None = None) Manifest [source]¶
创建清单。
- 参数:
name – 清单列表的名称。
images – 要包含在清单中的镜像或镜像标识符。
all – 为 True 时,添加给定镜像的所有内容。
- 引发:
ValueError – 当没有提供名称时
NotFoundImage – 当给定的镜像不存在时
- get(key: str) Manifest [source]¶
根据名称返回清单。
为了使清单符合其他 PodmanResource,我们使用检索清单的键作为其名称。
- 参数:
key – 要搜索的清单名称
- 引发:
NotFound – 当找不到清单时
APIError – 当服务报告错误时
- prepare_model(attrs: PodmanResource | Mapping[str, Any]) PodmanResourceType ¶
根据一组属性创建模型。