summaryrefslogtreecommitdiffstats
path: root/roles/openshift_logging/templates/mux.j2
blob: 41e6abd5201887eca83f5ea3aa5081073fc9d292 (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
apiVersion: "v1"
kind: "DeploymentConfig"
metadata:
  name: "{{deploy_name}}"
  labels:
    provider: openshift
    component: "{{component}}"
    logging-infra: "{{logging_component}}"
spec:
  replicas: {{replicas|default(0)}}
  selector:
    provider: openshift
    component: "{{component}}"
    logging-infra: "{{logging_component}}"
  strategy:
    rollingParams:
      intervalSeconds: 1
      timeoutSeconds: 600
      updatePeriodSeconds: 1
    type: Rolling
  template:
    metadata:
      name: "{{deploy_name}}"
      labels:
        logging-infra: "{{logging_component}}"
        provider: openshift
        component: "{{component}}"
    spec:
      serviceAccountName: aggregated-logging-fluentd
{% if mux_node_selector is iterable and mux_node_selector | length > 0 %}
      nodeSelector:
{% for key, value in mux_node_selector.iteritems() %}
        {{key}}: "{{value}}"
{% endfor %}
{% endif %}
      containers:
      - name: "mux"
        image: {{image}}
        imagePullPolicy: Always
{% if (mux_memory_limit is defined and mux_memory_limit is not none) or (mux_cpu_limit is defined and mux_cpu_limit is not none) %}
        resources:
          limits:
{% if mux_cpu_limit is not none %}
            cpu: "{{mux_cpu_limit}}"
{% endif %}
{% if mux_memory_limit is not none %}
            memory: "{{mux_memory_limit}}"
{% endif %}
{% endif %}
        ports:
        - containerPort: "{{ openshift_logging_mux_port }}"
          name: mux-forward
        volumeMounts:
        - name: config
          mountPath: /etc/fluent/configs.d/user
          readOnly: true
        - name: certs
          mountPath: /etc/fluent/keys
          readOnly: true
        - name: dockerhostname
          mountPath: /etc/docker-hostname
          readOnly: true
        - name: localtime
          mountPath: /etc/localtime
          readOnly: true
        - name: muxcerts
          mountPath: /etc/fluent/muxkeys
          readOnly: true
        env:
        - name: "K8S_HOST_URL"
          value: "{{openshift_logging_master_url}}"
        - name: "ES_HOST"
          value: "{{openshift_logging_es_host}}"
        - name: "ES_PORT"
          value: "{{openshift_logging_es_port}}"
        - name: "ES_CLIENT_CERT"
          value: "{{openshift_logging_es_client_cert}}"
        - name: "ES_CLIENT_KEY"
          value: "{{openshift_logging_es_client_key}}"
        - name: "ES_CA"
          value: "{{openshift_logging_es_ca}}"
        - name: "OPS_HOST"
          value: "{{ops_host}}"
        - name: "OPS_PORT"
          value: "{{ops_port}}"
        - name: "OPS_CLIENT_CERT"
          value: "{{openshift_logging_es_ops_client_cert}}"
        - name: "OPS_CLIENT_KEY"
          value: "{{openshift_logging_es_ops_client_key}}"
        - name: "OPS_CA"
          value: "{{openshift_logging_es_ops_ca}}"
        - name: "USE_JOURNAL"
          value: "false"
        - name: "JOURNAL_SOURCE"
          value: "{{openshift_logging_fluentd_journal_source | default('')}}"
        - name: "JOURNAL_READ_FROM_HEAD"
          value: "{{openshift_logging_fluentd_journal_read_from_head|lower}}"
        - name: FORWARD_LISTEN_HOST
          value: "{{ openshift_logging_mux_hostname }}"
        - name: FORWARD_LISTEN_PORT
          value: "{{ openshift_logging_mux_port }}"
        - name: USE_MUX
          value: "true"
        - name: MUX_ALLOW_EXTERNAL
          value: "{{ openshift_logging_mux_allow_external| default('false') }}"
      volumes:
      - name: config
        configMap:
          name: logging-mux
      - name: certs
        secret:
          secretName: logging-fluentd
      - name: dockerhostname
        hostPath:
          path: /etc/hostname
      - name: localtime
        hostPath:
          path: /etc/localtime
      - name: muxcerts
        secret:
          secretName: logging-mux