Skip to content

Commit

Permalink
fix(ansible): skip mev failing steps for now
Browse files Browse the repository at this point in the history
re-enable them after debugging

Signed-off-by: Boris Glimcher <[email protected]>
  • Loading branch information
glimchb authored May 18, 2024
1 parent f7187d7 commit ede1fd7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions lab/ansible/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,10 @@
name: docker-ce,docker-ce-cli,containerd.io,docker-buildx-plugin,docker-compose-plugin
state: present

# TODO: re-enable MEV

- name: Red Hat | Docker
when: ansible_os_family == 'RedHat'
when: ansible_os_family == 'RedHat' and inventory_hostname != 'mev'
block:
- name: Red Hat | Install package dependencies
ansible.builtin.package:
Expand All @@ -87,7 +89,10 @@
#- name: Copy file to host
# ansible.builtin.copy: src=../otel/config/telegraf.conf.{{ inventory_hostname }} dest=/root/telegraf.conf.new

# TODO: re-enable MEV

- name: Run telegraf container
when: inventory_hostname != 'mev'
community.docker.docker_container:
name: telegraf
image: docker.io/library/telegraf:1.29
Expand Down Expand Up @@ -134,7 +139,6 @@
ansible.builtin.package:
name: socat
state: present
sslverify: false

- name: Create socat-otel systemd service file
template:
Expand Down

0 comments on commit ede1fd7

Please sign in to comment.