前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >CoreOS 配置工具 Ignition v2.2

CoreOS 配置工具 Ignition v2.2

作者头像
康怀帅
发布2018-02-28 15:10:00
9670
发布2018-02-28 15:10:00
举报
文章被收录于专栏:康怀帅的专栏康怀帅的专栏

This pre-release version of the specification is experimental and is subject to change without notice or regard to backward compatibility.

https://github.com/coreos/ignition/blob/master/doc/configuration-v2_2-experimental.md

The Ignition configuration is a JSON document conforming to the following specification, with italicized entries being optional:

  • ignition (object): metadata about the configuration itself.
    • version (string): the semantic version number of the spec. The spec version must be compatible with the latest version (2.2.0-experimental). Compatibility requires the major versions to match and the spec version be less than or equal to the latest version. -experimental versions compare less than the final version with the same number, and previous experimental versions are not accepted.
    • config (objects): options related to the configuration.
      • append (list of objects): a list of the configs to be appended to the current config.
        • source (string): the URL of the config. Supported schemes are http, https, s3, tftp, and data. Note: When using http, it is advisable to use the verification option to ensure the contents haven’t been modified.
        • verification (object): options related to the verification of the config.
          • hash (string): the hash of the config, in the form <type>-<value> where type is sha512.
      • replace (object): the config that will replace the current.
        • source (string): the URL of the config. Supported schemes are http, https, s3, tftp, and data. Note: When using http, it is advisable to use the verification option to ensure the contents haven’t been modified.
        • verification (object): options related to the verification of the config.
          • hash (string): the hash of the config, in the form <type>-<value> where type is sha512.
    • timeouts (object): options relating to http timeouts when fetching files over http or https.
      • httpResponseHeaders (integer) the time to wait (in seconds) for the server’s response headers (but not the body) after making a request. 0 indicates no timeout. Default is 10 seconds.
      • httpTotal (integer) the time limit (in seconds) for the operation (connection, request, and response), including retries. 0 indicates no timeout. Default is 0.
  • storage (object): describes the desired state of the system’s storage devices.
    • disks (list of objects): the list of disks to be configured and their options.
      • device (string): the absolute path to the device. Devices are typically referenced by the /dev/disk/by-* symlinks.
      • wipeTable (boolean): whether or not the partition tables shall be wiped. When true, the partition tables are erased before any further manipulation. Otherwise, the existing entries are left intact.
      • partitions (list of objects): the list of partitions and their configuration for this particular disk.
        • label (string): the PARTLABEL for the partition.
        • number (integer): the partition number, which dictates it’s position in the partition table (one-indexed). If zero, use the next available partition slot.
        • size (integer): the size of the partition (in device logical sectors, 512 or 4096 bytes). If zero, the partition will fill the remainder of the disk.
        • start (integer): the start of the partition (in device logical sectors). If zero, the partition will be positioned at the earliest available part of the disk.
        • typeGuid (string): the GPT partition type GUID. If omitted, the default will be 0FC63DAF-8483-4772-8E79-3D69D8477DE4 (Linux filesystem data).
        • guid (string): the GPT unique partition GUID.
    • raid (list of objects): the list of RAID arrays to be configured.
      • name (string): the name to use for the resulting md device.
      • level (string): the redundancy level of the array (e.g. linear, raid1, raid5, etc.).
      • devices (list of strings): the list of devices (referenced by their absolute path) in the array.
      • spares (integer): the number of spares (if applicable) in the array.
    • filesystems (list of objects): the list of filesystems to be configured and/or used in the “files” section. Either “mount” or “path” needs to be specified.
      • name (string): the identifier for the filesystem, internal to Ignition. This is only required if the filesystem needs to be referenced in the “files” section.
      • mount (object): contains the set of mount and formatting options for the filesystem. A non-null entry indicates that the filesystem should be mounted before it is used by Ignition.
        • device (string): the absolute path to the device. Devices are typically referenced by the /dev/disk/by-* symlinks.
        • format (string): the filesystem format (ext4, btrfs, xfs, vfat, or swap).
        • wipeFilesystem (boolean): whether or not to wipe the device before filesystem creation, see the documentation on filesystems for more information.
        • label (string): the label of the filesystem.
        • uuid (string): the uuid of the filesystem.
        • options (list of strings): any additional options to be passed to the format-specific mkfs utility.
        • create (object, DEPRECATED): contains the set of options to be used when creating the filesystem.
          • force (boolean, DEPRECATED): whether or not the create operation shall overwrite an existing filesystem.
          • options (list of strings, DEPRECATED): any additional options to be passed to the format-specific mkfs utility.
      • path (string): the mount-point of the filesystem. A non-null entry indicates that the filesystem has already been mounted by the system at the specified path. This is really only useful for “/sysroot”.
    • files (list of objects): the list of files to be written.
      • filesystem (string): the internal identifier of the filesystem in which to write the file. This matches the last filesystem with the given identifier.
      • path (string): the absolute path to the file.
      • contents (object): options related to the contents of the file.
        • compression (string): the type of compression used on the contents (null or gzip). Compression cannot be used with S3.
        • source (string): the URL of the file contents. Supported schemes are http, https, tftp, s3, and data. When using http, it is advisable to use the verification option to ensure the contents haven’t been modified.
        • verification (object): options related to the verification of the file contents.
          • hash (string): the hash of the config, in the form <type>-<value> where type is sha512.
      • mode (integer): the file’s permission mode. Note that the mode must be properly specified as a decimal value (i.e. 0644 -> 420).
      • user (object): specifies the file’s owner.
        • id (integer): the user ID of the owner.
        • name (string): the user name of the owner.
      • group (object): specifies the group of the owner.
        • id (integer): the group ID of the owner.
        • name (string): the group name of the owner.
    • directories (list of objects): the list of directories to be created.
      • filesystem (string): the internal identifier of the filesystem in which to create the directory. This matches the last filesystem with the given identifier.
      • path (string): the absolute path to the directory.
      • mode (integer): the directory’s permission mode. Note that the mode must be properly specified as a decimal value (i.e. 0755 -> 493).
      • user (object): specifies the directory’s owner.
        • id (integer): the user ID of the owner.
        • name (string): the user name of the owner.
      • group (object): specifies the group of the owner.
        • id (integer): the group ID of the owner.
        • name (string): the group name of the owner.
    • links (list of objects): the list of links to be created
      • filesystem (string): the internal identifier of the filesystem in which to write the link. This matches the last filesystem with the given identifier.
      • path (string): the absolute path to the link
      • user (object): specifies the symbolic link’s owner.
        • id (integer): the user ID of the owner.
        • name (string): the user name of the owner.
      • group (object): specifies the group of the owner.
        • id (integer): the group ID of the owner.
        • name (string): the group name of the owner.
      • target (string): the target path of the link
      • hard (boolean): a symbolic link is created if this is false, a hard one if this is true.
  • systemd (object): describes the desired state of the systemd units.
    • units (list of objects): the list of systemd units.
      • name (string): the name of the unit. This must be suffixed with a valid unit type (e.g. “thing.service”).
      • enable (boolean, DEPRECATED): whether or not the service shall be enabled. When true, the service is enabled. In order for this to have any effect, the unit must have an install section.
      • enabled (boolean): whether or not the service shall be enabled. When true, the service is enabled. When false, the service is disabled. When omitted, the service is unmodified. In order for this to have any effect, the unit must have an install section.
      • mask (boolean): whether or not the service shall be masked. When true, the service is masked by symlinking it to /dev/null.
      • contents (string): the contents of the unit.
      • dropins (list of objects): the list of drop-ins for the unit.
        • name (string): the name of the drop-in. This must be suffixed with “.conf”.
        • contents (string): the contents of the drop-in.
  • networkd (object): describes the desired state of the networkd files.
    • units (list of objects): the list of networkd files.
      • name (string): the name of the file. This must be suffixed with a valid unit type (e.g. “00-eth0.network”).
      • contents (string): the contents of the networkd file.
  • passwd (object): describes the desired additions to the passwd database.
    • users (list of objects): the list of accounts that shall exist.
      • name (string): the username for the account.
      • passwordHash (string): the encrypted password for the account.
      • sshAuthorizedKeys (list of strings): a list of SSH keys to be added to the user’s authorized_keys.
      • uid (integer): the user ID of the account.
      • gecos (string): the GECOS field of the account.
      • homeDir (string): the home directory of the account.
      • noCreateHome (boolean): whether or not to create the user’s home directory. This only has an effect if the account doesn’t exist yet.
      • primaryGroup (string): the name of the primary group of the account.
      • groups (list of strings): the list of supplementary groups of the account.
      • noUserGroup (boolean): whether or not to create a group with the same name as the user. This only has an effect if the account doesn’t exist yet.
      • noLogInit (boolean): whether or not to add the user to the lastlog and faillog databases. This only has an effect if the account doesn’t exist yet.
      • shell (string): the login shell of the new account.
      • system (bool): whether or not to make the account a system account. This only has an effect if the account doesn’t exist yet.
      • create (object, DEPRECATED): contains the set of options to be used when creating the user. A non-null entry indicates that the user account shall be created. This object has been marked for deprecation, please use the users level fields instead.
        • uid (integer): the user ID of the new account.
        • gecos (string): the GECOS field of the new account.
        • homeDir (string): the home directory of the new account.
        • noCreateHome (boolean): whether or not to create the user’s home directory.
        • primaryGroup (string): the name or ID of the primary group of the new account.
        • groups (list of strings): the list of supplementary groups of the new account.
        • noUserGroup (boolean): whether or not to create a group with the same name as the user.
        • noLogInit (boolean): whether or not to add the user to the lastlog and faillog databases.
        • shell (string): the login shell of the new account.
    • groups (list of objects): the list of groups to be added.
      • name (string): the name of the group.
      • gid (integer): the group ID of the new group.
      • passwordHash (string): the encrypted password of the new group.
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2016-09-01,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
相关产品与服务
容器镜像服务
容器镜像服务(Tencent Container Registry,TCR)为您提供安全独享、高性能的容器镜像托管分发服务。您可同时在全球多个地域创建独享实例,以实现容器镜像的就近拉取,降低拉取时间,节约带宽成本。TCR 提供细颗粒度的权限管理及访问控制,保障您的数据安全。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档