Stefan Bethke
Stefan Bethke
## Bug Report #### What did you do? I have an operator running fine in Docker Desktop/Kubernetes. I need to make it work in Docker Desktop/k3d. Starting the operator from...
In a large Spring Boot based application, I'm getting this error. ``` java.lang.NoSuchMethodError: 'okio.Buffer okio.BufferedSource.getBuffer()' at okhttp3.internal.connection.RealConnection.createTunnel(RealConnection.java:411) at okhttp3.internal.connection.RealConnection.connectTunnel(RealConnection.java:236) at okhttp3.internal.connection.RealConnection.connect(RealConnection.java:177) at okhttp3.internal.connection.ExchangeFinder.findConnection(ExchangeFinder.java:224) at okhttp3.internal.connection.ExchangeFinder.findHealthyConnection(ExchangeFinder.java:108) at okhttp3.internal.connection.ExchangeFinder.find(ExchangeFinder.java:88) at okhttp3.internal.connection.Transmitter.newExchange(Transmitter.java:169) at...
With these dependencies: ``` dependencies { implementation 'org.springframework.boot:spring-boot-starter:3.2.3' // developmentOnly 'org.springframework.boot:spring-boot-devtools:3.2.0' implementation 'org.springframework.boot:spring-boot-starter-actuator:3.2.3' implementation 'org.springframework.boot:spring-boot-starter-web:3.2.3' implementation 'io.javaoperatorsdk:operator-framework-spring-boot-starter:5.4.1' implementation 'org.bouncycastle:bcpkix-jdk15on:1.70' // required for the fabric8 k8s client to grok k3d certificates...