use of io.fabric8.kubernetes.client.dsl.Resource in project flink by apache.
the class KubernetesPodTest method testIsTerminatedShouldReturnTrueWhenPodFailed.
@Test
public void testIsTerminatedShouldReturnTrueWhenPodFailed() {
final Pod pod = new PodBuilder().build();
pod.setStatus(new PodStatusBuilder().withPhase(KubernetesPod.PodPhase.Failed.name()).withMessage("Pod Node didn't have enough resource").withReason("OutOfMemory").build());
assertThat(new KubernetesPod(pod).isTerminated(), is(true));
}
use of io.fabric8.kubernetes.client.dsl.Resource in project flink by apache.
the class Fabric8FlinkKubeClient method setOwnerReference.
private void setOwnerReference(Deployment deployment, List<HasMetadata> resources) {
final OwnerReference deploymentOwnerReference = new OwnerReferenceBuilder().withName(deployment.getMetadata().getName()).withApiVersion(deployment.getApiVersion()).withUid(deployment.getMetadata().getUid()).withKind(deployment.getKind()).withController(true).withBlockOwnerDeletion(true).build();
resources.forEach(resource -> resource.getMetadata().setOwnerReferences(Collections.singletonList(deploymentOwnerReference)));
}
use of io.fabric8.kubernetes.client.dsl.Resource in project syndesis-qe by syndesisio.
the class Syndesis method deployOperator.
public void deployOperator() {
List<HasMetadata> resourceList = getOperatorResources();
final String operatorResourcesName = "syndesis-operator";
Optional<HasMetadata> serviceAccount = resourceList.stream().filter(resource -> "ServiceAccount".equals(resource.getKind()) && operatorResourcesName.equals(resource.getMetadata().getName())).findFirst();
if (serviceAccount.isPresent()) {
((ServiceAccount) serviceAccount.get()).getImagePullSecrets().add(new LocalObjectReference(TestConfiguration.syndesisPullSecretName()));
} else {
log.error("Service account not found in resources");
}
OpenShiftUtils.getInstance().serviceAccounts().withName("default").edit().addToImagePullSecrets(new LocalObjectReference(TestConfiguration.syndesisPullSecretName())).done();
List<EnvVar> envVarsToAdd = new ArrayList<>();
envVarsToAdd.add(new EnvVar("TEST_SUPPORT", "true", null));
// For upgrade, we want to override images only for "current" version
if (operatorImage.equals(TestConfiguration.syndesisOperatorImage())) {
Set<Image> images = EnumSet.allOf(Image.class);
for (Image image : images) {
if (TestConfiguration.image(image) != null) {
// override image, e.g. from BUILD_PROPERTIES
log.info("Overriding " + image.name().toLowerCase() + " image with " + TestConfiguration.image(image));
envVarsToAdd.add(new EnvVar("RELATED_IMAGE_" + image.name(), TestConfiguration.image(image), null));
} else {
// use images from Quay instead of DockerHub for Syndesis components
switch(image) {
case META:
case S2I:
case UI:
case SERVER:
case UPGRADE:
log.info("Overriding " + image.name().toLowerCase() + " image with quay variant");
String version = TestConfiguration.syndesisInstallVersion() != null ? TestConfiguration.syndesisInstallVersion() : "latest";
envVarsToAdd.add(new EnvVar("RELATED_IMAGE_" + image.name(), String.format("%s/syndesis/syndesis-%s:%s", TestConfiguration.get().readValue(SYNDESIS_DOCKER_REGISTRY), image.name().toLowerCase(), version), null));
}
}
}
}
if ((TestUtils.isProdBuild() && getOperatorImage().contains("1.8")) || getOperatorImage().contains("1.11")) {
// apply this hotfix for 1.8 prod version, needs for OSD because it doesn't see proxy eng repo
if (TestUtils.isProdBuild()) {
envVarsToAdd.add(new EnvVar("RELATED_IMAGE_PSQL_EXPORTER", "registry.redhat.io/fuse7/fuse-postgres-exporter-rhel7:1.8", null));
}
// needs for upgrade test when previous version is 1.11
DeploymentConfig dc = (DeploymentConfig) resourceList.stream().filter(r -> "DeploymentConfig".equals(r.getKind()) && operatorResourcesName.equals(r.getMetadata().getName())).findFirst().orElseThrow(() -> new RuntimeException("Unable to find deployment config in operator resources"));
dc.getSpec().getTemplate().getSpec().getContainers().get(0).getEnv().addAll(envVarsToAdd);
} else {
Deployment deployment = (Deployment) resourceList.stream().filter(r -> "Deployment".equals(r.getKind()) && operatorResourcesName.equals(r.getMetadata().getName())).findFirst().orElseThrow(() -> new RuntimeException("Unable to find deployment in operator resources"));
deployment.getSpec().getTemplate().getSpec().getContainers().get(0).getEnv().addAll(envVarsToAdd);
}
OpenShiftUtils.asRegularUser(() -> OpenShiftUtils.getInstance().resourceList(resourceList).createOrReplace());
log.info("Waiting for syndesis-operator to be ready");
try {
OpenShiftUtils.getInstance().waiters().areExactlyNPodsReady(1, "syndesis.io/component", operatorResourcesName).interval(TimeUnit.SECONDS, 20).timeout(TimeUnit.MINUTES, 10).waitFor();
} catch (WaiterException e) {
InfraFail.fail("Unable to find operator pod in 10 minutes");
}
}
use of io.fabric8.kubernetes.client.dsl.Resource in project syndesis-qe by syndesisio.
the class Syndesis method deleteCr.
private void deleteCr(String name, String version) {
log.info("Undeploying custom resource \"{}\" in version \"{}\"", name, version);
RawCustomResourceOperationsImpl syndesisCrClient = getSyndesisCrClient(version);
OpenShiftUtils.asRegularUser(() -> syndesisCrClient.delete(TestConfiguration.openShiftNamespace(), name));
}
use of io.fabric8.kubernetes.client.dsl.Resource in project syndesis-qe by syndesisio.
the class Jaeger method processResources.
private void processResources() {
for (String jaegerResource : JAEGER_RESOURCES) {
// version 1.20.0 ==> repo v1.20.0
jaegerResource = String.format(jaegerResource, "v" + TestConfiguration.jaegerVersion());
log.info("Processing " + jaegerResource);
try (InputStream is = new URL(jaegerResource).openStream()) {
List<HasMetadata> resources = OpenShiftUtils.getInstance().load(is).get();
// Change the namespace in the resources to the current
for (HasMetadata resource : resources) {
if (resource instanceof ClusterRoleBinding) {
for (Subject subject : ((ClusterRoleBinding) resource).getSubjects()) {
subject.setNamespace(TestConfiguration.openShiftNamespace());
}
}
resource.getMetadata().setNamespace(TestConfiguration.openShiftNamespace());
processedResources.add(resource);
// change docker image to quay
if (resource instanceof Deployment) {
((Deployment) resource).getSpec().getTemplate().getSpec().getContainers().get(0).setImage("quay.io/jaegertracing/jaeger-operator:" + TestConfiguration.jaegerVersion());
}
}
} catch (IOException e) {
fail("Unable to process Jaeger resource " + jaegerResource, e);
}
}
}
Aggregations