mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
* Add a larger set of sample files for Pan This is a fairly good cross section of Pan based on code from: * https://github.com/quattor/template-library-examples * https://github.com/quattor/template-library-core * Add Pan language grammar
31 lines
828 B
Plaintext
31 lines
828 B
Plaintext
unique template site/one/resources;
|
|
|
|
# datastores templates
|
|
prefix "/software/components/opennebula/datastores/0";
|
|
"name" = "ceph.example";
|
|
"bridge_list" = list(FULL_HOSTNAME); # for now, do this from the headnode
|
|
"ceph_host" = CEPH_MON_HOSTS;
|
|
"ceph_secret" = CEPH_LIBVIRT_UUID;
|
|
"ceph_user" = "libvirt";
|
|
"ceph_user_key" = CEPH_LIBVIRT_SECRET;
|
|
"datastore_capacity_check" = true;
|
|
"pool_name" = "one";
|
|
"type" = "IMAGE_DS";
|
|
"rbd_format" = 2;
|
|
|
|
prefix "/software/components/opennebula/datastores/1";
|
|
"name" = "nfs.example";
|
|
"datastore_capacity_check" = true;
|
|
"ds_mad" = "fs";
|
|
"tm_mad" = "shared";
|
|
"type" = "IMAGE_DS";
|
|
|
|
# untouchables resources
|
|
prefix "/software/components/opennebula/untouchables";
|
|
"datastores" = list('system');
|
|
|
|
# extra conf
|
|
prefix "/software/components/opennebula";
|
|
"ssh_multiplex" = true;
|
|
"tm_system_ds" = "ssh";
|