26 lines
742 B
Python
26 lines
742 B
Python
#!/usr/bin/env python3
|
|
# encoding: utf-8
|
|
|
|
sshkeys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFioHkaV1NhX6NCqsJakJw8EVBOcDHm1MEbpY499CPtG syntaxerrormmm@fisso",
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILu91hBh8pNRt4eE1pug0Y4jCHZDCcMJ+vj3CiF5EQHV syntaxerrormmm@syntaxxps",
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILH5q/ObtC4VhNT88gebezP/svpvCoQLoZCh4DvUn4xq syntaxerrormmm@taz",
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGdTHkPCPUhvrcGgU9M6/BaEeirStM/kBnFxsLyXyelt syntaxerrormmm@kurotsuchi"
|
|
]
|
|
|
|
# Ansible configuration
|
|
playbooks = [
|
|
"deploy.yml"
|
|
]
|
|
|
|
os_to_template = {
|
|
"tpl-ci-debian12": 901,
|
|
"debian12": 901,
|
|
"bookworm": 901,
|
|
"tpl-ci-ubuntu2404": 904,
|
|
"ubuntu2404": 904,
|
|
"tpl-ci-rocky9": 902,
|
|
"rocky9": 902
|
|
}
|
|
|