aboutsummaryrefslogtreecommitdiffstats
path: root/mcp/salt-formulas/opendaylight/map.jinja
blob: 0f6bf3c7e61397c0f1c5100ce62194501944829c (plain)
1
2
3
4
5
6
7
8
9
10
11

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #f92672 } /* Operator */
.highlight .p { color: #f8f8f2 } /* Punctuation */
.highlight .ch { color: #75715e } /* Comment.Hashba
{% set server = salt['grains.filter_by']({
    'Debian': {
      'karaf_features': {'default': ['config', 'standard', 'region', 'package', 'kar', 'ssh', 'management']},
      'odl_rest_port': '8282',
      'odl_bind_ip': '0.0.0.0',
      'repo': 'odl-team/carbon',
      'log_levels': {},
      'enable_ha': false,
      'ha_node_ips': [],
      'ha_node_index': 0,
      'security_group_mode': 'stateful',
      'vpp_routing_node': '',
      'java_extra_opts': '-Djava.net.preferIPv4Stack=true -XX:+UseG1GC',
      'java_min_mem': '1g',
      'java_max_mem': '2g',
    },
    'RedHat': {
      'repo': 'opendaylight-6-testing'
    },
}, merge=salt['pillar.get']('opendaylight:server')) %}

{%- set client = salt['grains.filter_by']({
  'Debian': {
    'pkgs': ['python-networking-odl'],
  },
}, merge=salt['pillar.get']('opendaylight:client')) %}
v>