├── dockerfile
├── app/ # Python application
│ ├── main.py
│ ├── router.py
│ ├── core/
│ │ ├── __init__.py
│ │ ├── web.py
│ │ └── webhook.py
│ ├── services/
│ │ ├── __init__.py
│ │ ├── mail_api_check.py
│ │ ├── messanger_api_check.py
│ │ ├── status.py
│ │ ├── send_msg.py
│ │ └── send_mail.py
│ ├── configs/
│ │ ├── config.yaml
│ │ └── target.yaml
│ ├── authentication/
│ │ ├── __init__.py
│ │ └── authentication.py
│ ├── core/
│ │ ├── __init__.py
│ │ └── refresh.py
│ ├── templates/
│ │ ├── index.html
│ │ ├── login.html
│ │ └── base.html
│ ├── static/
│ │ ├── css/
│ │ │ └── style.css
│ │ └── js/
│ │ └── main.js
│ └── requirements.txt
├── charts/
│ ├── chart.yaml
│ └── values.yaml
├── config/
│ ├── core-site.xml
│ ├── hdfs-site.xml
│ └── other-config.yaml
├── files/
│ ├── entrypoint.sh
│ ├── app/ # java application
│ │ ├── application-runtime.bin
│ │ └── libs/
│ │ └── trino-connector-jdbc.jar
│ └── other-config.yaml
├── k8s/
│ ├── configmap.yaml
│ ├── deployment.yaml
│ ├── ingress.yaml
│ └── service.yaml
└── README.md