Compare commits

..

1 Commits

Author SHA1 Message Date
b67e61bd1b
Add nbroles_to_grains script + add note
Script allows for testing and pipeline minions to work without access to
the roles API. Additionally added a note about this in prepare_minion.py.

Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
2023-01-21 18:38:41 +01:00
6 changed files with 8 additions and 56 deletions

0
bin/nbroles_to_grains.sh Executable file → Normal file
View File

View File

@ -6,9 +6,8 @@ import socket
iddir = 'pillar/id/'
secretiddir = 'pillar/secret/id/'
baseidfile = 'pillar/mock/example.sls'
baseidfile = 'atvkdev02_home_lysergic_dev.sls'
myidfile = socket.gethostname() + '.sls'
shutil.copyfile(baseidfile, os.path.join(iddir, myidfile))
os.makedirs(secretiddir)
shutil.copyfile(baseidfile, os.path.join(secretiddir, myidfile))
shutil.copyfile(iddir + baseidfile, iddir + myidfile)
shutil.copyfile(secretiddir + baseidfile, secretiddir + myidfile)

View File

@ -8,17 +8,10 @@ excluded = ['common-suse', 'minion']
def get():
for root in ['pillar', 'salt']:
for rootdir, subdirs, files in os.walk(os.path.join(root, 'role')):
myrootdir = rootdir.split('/')
if len(myrootdir) > 2:
level = myrootdir[2:]
for file in files:
splitfile = os.path.splitext(file)
if len(splitfile) == 2 and splitfile[1] == '.sls':
role = os.path.splitext(file)[0]
if len(myrootdir) > 2:
role = '.'.join(level) + '.' + role
if not role in excluded and not role in roles:
roles.append(role)
role = os.path.splitext(file)[0]
if not role in excluded and not role in roles:
roles.append(role)
return roles
if __name__ == '__main__':

View File

@ -1 +0,0 @@
This directory contains a sample pillar which is used for mocking and testing runs - the production infrastructure will ignore it. If new pillar options are introduced, it is encouraged to add them along with sample values here.

View File

@ -1,41 +0,0 @@
include:
- secret.id.{{ salt['grains.get']('id').replace('.', '_') }}
profile:
matterbridge:
instances:
libertacasa-general:
RemoteNickFormat: "{NOPINGNICK}/{LABEL}: "
IgnoreFailureOnStart: True
MessageSplit: True
MediaDownloadPath: /var/lib/matterbridge/libertacasa-general
MediaServerDownload: "https://dummy.load.casa"
accounts:
libertacasa:
protocol: irc
Nick: mocker02
NickServNick: mocker
Server: 'irc.casa:6697'
UseTLS: True
UseSASL: True
Label: libcasa
Charset: utf8
IgnoreNicks: HistServ
UseRelayMsg: True
RemoteNickFormat: "{NICK}/{PROTOCOL}-{LABEL}"
ergo:
protocol: irc
Nick: mocker
Server: 'irc.ergo.chat:6697'
UseTLS: True
Label: ergo
UseRelayMsg: True
gateways:
foobar:
irc.libertacasa: '#dev'
irc.ergo: '#chat'
lighttpd:
vhosts:
matterbridge-general:
host: mocker.example.com
root: /var/lib/matterbridge/libertacasa-general

View File

@ -0,0 +1,2 @@
include:
- profile.test-webserver