blob: 9641611702acd9ab5619da223724049069eed275 [file] [log] [blame]
Oleksandr Shyshkoab68fe52018-06-15 18:30:14 +03001classes:
2- system.salt.minion.cert.vnc
3parameters:
4 _param:
5 novncproxy_client_ssl_key_file: /etc/pki/nova-novncproxy/client-key.pem
6 novncproxy_client_ssl_cert_file: /etc/pki/nova-novncproxy/client-cert.pem
7 novncproxy_ssl_ca_file: /etc/pki/nova-novncproxy/ca-cert.pem
Oleksandr Shyshkoab68fe52018-06-15 18:30:14 +03008 salt:
9 minion:
10 cert:
Oleksandr Shyshko2b883732018-07-11 18:00:58 +030011 novncproxy_novnc_client:
Oleksandr Shyshkoab68fe52018-06-15 18:30:14 +030012 host: ${_param:salt_minion_ca_host}
13 authority: ${_param:qemu_vnc_ca_authority}
14 common_name: ${linux:system:name}.${_param:cluster_domain}
15 signing_policy: cert_client
16 alternative_names: >
17 IP:${_param:cluster_local_address},
18 DNS:${_param:cluster_local_address},
19 DNS:${linux:system:name},
20 DNS:${linux:network:fqdn}
21 key_usage: "digitalSignature,nonRepudiation,keyEncipherment"
22 key_file: ${_param:novncproxy_client_ssl_key_file}
23 cert_file: ${_param:novncproxy_client_ssl_cert_file}
24 ca_file: ${_param:novncproxy_ssl_ca_file}
Oleksandr Shyshkoab68fe52018-06-15 18:30:14 +030025 user: nova
26 group: nova
27 mode: 640