Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface Platform

Package version

The platform object describes the platform which the image in the manifest runs on. A full list of valid operating system and architecture values are listed in the Go language documentation for $GOOS and $GOARCH

Hierarchy

  • Platform

Index

Properties

Optional architecture

architecture: undefined | string

Specifies the CPU architecture, for example amd64 or ppc64le.

Optional features

features: string[]

The optional features field specifies an array of strings, each listing a required CPU feature (for example sse4 or aes

Optional os

os: undefined | string

The os field specifies the operating system, for example linux or windows.

Optional osFeatures

osFeatures: string[]

The optional os.features field specifies an array of strings, each listing a required OS feature (for example on Windows win32k

Optional osVersion

osVersion: undefined | string

The optional os.version field specifies the operating system version, for example 10.0.10586.

Optional variant

variant: undefined | string

The optional variant field specifies a variant of the CPU, for example armv6l to specify a particular CPU variant of the ARM CPU.

Generated using TypeDoc