本文整理了Java中io.fabric8.openshift.api.model.Route.getStatus
方法的一些代码示例,展示了Route.getStatus
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Route.getStatus
方法的具体详情如下:
包路径:io.fabric8.openshift.api.model.Route
类名称:Route
方法名:getStatus
暂无
代码示例来源:origin: strimzi/strimzi-kafka-operator
/**
* Checks if the Route already has an assigned address.
*
* @param namespace The namespace.
* @param name The route name.
*/
public boolean isAddressReady(String namespace, String name) {
Resource<Route, DoneableRoute> resourceOp = operation().inNamespace(namespace).withName(name);
Route resource = resourceOp.get();
if (resource != null && resource.getStatus() != null && resource.getStatus().getIngress() != null && resource.getStatus().getIngress().size() > 0) {
if (resource.getStatus().getIngress().get(0).getHost() != null) {
return true;
}
}
return false;
}
}
代码示例来源:origin: org.domeos/kubernetes-model
public RouteBuilder(RouteFluent<?> fluent,Route instance,Boolean validationEnabled){
this.fluent = fluent;
fluent.withApiVersion(instance.getApiVersion());
fluent.withKind(instance.getKind());
fluent.withMetadata(instance.getMetadata());
fluent.withSpec(instance.getSpec());
fluent.withStatus(instance.getStatus());
this.validationEnabled = validationEnabled;
}
public RouteBuilder(Route instance){
代码示例来源:origin: org.domeos/kubernetes-model
public RouteBuilder(Route instance,Boolean validationEnabled){
this.fluent = this;
this.withApiVersion(instance.getApiVersion());
this.withKind(instance.getKind());
this.withMetadata(instance.getMetadata());
this.withSpec(instance.getSpec());
this.withStatus(instance.getStatus());
this.validationEnabled = validationEnabled;
}
代码示例来源:origin: org.domeos/kubernetes-model
public RouteFluentImpl(Route instance){
this.withApiVersion(instance.getApiVersion());
this.withKind(instance.getKind());
this.withMetadata(instance.getMetadata());
this.withSpec(instance.getSpec());
this.withStatus(instance.getStatus());
}
代码示例来源:origin: org.apache.stratos/kubernetes-model
public RouteBuilder( RouteFluent<?> fluent , Route instance ){
this.fluent = fluent; fluent.withApiVersion(instance.getApiVersion()); fluent.withKind(instance.getKind()); fluent.withMetadata(instance.getMetadata()); fluent.withSpec(instance.getSpec()); fluent.withStatus(instance.getStatus());
}
public RouteBuilder( Route instance ){
代码示例来源:origin: io.fabric8.schemagenerator/kubernetes-model
public RouteBuilder( RouteFluent<?> fluent , Route instance ){
this.fluent = fluent; fluent.withApiVersion(instance.getApiVersion()); fluent.withKind(instance.getKind()); fluent.withMetadata(instance.getMetadata()); fluent.withSpec(instance.getSpec()); fluent.withStatus(instance.getStatus());
}
public RouteBuilder( Route instance ){
代码示例来源:origin: io.fabric8.schemagenerator/kubernetes-model
public RouteBuilder( Route instance ){
this.fluent = this; this.withApiVersion(instance.getApiVersion()); this.withKind(instance.getKind()); this.withMetadata(instance.getMetadata()); this.withSpec(instance.getSpec()); this.withStatus(instance.getStatus());
}
代码示例来源:origin: org.apache.stratos/kubernetes-model
public RouteBuilder( Route instance ){
this.fluent = this; this.withApiVersion(instance.getApiVersion()); this.withKind(instance.getKind()); this.withMetadata(instance.getMetadata()); this.withSpec(instance.getSpec()); this.withStatus(instance.getStatus());
}
内容来源于网络,如有侵权,请联系作者删除!