use of io.kubernetes.client.openapi.ApiException in project java by kubernetes-client.
the class LeaseLock method create.
@Override
public boolean create(LeaderElectionRecord record) {
try {
V1ObjectMeta objectMeta = new V1ObjectMeta();
objectMeta.setName(name);
objectMeta.setNamespace(namespace);
if (record.getOwnerReference() != null) {
objectMeta.setOwnerReferences(Collections.singletonList(record.getOwnerReference()));
}
V1Lease createdLease = coordinationV1Api.createNamespacedLease(namespace, new V1Lease().metadata(objectMeta).spec(getLeaseFromRecord(record)), null, null, null, null);
leaseRefer.set(createdLease);
return true;
} catch (ApiException e) {
if (e.getCode() == HttpURLConnection.HTTP_CONFLICT) {
log.debug("received {} when creating lease lock", e.getCode(), e);
} else {
log.error("received {} when creating lease lock", e.getCode(), e);
}
return false;
}
}
use of io.kubernetes.client.openapi.ApiException in project java by kubernetes-client.
the class LeaseLock method update.
@Override
public boolean update(LeaderElectionRecord record) {
try {
V1Lease latest = leaseRefer.get();
latest.setSpec(getLeaseFromRecord(record));
V1Lease updatedLease = coordinationV1Api.replaceNamespacedLease(name, namespace, latest, null, null, null, null);
leaseRefer.set(updatedLease);
return true;
} catch (ApiException e) {
if (e.getCode() == HttpURLConnection.HTTP_CONFLICT) {
log.debug("received {} when updating lease lock", e.getCode(), e);
} else {
log.error("received {} when updating lease lock", e.getCode(), e);
}
return false;
}
}
use of io.kubernetes.client.openapi.ApiException in project java by kubernetes-client.
the class EndpointsLock method create.
@Override
public boolean create(LeaderElectionRecord record) {
try {
V1Endpoints endpoints = new V1Endpoints();
V1ObjectMeta objectMeta = new V1ObjectMeta();
objectMeta.setName(name);
objectMeta.setNamespace(namespace);
Map<String, String> annotations = new HashMap<>();
annotations.put(LeaderElectionRecordAnnotationKey, coreV1Client.getApiClient().getJSON().serialize(record));
objectMeta.setAnnotations(annotations);
if (record.getOwnerReference() != null) {
objectMeta.setOwnerReferences(Collections.singletonList(record.getOwnerReference()));
}
endpoints.setMetadata(objectMeta);
V1Endpoints createdendpoints = coreV1Client.createNamespacedEndpoints(namespace, endpoints, null, null, null, null);
endpointsRefer.set(createdendpoints);
return true;
} catch (ApiException e) {
if (e.getCode() == HttpURLConnection.HTTP_CONFLICT) {
log.debug("received {} when creating endpoints lock", e.getCode(), e);
} else {
log.error("received {} when creating endpoints lock", e.getCode(), e);
}
return false;
}
}
use of io.kubernetes.client.openapi.ApiException in project java by kubernetes-client.
the class CopyTest method testUrl.
@Test
public void testUrl() throws IOException, ApiException, InterruptedException {
Copy copy = new Copy(client);
V1Pod pod = new V1Pod().metadata(new V1ObjectMeta().name(podName).namespace(namespace));
wireMockRule.stubFor(get(urlPathEqualTo("/api/v1/namespaces/" + namespace + "/pods/" + podName + "/exec")).willReturn(aResponse().withStatus(404).withHeader("Content-Type", "application/json").withBody("{}")));
try {
InputStream inputStream = copy.copyFileFromPod(pod, "container", "/some/path/to/file");
// block until the connection is established
inputStream.read();
inputStream.close();
} catch (IOException | ApiException | IllegalStateException e) {
e.printStackTrace();
}
wireMockRule.verify(getRequestedFor(urlPathEqualTo("/api/v1/namespaces/" + namespace + "/pods/" + podName + "/exec")).withQueryParam("stdin", equalTo("false")).withQueryParam("stdout", equalTo("true")).withQueryParam("stderr", equalTo("true")).withQueryParam("tty", equalTo("false")).withQueryParam("command", new AnythingPattern()));
}
use of io.kubernetes.client.openapi.ApiException in project java by kubernetes-client.
the class DefaultSharedIndexInformerWireMockTest method testAllNamespacedPodInformerTransformFailure.
@Test
public void testAllNamespacedPodInformerTransformFailure() throws InterruptedException {
CoreV1Api coreV1Api = new CoreV1Api(client);
String startRV = "1000";
String endRV = "1001";
V1PodList podList = new V1PodList().metadata(new V1ListMeta().resourceVersion(startRV)).items(Arrays.asList());
stubFor(get(urlPathEqualTo("/api/v1/pods")).withQueryParam("watch", equalTo("false")).willReturn(aResponse().withStatus(200).withHeader("Content-Type", "application/json").withBody(new JSON().serialize(podList))));
Watch.Response<V1Pod> watchResponse = new Watch.Response<>(EventType.ADDED.name(), new V1Pod().metadata(new V1ObjectMeta().namespace(namespace).name(podName).resourceVersion(endRV)));
stubFor(get(urlPathEqualTo("/api/v1/pods")).withQueryParam("watch", equalTo("true")).willReturn(aResponse().withStatus(200).withHeader("Content-Type", "application/json").withBody(new JSON().serialize(watchResponse))));
SharedInformerFactory factory = new SharedInformerFactory();
SharedIndexInformer<V1Pod> podInformer = factory.sharedIndexInformerFor((CallGeneratorParams params) -> {
try {
return coreV1Api.listPodForAllNamespacesCall(null, null, null, null, null, null, params.resourceVersion, null, params.timeoutSeconds, params.watch, null);
} catch (ApiException e) {
throw new RuntimeException(e);
}
}, V1Pod.class, V1PodList.class);
podInformer.setTransform((obj) -> {
throw new ObjectTransformException("test transform failure");
});
AtomicBoolean foundExistingPod = new AtomicBoolean(false);
podInformer.addEventHandler(new ResourceEventHandler<V1Pod>() {
@Override
public void onAdd(V1Pod obj) {
if (podName.equals(obj.getMetadata().getName()) && namespace.equals(obj.getMetadata().getNamespace())) {
foundExistingPod.set(true);
}
}
@Override
public void onUpdate(V1Pod oldObj, V1Pod newObj) {
}
@Override
public void onDelete(V1Pod obj, boolean deletedFinalStateUnknown) {
}
});
factory.startAllRegisteredInformers();
Thread.sleep(1000);
// cannot find the pod due to transform failure
assertFalse(foundExistingPod.get());
assertEquals(endRV, podInformer.lastSyncResourceVersion());
verify(1, getRequestedFor(urlPathEqualTo("/api/v1/pods")).withQueryParam("watch", equalTo("false")));
verify(moreThan(1), getRequestedFor(urlPathEqualTo("/api/v1/pods")).withQueryParam("watch", equalTo("true")));
factory.stopAllRegisteredInformers();
}
Aggregations