Код: Выделить всё
java.lang.NoSuchMethodError: 'io.fabric8.kubernetes.api.model.HTTPGetActionFluent io.fabric8.kubernetes.api.model.HTTPGetActionBuilder.withNewPort(java.lang.Integer)'
< /code>
То, что я вижу как проблема: < /p>
public abstract class HttpProbeCreator extends ProbeCreator {
// skipped code
protected abstract Integer getPort();
protected Probe create() {
HTTPGetActionBuilder httpGetActionBuilder = new HTTPGetActionBuilder()
.withPath(getProbePath())
.withNewPort(getPort())
.withScheme(getScheme());
//rest of the code is skipped
Подробнее здесь: https://stackoverflow.com/questions/796 ... -core7-3-1