Skip to content

Instantly share code, notes, and snippets.

View filipenf's full-sized avatar
:shipit:

Filipe Felisbino filipenf

:shipit:
  • Udemy
  • Orlando, FL
  • 03:53 (UTC -04:00)
View GitHub Profile
@filipenf
filipenf / Ansible Inventory Compare.md
Last active March 15, 2024 15:19
Ansible inventory comparison

Usage:

1. Create a virtualenv with deepdiff

requirements:

PyYAML==3.13
deepdiff==3.3.0
jsonpickle==1.0
@filipenf
filipenf / compare_charts.py
Last active February 24, 2023 22:00
Compare kubernetes manifest files
#!/usr/bin/env python3
import argparse
import difflib
import sys
from collections import defaultdict
from typing import Dict, List
import yaml