This commit is contained in:
Tamipes 2026-06-23 01:33:42 +02:00
parent 2e8353b9b8
commit 65fca257bc
2 changed files with 17 additions and 2 deletions

View file

@ -22,4 +22,20 @@ spec:
env: env:
- name: FILTER_CONN - name: FILTER_CONN
value: '(addr == "87.229.85.222") || (addr == "") || (addr == "ogmur.xyz") || (addr == "@mat:matdoes.dev (hi honeypots) ") || (addr == "@mat:matdoes.dev ") || (addr == "slowstack.tv")' value: '(addr == "87.229.85.222") || (addr == "") || (addr == "ogmur.xyz") || (addr == "@mat:matdoes.dev (hi honeypots) ") || (addr == "@mat:matdoes.dev ") || (addr == "slowstack.tv")'
- name: TOKIO_CONSOLE_BIND
value: "0.0.0.0:6669"
---
apiVersion: v1
kind: Service
metadata:
name: minecraft-ingress-debug
labels:
app: minecraft-ingress
spec:
ports:
- name: minecraft-ingress
port: 6669
nodePort: 30669
selector:
app: minecraft-ingress
type: NodePort

View file

@ -24,7 +24,6 @@ async fn main() {
tracing_subscriber::registry() tracing_subscriber::registry()
.with(console_layer) .with(console_layer)
.with(fmt_layer) .with(fmt_layer)
.with(EnvFilter::new("trace"))
.with(tracing_error::ErrorLayer::default()) .with(tracing_error::ErrorLayer::default())
.init(); .init();
tracing::info!("mc-ingress"); tracing::info!("mc-ingress");