comparison tasks.py @ 59:fa7a71b8a97f

more dns checks, including from inside containers in k8s`
author drewp@bigasterisk.com
date Sun, 01 May 2022 23:30:09 -0700
parents 00d5cd21cade
children a949704defd0
comparison
equal deleted inserted replaced
58:f39ada0b8827 59:fa7a71b8a97f
41 41
42 @task 42 @task
43 def dns_check(ctx): 43 def dns_check(ctx):
44 ctx.run(cmd + 'inventory.py dns_check.py -v', pty=True) 44 ctx.run(cmd + 'inventory.py dns_check.py -v', pty=True)
45 45
46 @task
47 def dns_k8s_check(ctx):
48 ctx.run('env/bin/python dns_k8s_check.py', pty=True)
49
46 50
47 @task 51 @task
48 def wireguard(ctx): 52 def wireguard(ctx):
49 ctx.run(cmd + 'inventory.py wireguard.py', pty=True) 53 ctx.run(cmd + 'inventory.py wireguard.py', pty=True)
50 54