ffc54b028c
This allows a list of drop-ins for a unit to be declared inline within a cloud-config. For example: #cloud-config coreos: units: - name: docker.service drop-ins: - name: 50-insecure-registry.conf content: | [Service] Environment=DOCKER_OPTS='--insecure-registry="10.0.1.0/24"'
25 lines
595 B
Go
25 lines
595 B
Go
package system
|
|
|
|
import (
|
|
"github.com/coreos/coreos-cloudinit/config"
|
|
)
|
|
|
|
// flannel is a top-level structure which embeds its underlying configuration,
|
|
// config.Flannel, and provides the system-specific Unit().
|
|
type Flannel struct {
|
|
config.Flannel
|
|
}
|
|
|
|
// Units generates a Unit file drop-in for flannel, if any flannel options were
|
|
// configured in cloud-config
|
|
func (fl Flannel) Units() []Unit {
|
|
return []Unit{{config.Unit{
|
|
Name: "flanneld.service",
|
|
Runtime: true,
|
|
DropIns: []config.UnitDropIn{{
|
|
Name: "20-cloudinit.conf",
|
|
Content: serviceContents(fl.Flannel),
|
|
}},
|
|
}}}
|
|
}
|