John Howard
John Howard
Also getting `Get "https://10.40.0.1:443/api/v1/pods?limit=500&resourceVersion=0": dial tcp 10.40.0.1:443: i/o timeout 30003ms (17:27:01.366)`. I think with host network 10.40.0.1 (`kubernetes` cluster IP) cannot be used. Instead we need to hit the external...
Sorry, that problem is in the merbridge pod itself. It has nothing to do with the iptables/ebpf at all. The problem is the daemonset is in host network, and tries...
Thanks! with latest: ``` curl-836505 [001] d... 670508.770018: bpf_trace_printk: call from user container: ip: 0x30d200a, port: 80 curl-836505 [001] d... 670508.770171: bpf_trace_printk: redirect 68 bytes with eBPF successfully ``` but...
ah cool. thanks, will try that. We should probably have a mode to disable iptables in Istio. right now there isn't a good one I know of On Tue, Feb...
Input: ```go import ( "fmt" "os" "istio.io/istio/pkg/test/framework/resource" "istio.io/istio/pkg/test/framework/resource" "istio.io/istio/pkg/test/framework/components/prometheus" ) ``` Output: ``` import ( "fmt" "os" "istio.io/istio/pkg/test/framework/components/prometheus" ) ```
Also can only reproduce through golangci-lint, not direct calls on `goimports -local istio.io -w main.go; gci -local istio.io -w main.go`
> I just noticed that changing the service names would be a breaking change for many that refer to service names in their ingress. > > Maybe it would make...
Its a bit tricky to spawn the runtime since you can't make a new one (in Tokio at least), but this seems to work: ```rust c.bench_function("async setup", |b| { b.to_async(Runtime::new().unwrap()).iter_batched(...
Where did the conclusion "use the operator" come from? It is the only one that has liberal warning signs all over to NOT use it. If these warnings are not...
> Use istioctl - "for in-depth evaluation **or production use**" https://istio.io/latest/about/faq/#setup also answers this. Helm is like 99.9% of the way to being promoted, btw, so its reasonable to use...