summaryrefslogtreecommitdiff
path: root/interface-definitions/salt-minion.xml.in
blob: c3219cff3504404e95cdd74f18b70ea25b62b692 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?xml version="1.0"?>
<interfaceDefinition>
  <node name="service">
    <children>
      <node name="salt-minion" owner="${vyos_conf_scripts_dir}/salt-minion.py">
        <properties>
          <help>Salt Minion</help>
          <priority>500</priority>
        </properties>
        <children>
          <leafNode name="hash">
            <properties>
              <help>Hash used when discovering file on master server (default: sha256)</help>
              <completionHelp>
                <list>md5 sha1 sha224 sha256 sha384 sha512</list>
              </completionHelp>
              <constraint>
                <regex>(md5|sha1|sha224|sha256|sha384|sha512)</regex>
              </constraint>
            </properties>
            <defaultValue>sha256</defaultValue>
          </leafNode>
          <leafNode name="master">
            <properties>
              <help>Hostname or IP address of the Salt master server</help>
              <valueHelp>
                <format>ipv4</format>
                <description>Salt server IPv4 address</description>
              </valueHelp>
              <valueHelp>
                <format>ipv6</format>
                <description>Salt server IPv6 address</description>
              </valueHelp>
              <valueHelp>
                <format>hostname</format>
                <description>Salt server FQDN address</description>
              </valueHelp>
              <constraint>
                <validator name="ip-address"/>
                <validator name="fqdn"/>
              </constraint>
              <constraintErrorMessage>Invalid FQDN or IP address</constraintErrorMessage>
              <multi/>
            </properties>
          </leafNode>
          <leafNode name="id">
            <properties>
              <help>Explicitly declare ID for this minion to use (default: hostname)</help>
            </properties>
          </leafNode>
          <leafNode name="interval">
            <properties>
              <help>Interval in minutes between updates (default: 60)</help>
              <valueHelp>
                <format>u32:1-1440</format>
                <description>Update interval in minutes</description>
              </valueHelp>
              <constraint>
                <validator name="numeric" argument="--range 1-1440"/>
              </constraint>
            </properties>
            <defaultValue>60</defaultValue>
          </leafNode>
          <leafNode name="master-key">
            <properties>
              <help>URL with signature of master for auth reply verification</help>
            </properties>
          </leafNode>
          #include <include/source-interface.xml.i>
        </children>
      </node>
    </children>
  </node>
</interfaceDefinition>