mirror of
https://github.com/xcat2/confluent.git
synced 2026-06-16 08:30:49 +00:00
60 lines
1.2 KiB
JSON
60 lines
1.2 KiB
JSON
{
|
|
"hostname": {
|
|
"transient": "%%NODENAME%%",
|
|
"static": "%%NODENAME%%"
|
|
},
|
|
"root": {
|
|
"password": "%%ROOTPASSWORD%%",
|
|
"hashedPassword": true
|
|
},
|
|
"software": {
|
|
"patterns": [
|
|
"selinux"
|
|
],
|
|
"packages": []
|
|
},
|
|
"product": {
|
|
"id": "openSUSE_Leap"
|
|
},
|
|
"storage": {
|
|
"drives": [
|
|
{
|
|
"search": "%%INSTALLDISK%%",
|
|
"partitions": [
|
|
{
|
|
"search": "*",
|
|
"delete": true
|
|
},
|
|
{
|
|
"generate": "default"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"localization": {
|
|
"language": "%%LOCALE%%",
|
|
"keyboard": "%%KEYMAP%%",
|
|
"timezone": "%%TIMEZONE%%"
|
|
},
|
|
"scripts": {
|
|
"post": [
|
|
{
|
|
"name": "confluent-prechroot.sh",
|
|
"url": "https://%%DEPLOYER%%/confluent-public/os/%%PROFILE%%/scripts/prechroot.sh",
|
|
"chroot": false
|
|
},
|
|
{
|
|
"name": "confluent-post.sh",
|
|
"url": "https://%%DEPLOYER%%/confluent-public/os/%%PROFILE%%/scripts/post.sh",
|
|
"chroot": true
|
|
}
|
|
],
|
|
"init": {
|
|
"name": "confluent-init.sh",
|
|
"url": "https://%%DEPLOYER%%/confluent-public/os/%%PROFILE%%/scripts/firstboot.sh"
|
|
}
|
|
}
|
|
}
|
|
|