Puppet Class: profile::query_service::graph_split

Defined in:
modules/profile/manifests/query_service/graph_split.pp

Overview

SPDX-License-Identifier: Apache-2.0

Class: profile::query_service::graph_split

This class opens the firewall to allow connecting to stat1006, and also provisions a cert for envoy via cfssl



6
7
8
9
10
11
12
13
14
15
# File 'modules/profile/manifests/query_service/graph_split.pp', line 6

class profile::query_service::graph_split {
    firewall::service {
        # T350106 temporary port to allow transfer of files from stat1006 to graph split hosts
        'graph_split_file_transfer':
          proto  => 'tcp',
          port   => 9876,
          srange => ['stat1006.eqiad.wmnet'],
    }

}