blob: 1ec4056726fbe4dac02756e58f9142acfd5d06c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
[
{ type: install
message: <<EOM
step 1: modify external_auth params in master config
repeat username for each user allowed access
external_auth:
pam:
username:
- .*
- '@runner'
- '@wheel'
step 2: add halite params in master config
halite:
level: info
server: cherrypy
host: 0.0.0.0
port: 8080
cors: False
tls: True
certpath: %%PREFIX%%/etc/salt/pki/certs/localhost.crt
keypath: %%PREFIX%%/etc/salt/pki/certs/localhost.key
pempath: %%PREFIX%%/etc/salt/pki/certs/localhost.pem
step 3: restart salt_master daemon
step 4: point browser to https://saltmaster:8080
EOM
}
]
|