summaryrefslogtreecommitdiff
path: root/roles/streaming/rtmp/streamer/tasks/main.yml
blob: 828ceba682bf494b4e7e487894d834240e32baec (plain) (blame)
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
---
- name: create rtmp-streamer scripts subdirectories
  file:
    path: "{{ rtmp_streamer_base_path }}/{{ rtmp_streamer_inst_name }}"
    state: directory

- name: generate nginx config
  template:
    src: nginx.conf.j2
    dest: "{{ rtmp_streamer_base_path }}/{{ rtmp_streamer_inst_name }}/nginx.conf"

- name: generate streamer config
  copy:
    content: "{{ rtmp_streamer_config | combine({'rtmp_base_url': 'rtmp://127.0.0.1/'+rtmp_streamer_app_name}) | to_nice_yaml }}\n"
    dest: "{{ rtmp_streamer_base_path }}/{{ rtmp_streamer_inst_name }}/config.yml"

- name: install pod manifest
  vars:
    kubernetes_standalone_pod:
      name: "rtmp-streamer-{{ rtmp_streamer_inst_name }}"
      spec: "{{ lookup('template', 'pod-spec.yml.j2') }}"
      config_hash_items:
      - path: "{{ rtmp_streamer_base_path }}/{{ rtmp_streamer_inst_name }}/nginx.conf"
        properties:
        - checksum
      - path: "{{ rtmp_streamer_base_path }}/{{ rtmp_streamer_inst_name }}/config.yml"
        properties:
        - checksum
  include_role:
    name: kubernetes/standalone/pod