coreos-cloudinit

[DEPRECATED] - Simple configuration tool for Container Linux

  • 所有者: coreos/coreos-cloudinit
  • 平台:
  • 许可证: Apache License 2.0
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

NOTE: This project has been superseded by Ignition and is no longer under active development. Please direct all development efforts to Ignition.

coreos-cloudinit Build Status

coreos-cloudinit enables a user to customize CoreOS machines by providing either a cloud-config document or an executable script through user-data.

Configuration with cloud-config

A subset of the official cloud-config spec is implemented by coreos-cloudinit.
Additionally, several CoreOS-specific options have been implemented to support interacting with unit files, bootstrapping etcd clusters, and more.
All supported cloud-config parameters are documented here.

The following is an example cloud-config document:

#cloud-config

coreos:
    units:
      - name: etcd.service
        command: start

users:
  - name: core
    passwd: $1$allJZawX$00S5T756I5PGdQga5qhqv1

write_files:
  - path: /etc/resolv.conf
    content:, nameserver 192.0.2.2
        nameserver 192.0.2.3

Executing a Script

coreos-cloudinit supports executing user-data as a script instead of parsing it as a cloud-config document.
Make sure the first line of your user-data is a shebang and coreos-cloudinit will attempt to execute it:

#!/bin/bash

echo 'Hello, world!'

user-data Field Substitution

coreos-cloudinit will replace the following set of tokens in your user-data with system-generated values., Token, Description, -------------, -----------, $public_ipv4, Public IPv4 address of machine, $private_ipv4, Private IPv4 address of machine, These values are determined by CoreOS based on the given provider on which your machine is running.
Read more about provider-specific functionality in the CoreOS OEM documentation.

For example, submitting the following user-data...

#cloud-config
coreos:
    etcd:
        addr: $public_ipv4:4001
        peer-addr: $private_ipv4:7001

...will result in this cloud-config document being executed:

#cloud-config
coreos:
    etcd:
        addr: 203.0.113.29:4001
        peer-addr: 192.0.2.13:7001

Bugs

Please use the CoreOS issue tracker to report all bugs, issues, and feature requests.

主要指标

概览
名称与所有者coreos/coreos-cloudinit
主编程语言Go
编程语言Shell (语言数: 2)
平台
许可证Apache License 2.0
所有者活动
创建于2014-03-05 00:25:47
推送于2019-02-18 02:01:34
最后一次提交2018-04-09 15:23:49
发布数89
最新版本名称v1.14.0 (发布于 2018-04-09 16:27:03)
第一版名称v0.1.0 (发布于 2014-03-04 21:07:30)
用户参与
星数342
关注者数43
派生数157
提交数875
已启用问题?
问题数0
打开的问题数0
拉请求数285
打开的拉请求数0
关闭的拉请求数43
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?