All public logs

From Federal Burro of Information
Jump to navigationJump to search

Combined display of all available logs of Federal Burro of Information. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 05:04, 23 March 2024 David talk contribs created page Kubernetes/k8s2d2.py - Diagram with python and D2 (Created page with " This python script will read your kubernetes and write a D2 file from which you can make a diagram. So far: service -> deployment -> hpa Missing: sts, cron, ingress, gateway, configmaps, secrets, mounts, pvc. <pre> #!/usr/bin/env python3 from kubernetes import client, config import argparse import pprint from py_d2.connection import D2Connection, D2Diagram, D2Shape pp = pprint.PrettyPrinter(indent=4) config.load_kube_config() parser = argparse.ArgumentParser() pa...")