LeoChen

Results 5 comments of LeoChen

I remembered there is a workaround that I used for Wireshark sometimes... ``` open -n /Applications/DbGate.app ``` It would be great if there was a way to support this on...

I tried applying the following: ``` apiVersion: ingress.pomerium.io/v1 kind: Pomerium spec: ... other values storage: postgres: secret: pomerium/postgresdb timeouts: read: 30m ``` And received an error ``` # pomerium.ingress.pomerium.io "global"...

I noticed that the CRD file did not have the timeouts, that's probably why it was failing validation. I tried to add them directly under storage [deployment.yaml.zip](https://github.com/pomerium/pomerium/files/11884556/deployment.yaml.zip) ``` timeouts: description:...

I think I got it working by providing the 3 values to the pomerium CRD 🎉 ``` timeouts: idle: 5m read: 180s write: 300s ``` I was not able to...

For reference, the command that works is: ``` gunzip -c csv.gz | tail -n+2 | timescaledb-parallel-copy ... ``` `-c` outputs into stdout `tail -n+2` ignores the first line