io.fabric8.openshift.examples.ListBuildConfigs 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.openshift.examples;
import io.fabric8.kubernetes.client.KubernetesClientBuilder;
import io.fabric8.kubernetes.client.KubernetesClientException;
import io.fabric8.openshift.api.model.BuildConfig;
import io.fabric8.openshift.api.model.BuildConfigList;
import io.fabric8.openshift.client.OpenShiftAPIGroups;
import io.fabric8.openshift.client.OpenShiftClient;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.List;
public class ListBuildConfigs {
private static final Logger logger = LoggerFactory.getLogger(ListBuildConfigs.class);
public static void main(String[] args) {
try (OpenShiftClient client = new KubernetesClientBuilder().build().adapt(OpenShiftClient.class)) {
if (!client.supportsOpenShiftAPIGroup(OpenShiftAPIGroups.BUILD)) {
logger.warn("This cluster does not support the API Group {}", OpenShiftAPIGroups.BUILD);
return;
}
BuildConfigList list = client.buildConfigs().list();
if (list == null) {
logger.error("No list returned!");
return;
}
List items = list.getItems();
for (BuildConfig item : items) {
logger.info("BuildConfig {} has version: {}", item.getMetadata().getName(), item.getApiVersion());
}
} catch (KubernetesClientException e) {
logger.error("Failed: {}", e.getMessage(), e);
}
}
}