aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/infra_deploy_openstack/templates/multinode.j2
blob: 57f87b52104139eec4be819c356a01a8ccb6fe3a (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
{% set control_dict = {} %}
{% set compute_dict = {} %}
{% for host in groups['ostack'] %}
{% if  hostvars[host].node_type is defined and hostvars[host].node_type == 'controller' %}
{% set control_dict = control_dict.update({hostvars[host].ansible_host: hostvars[host].ansible_default_ipv4.interface}) %}
{% endif %}
{% endfor %}
{% for host in groups['ostack'] %}
{% if  hostvars[host].node_type is defined and hostvars[host].node_type == 'compute' %}
{% for iface in hostvars[host].ansible_interfaces %}
{%- if ((hostvars[host]['ansible_' + iface.replace('-', '_')].ipv4 is defined) and
        (hostvars[host]['ansible_' + iface.replace('-', '_')].ipv4.address is defined) and
        (hostvars[host]['ansible_' + iface.replace('-', '_')].ipv4.address == hostvars[host].secondary_ip)) -%}
{% set compute_dict = compute_dict.update({hostvars[host].ansible_host: iface}) %}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% macro print_node(in_dict, iface_str='', cnt=1) %}
{%- for host, iface in in_dict | dictsort -%}
{% if loop.index <= cnt %}
{% if iface_str %}
{{ host }} ansible_ssh_user={{ hostvars[host].ansible_user }} ansible_private_key_file=/root/.ssh/id_rsa ansible_become=True {{ iface_str }}={{ iface }}
{% else %}
{{ host }} ansible_ssh_user={{ hostvars[host].ansible_user }} ansible_private_key_file=/root/.ssh/id_rsa ansible_become=True
{% endif %}
{% endif %}
{% endfor %}
{% endmacro %}
[control]
{{ print_node(control_dict, iface_str='network_interface', cnt=control_dict | length) }}
[compute]
{{ print_node(compute_dict, iface_str='network_interface', cnt=compute_dict | length) }}
[network]
{{ print_node(control_dict, iface_str='', cnt=control_dict | length) }}
[monitoring]
{{ print_node(control_dict) }}
[storage]
{{ print_node(control_dict, iface_str='', cnt=control_dict | length) }}
nfo, unsigned long *stack, unsigned long bp, const struct stacktrace_ops *ops, void *data, unsigned long *end, int *graph); extern unsigned long print_context_stack(struct thread_info *tinfo, unsigned long *stack, unsigned long bp, const struct stacktrace_ops *ops, void *data, unsigned long *end, int *graph); extern unsigned long print_context_stack_bp(struct thread_info *tinfo, unsigned long *stack, unsigned long bp, const struct stacktrace_ops *ops, void *data, unsigned long *end, int *graph); /* Generic stack tracer with callbacks */ struct stacktrace_ops { void (*address)(void *data, unsigned long address, int reliable); /* On negative return stop dumping */ int (*stack)(void *data, char *name); walk_stack_t walk_stack; }; void dump_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long *stack, unsigned long bp, const struct stacktrace_ops *ops, void *data); #ifdef CONFIG_X86_32 #define STACKSLOTS_PER_LINE 8 #define get_bp(bp) asm("movl %%ebp, %0" : "=r" (bp) :) #else #define STACKSLOTS_PER_LINE 4 #define get_bp(bp) asm("movq %%rbp, %0" : "=r" (bp) :) #endif #ifdef CONFIG_FRAME_POINTER static inline unsigned long stack_frame(struct task_struct *task, struct pt_regs *regs) { unsigned long bp; if (regs) return regs->bp; if (task == current) { /* Grab bp right from our regs */ get_bp(bp); return bp; } /* bp is the last reg pushed by switch_to */ return *(unsigned long *)task->thread.sp; } #else static inline unsigned long stack_frame(struct task_struct *task, struct pt_regs *regs) { return 0; } #endif extern void show_trace_log_lvl(struct task_struct *task, struct pt_regs *regs, unsigned long *stack, unsigned long bp, char *log_lvl); extern void show_stack_log_lvl(struct task_struct *task, struct pt_regs *regs, unsigned long *sp, unsigned long bp, char *log_lvl); extern unsigned int code_bytes; /* The form of the top of the frame on the stack */ struct stack_frame { struct stack_frame *next_frame; unsigned long return_address; }; struct stack_frame_ia32 { u32 next_frame; u32 return_address; }; static inline unsigned long caller_frame_pointer(void) { struct stack_frame *frame; get_bp(frame); #ifdef CONFIG_FRAME_POINTER frame = frame->next_frame; #endif return (unsigned long)frame; } #endif /* _ASM_X86_STACKTRACE_H */