
io.fabric8.kubernetes.client.dsl.base.HasMetadataOperation Maven / Gradle / Ivy
/**
* Copyright (C) 2015 Red Hat, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.fabric8.kubernetes.client.dsl.base;
import io.fabric8.kubernetes.api.model.ReplicationController;
import io.fabric8.kubernetes.client.KubernetesClientTimeoutException;
import io.fabric8.kubernetes.client.Watch;
import io.fabric8.kubernetes.client.dsl.Resource;
import io.fabric8.kubernetes.client.internal.readiness.Readiness;
import io.fabric8.kubernetes.client.internal.readiness.ReadinessWatcher;
import okhttp3.OkHttpClient;
import io.fabric8.kubernetes.api.builder.Function;
import io.fabric8.kubernetes.api.model.Doneable;
import io.fabric8.kubernetes.api.model.HasMetadata;
import io.fabric8.kubernetes.api.model.KubernetesResourceList;
import io.fabric8.kubernetes.client.Config;
import io.fabric8.kubernetes.client.KubernetesClientException;
import java.lang.reflect.InvocationTargetException;
import java.util.Map;
import java.util.concurrent.TimeUnit;
public class HasMetadataOperation, R extends Resource>
extends BaseOperation< T, L, D, R> {
protected HasMetadataOperation(OkHttpClient client, Config config, String apiGroup, String apiVersion, String resourceT, String namespace, String name, Boolean cascading, T item, String resourceVersion, Boolean reloadingFromServer, long gracePeriodSeconds, Map labels, Map labelsNot, Map labelsIn, Map labelsNotIn, Map fields) {
super(client, config, apiGroup, apiVersion, resourceT, namespace, name, cascading, item, resourceVersion, reloadingFromServer, gracePeriodSeconds, labels, labelsNot, labelsIn, labelsNotIn, fields);
}
@Override
public D edit() throws KubernetesClientException {
final Function visitor = new Function() {
@Override
public T apply(T resource) {
try {
if (isCascading() && !isReaping()) {
if (reaper != null) {
setReaping(true);
reaper.reap();
}
}
return patch(resource);
} catch (Exception e) {
throw KubernetesClientException.launderThrowable(e);
}
}
};
try {
T item = getMandatory();
return (D) getDoneableType().getDeclaredConstructor(getType(), Function.class).newInstance(item, visitor);
} catch (InvocationTargetException | NoSuchMethodException | IllegalAccessException | InstantiationException e) {
throw KubernetesClientException.launderThrowable(e);
}
}
@Override
public T replace(T item) {
Exception caught = null;
int maxTries = 10;
for (int i = 0; i < maxTries; i++) {
try {
if (isCascading()) {
if (reaper != null && !isReaping()) {
setReaping(true);
reaper.reap();
}
}
final T got = get();
if (got == null) {
return null;
}
final Function visitor = new Function() {
@Override
public T apply(T resource) {
try {
resource.getMetadata().setResourceVersion(got.getMetadata().getResourceVersion());
return handleReplace(resource);
} catch (Exception e) {
throw KubernetesClientException.launderThrowable(e);
}
}
};
D doneable = (D) getDoneableType().getDeclaredConstructor(getType(), Function.class).newInstance(item, visitor);
return doneable.done();
} catch (KubernetesClientException e) {
caught = e;
// Only retry if there's a conflict - this is normally to do with resource version & server updates.
if (e.getCode() != 409) {
break;
}
if (i < maxTries - 1) {
try {
TimeUnit.SECONDS.sleep(1);
} catch (InterruptedException e1) {
// Ignore this... would only hide the proper exception
}
}
} catch (Exception e) {
caught = e;
}
}
throw KubernetesClientException.launderThrowable(caught);
}
public T patch(T item) {
Exception caught = null;
int maxTries = 10;
for (int i = 0; i < maxTries; i++) {
try {
if (isCascading()) {
if (reaper != null && !isReaping()) {
setReaping(true);
reaper.reap();
}
}
final T got = get();
if (got == null) {
return null;
}
final Function visitor = new Function() {
@Override
public T apply(T resource) {
try {
return handlePatch(got, resource);
} catch (Exception e) {
throw KubernetesClientException.launderThrowable(e);
}
}
};
D doneable = (D) getDoneableType().getDeclaredConstructor(getType(), Function.class).newInstance(item, visitor);
return doneable.done();
} catch (KubernetesClientException e) {
caught = e;
// Only retry if there's a conflict - this is normally to do with resource version & server updates.
if (e.getCode() != 409) {
break;
}
if (i < maxTries - 1) {
try {
TimeUnit.SECONDS.sleep(1);
} catch (InterruptedException e1) {
// Ignore this... would only hide the proper exception
}
}
} catch (Exception e) {
caught = e;
}
}
throw KubernetesClientException.launderThrowable(caught);
}
/**
* A wait method that combines watching and polling.
* The need for that is that in some cases a pure watcher approach consistently fails.
* @param i The number of iterations to perform.
* @param started Time in milliseconds where the watch started.
* @param interval The amount of time in millis to wait on each iteration.
* @param amount The maximum amount in millis of time since started to wait.
* @return The {@link ReplicationController} if ready.
*/
protected T periodicWatchUntilReady(int i, long started, long interval, long amount) {
T item = get();
if (Readiness.isReady(item)) {
return item;
}
ReadinessWatcher watcher = new ReadinessWatcher<>(item);
try (Watch watch = watch(watcher)) {
try {
return watcher.await(interval, TimeUnit.MILLISECONDS);
} catch (KubernetesClientTimeoutException e) {
if (i <= 0) {
throw e;
}
}
long remaining = System.currentTimeMillis() - (started + amount);
long next = Math.max(0, Math.min(remaining, interval));
return periodicWatchUntilReady(i - 1, started, next, amount);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy