File tree 29 files changed +203
-239
lines changed
29 files changed +203
-239
lines changed Original file line number Diff line number Diff line change 7
7
type : " api"
8
8
9
9
- name : Deploy bombastic-api
10
- ansible.builtin.include_tasks : install_manifest .yml
10
+ ansible.builtin.include_tasks : install_service .yml
11
11
vars :
12
- podman_spec :
13
- state : started
14
- systemd_file : bombastic-api
12
+ specs :
13
+ service : bombastic-api
14
+ state : restarted
15
15
network : " {{ tpa_single_node_podman_network }}"
16
- kube_file_content : " {{ lookup('ansible.builtin.template', 'manifests/bombastic/api/Deployment.yaml.j2') | from_yaml }}"
16
+ kube_file : " {{ role_path }}/templates/systemd/default.kube.j2"
17
+ manifest_file : " {{ role_path }}/templates/manifests/bombastic/api/Deployment.yaml.j2"
17
18
configmaps :
18
19
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/bombastic-api.yaml"
19
20
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/custom-trust-anchor.yaml"
Original file line number Diff line number Diff line change 1
1
- name : Deploy bombastic-indexer
2
- ansible.builtin.include_tasks : install_manifest .yml
2
+ ansible.builtin.include_tasks : install_service .yml
3
3
vars :
4
- podman_spec :
5
- state : started
6
- systemd_file : bombastic-indexer
4
+ specs :
5
+ service : bombastic-indexer
6
+ state : restarted
7
7
network : " {{ tpa_single_node_podman_network }}"
8
- kube_file_content : " {{ lookup('ansible.builtin.template', 'manifests/bombastic/indexer/Deployment.yaml.j2') | from_yaml }}"
8
+ kube_file : " {{ role_path }}/templates/systemd/default.kube.j2"
9
+ manifest_file : " {{ role_path }}/templates/manifests/bombastic/indexer/Deployment.yaml.j2"
9
10
configmaps :
10
11
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/custom-trust-anchor.yaml"
Original file line number Diff line number Diff line change 1
1
---
2
2
- name : Deploy bombastic walker Pod
3
- ansible.builtin.include_tasks : install_manifest_cronjob .yml
3
+ ansible.builtin.include_tasks : install_service .yml
4
4
when : not tpa_single_node_bombastic_walker_suspended
5
5
vars :
6
- podman_spec :
6
+ specs :
7
+ service : bombastic-walker
7
8
state : stopped
8
- systemd_file : bombastic-walker
9
9
network : " {{ tpa_single_node_podman_network }}"
10
- timer_type : monotonic # realtime
11
- time_pattern : 1h # *:0/10 for realtime instead of monotonic
12
- kube_file_content : " {{ lookup('ansible.builtin.template', 'manifests/bombastic/walker/Deployment.yaml.j2') | from_yaml }}"
10
+ kube_file : " {{ role_path }}/templates/systemd/default.kube.j2"
11
+ manifest_file : " {{ role_path }}/templates/manifests/bombastic/walker/Deployment.yaml.j2"
13
12
configmaps :
14
13
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/custom-trust-anchor.yaml"
14
+ timer :
15
+ type : monotonic # realtime
16
+ pattern : 1h # *:0/10 for realtime instead of monotonic
Original file line number Diff line number Diff line change 14
14
type : " osv"
15
15
16
16
- name : Deploy collector-osv
17
- ansible.builtin.include_tasks : install_manifest .yml
17
+ ansible.builtin.include_tasks : install_service .yml
18
18
vars :
19
- podman_spec :
20
- state : started
21
- systemd_file : collector-osv
19
+ specs :
20
+ service : collector-osv
21
+ state : restarted
22
22
network : " {{ tpa_single_node_podman_network }}"
23
- kube_file_content : " {{ lookup('ansible.builtin.template', 'manifests/collector/osv/Deployment.yaml.j2') | from_yaml }}"
23
+ kube_file : " {{ role_path }}/templates/systemd/default.kube.j2"
24
+ manifest_file : " {{ role_path }}/templates/manifests/collector/osv/Deployment.yaml.j2"
24
25
configmaps :
25
26
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/collector-osv.yaml"
26
27
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/collectorist-api-guac.yaml"
Original file line number Diff line number Diff line change 25
25
changed_when : false
26
26
27
27
- name : Deploy collectorist-api
28
- ansible.builtin.include_tasks : install_manifest .yml
28
+ ansible.builtin.include_tasks : install_service .yml
29
29
vars :
30
- podman_spec :
31
- state : started
32
- systemd_file : collectorist-api
30
+ specs :
31
+ service : collectorist-api
32
+ state : restarted
33
33
network : " {{ tpa_single_node_podman_network }}"
34
- kube_file_content : " {{ lookup('ansible.builtin.template', 'manifests/collectorist/api/Deployment.yaml.j2') | from_yaml }}"
34
+ kube_file : " {{ role_path }}/templates/systemd/default.kube.j2"
35
+ manifest_file : " {{ role_path }}/templates/manifests/collectorist/api/Deployment.yaml.j2"
35
36
configmaps :
36
37
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/collectorist-api.yaml"
37
38
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/collectorist-api-guac.yaml"
Original file line number Diff line number Diff line change 1
1
---
2
2
- name : Deploy init-dataset Pod
3
- ansible.builtin.include_tasks : install_manifest .yml
3
+ ansible.builtin.include_tasks : install_service .yml
4
4
vars :
5
- podman_spec :
6
- state : stopped
7
- systemd_file : init-dataset
5
+ specs :
6
+ service : init-dataset
7
+ state : started
8
8
network : " {{ tpa_single_node_podman_network }}"
9
- kube_file_content : " {{ lookup('ansible.builtin.template', 'manifests/init/dataset/Deployment.yaml.j2') | from_yaml }}"
9
+ kube_file : " {{ role_path }}/templates/systemd/default.kube.j2"
10
+ manifest_file : " {{ role_path }}/templates/manifests/init/dataset/Deployment.yaml.j2"
10
11
configmaps :
11
12
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/custom-trust-anchor.yaml"
Original file line number Diff line number Diff line change 1
1
---
2
2
- name : Deploy Guac bombastic collector
3
- ansible.builtin.include_tasks : install_manifest .yml
3
+ ansible.builtin.include_tasks : install_service .yml
4
4
vars :
5
- podman_spec :
6
- state : started
7
- systemd_file : guac-collector-bombastic
5
+ specs :
6
+ service : guac-collector-bombastic
7
+ state : restarted
8
8
network : " {{ tpa_single_node_podman_network }}"
9
- kube_file_content : " {{ lookup('ansible.builtin.template', 'manifests/guac/bombastic-collector/Deployment.yaml.j2') | from_yaml }}"
9
+ kube_file : " {{ role_path }}/templates/systemd/default.kube.j2"
10
+ manifest_file : " {{ role_path }}/templates/manifests/guac/bombastic-collector/Deployment.yaml.j2"
10
11
configmaps :
11
12
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/custom-trust-anchor.yaml"
Original file line number Diff line number Diff line change 1
1
---
2
2
- name : Deploy guac-collectsub Pod
3
- ansible.builtin.include_tasks : install_manifest .yml
3
+ ansible.builtin.include_tasks : install_service .yml
4
4
vars :
5
- podman_spec :
6
- state : started
7
- systemd_file : guac-collectsub
5
+ specs :
6
+ service : guac-collectsub
7
+ state : restarted
8
8
network : " {{ tpa_single_node_podman_network }}"
9
- kube_file_content : " {{ lookup('ansible.builtin.template', 'manifests/guac/collectsub/Deployment.yaml.j2') | from_yaml }}"
9
+ kube_file : " {{ role_path }}/templates/systemd/default.kube.j2"
10
+ manifest_file : " {{ role_path }}/templates/manifests/guac/collectsub/Deployment.yaml.j2"
10
11
configmaps :
11
12
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/custom-trust-anchor.yaml"
Original file line number Diff line number Diff line change 1
1
---
2
2
- name : Deploy guac-graphql Pod
3
- ansible.builtin.include_tasks : install_manifest .yml
3
+ ansible.builtin.include_tasks : install_service .yml
4
4
vars :
5
- podman_spec :
6
- state : started
7
- systemd_file : guac-graphql
8
- kube_file_content : " {{ lookup('ansible.builtin.template', 'manifests/guac/graphql/Deployment.yaml.j2') | from_yaml }}"
5
+ specs :
6
+ service : guac-graphql
7
+ state : restarted
9
8
network : " {{ tpa_single_node_podman_network }}"
9
+ kube_file : " {{ role_path }}/templates/systemd/default.kube.j2"
10
+ manifest_file : " {{ role_path }}/templates/manifests/guac/graphql/Deployment.yaml.j2"
10
11
configmaps :
11
12
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/custom-trust-anchor.yaml"
Original file line number Diff line number Diff line change 1
1
---
2
2
- name : Deploy Guac vexination collector
3
- ansible.builtin.include_tasks : install_manifest .yml
3
+ ansible.builtin.include_tasks : install_service .yml
4
4
vars :
5
- podman_spec :
6
- state : started
7
- systemd_file : guac-collector-vexination
5
+ specs :
6
+ service : guac-collector-vexination
7
+ state : restarted
8
8
network : " {{ tpa_single_node_podman_network }}"
9
- kube_file_content : " {{ lookup('ansible.builtin.template', 'manifests/guac/vexination-collector/Deployment.yaml.j2') | from_yaml }}"
9
+ kube_file : " {{ role_path }}/templates/systemd/default.kube.j2"
10
+ manifest_file : " {{ role_path }}/templates/manifests/guac/vexination-collector/Deployment.yaml.j2"
10
11
configmaps :
11
12
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/custom-trust-anchor.yaml"
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ - name : Generate {{ specs.service }} deployment manifest
2
+ ansible.builtin.template :
3
+ src : " {{ specs.manifest_file }}"
4
+ dest : " {{ tpa_single_node_kube_manifest_dir }}/Deployments/{{ specs.service }}.yaml"
5
+ mode : " 0600"
6
+ register : copy_manifest
7
+
8
+ - name : Generate {{ specs.service }} Quadlet file
9
+ ansible.builtin.template :
10
+ src : " {{ specs.kube_file }}"
11
+ dest : " /etc/containers/systemd/{{ specs.service }}.kube"
12
+ mode : " 0600"
13
+ register : copy_systemd_file
14
+
15
+ - name : Add systemd timer for {{ specs.service }}
16
+ when : specs.timer is defined
17
+ ansible.builtin.template :
18
+ src : systemd/timer.j2
19
+ dest : " {{ tpa_single_node_systemd_directory + '/' + specs.service }}.timer"
20
+ mode : " 0600"
21
+ register : copy_systemd_timer_file
22
+
23
+ - name : Restart Podman Service for {{ specs.service }}
24
+ ansible.builtin.systemd :
25
+ state : " {{ specs.state }}"
26
+ enabled : true
27
+ daemon_reload : true
28
+ name : " {{ specs.service }}"
29
+ no_block : true
30
+ when : copy_manifest.changed or copy_systemd_file.changed or copy_systemd_timer_file.changed
Original file line number Diff line number Diff line change 30
30
changed_when : false
31
31
32
32
- name : Deploy spog-api
33
- ansible.builtin.include_tasks : install_manifest .yml
33
+ ansible.builtin.include_tasks : install_service .yml
34
34
vars :
35
- podman_spec :
36
- state : started
37
- systemd_file : spog-api
35
+ specs :
36
+ service : spog-api
37
+ state : restarted
38
38
network : " {{ tpa_single_node_podman_network }}"
39
- kube_file_content : " {{ lookup('ansible.builtin.template', 'manifests/spog/api/Deployment.yaml.j2') | from_yaml }}"
39
+ kube_file : " {{ role_path }}/templates/systemd/default.kube.j2"
40
+ manifest_file : " {{ role_path }}/templates/manifests/spog/api/Deployment.yaml.j2"
40
41
configmaps :
41
42
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/spog-api.yaml"
42
43
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/spog-ui-config.yaml"
Original file line number Diff line number Diff line change 20
20
mode : " 0600"
21
21
22
22
- name : Deploy nginx reverse proxy
23
- ansible.builtin.include_tasks : install_manifest .yml
23
+ ansible.builtin.include_tasks : install_service .yml
24
24
vars :
25
- podman_spec :
26
- state : started
27
- systemd_file : nginx
25
+ specs :
26
+ service : nginx
27
+ state : restarted
28
28
network : " {{ tpa_single_node_podman_network }}"
29
- kube_file_content : " {{ lookup('ansible.builtin.template', 'manifests/nginx/Deployment.yaml.j2') | from_yaml }}"
29
+ kube_file : " {{ role_path }}/templates/systemd/default.kube.j2"
30
+ manifest_file : " {{ role_path }}/templates/manifests/nginx/Deployment.yaml.j2"
30
31
configmaps :
31
32
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/nginx.yaml"
Original file line number Diff line number Diff line change 26
26
register : spog_ui_branding_configmap_checksum
27
27
28
28
- name : Deploy spog-ui
29
- ansible.builtin.include_tasks : install_manifest .yml
29
+ ansible.builtin.include_tasks : install_service .yml
30
30
vars :
31
- podman_spec :
32
- state : started
33
- systemd_file : spog-ui
31
+ specs :
32
+ service : spog-ui
33
+ state : restarted
34
34
network : " {{ tpa_single_node_podman_network }}"
35
- kube_file_content : " {{ lookup('ansible.builtin.template', 'manifests/spog/ui/Deployment.yaml.j2') | from_yaml }}"
35
+ kube_file : " {{ role_path }}/templates/systemd/default.kube.j2"
36
+ manifest_file : " {{ role_path }}/templates/manifests/spog/ui/Deployment.yaml.j2"
36
37
configmaps :
37
38
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/spog-ui-backend.yaml"
38
39
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/spog-ui-branding.yaml"
Original file line number Diff line number Diff line change 7
7
type : " api"
8
8
9
9
- name : Deploy v11y-api
10
- ansible.builtin.include_tasks : install_manifest .yml
10
+ ansible.builtin.include_tasks : install_service .yml
11
11
vars :
12
- podman_spec :
13
- state : started
14
- systemd_file : v11y-api
12
+ specs :
13
+ service : v11y-api
14
+ state : restarted
15
15
network : " {{ tpa_single_node_podman_network }}"
16
- kube_file_content : " {{ lookup('ansible.builtin.template', 'manifests/v11y/api/Deployment.yaml.j2') | from_yaml }}"
16
+ kube_file : " {{ role_path }}/templates/systemd/default.kube.j2"
17
+ manifest_file : " {{ role_path }}/templates/manifests/v11y/api/Deployment.yaml.j2"
17
18
configmaps :
18
19
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/v11y-api.yaml"
19
20
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/custom-trust-anchor.yaml"
Original file line number Diff line number Diff line change 1
1
- name : Deploy v11y-indexer
2
- ansible.builtin.include_tasks : install_manifest .yml
2
+ ansible.builtin.include_tasks : install_service .yml
3
3
vars :
4
- podman_spec :
5
- state : started
6
- systemd_file : v11y-indexer
4
+ specs :
5
+ service : v11y-indexer
6
+ state : restarted
7
7
network : " {{ tpa_single_node_podman_network }}"
8
- kube_file_content : " {{ lookup('ansible.builtin.template', 'manifests/v11y/indexer/Deployment.yaml.j2') | from_yaml }}"
8
+ kube_file : " {{ role_path }}/templates/systemd/default.kube.j2"
9
+ manifest_file : " {{ role_path }}/templates/manifests/v11y/indexer/Deployment.yaml.j2"
9
10
configmaps :
10
11
- " {{ tpa_single_node_kube_manifest_dir }}/ConfigMaps/custom-trust-anchor.yaml"
You can’t perform that action at this time.
0 commit comments