use of com.microsoft.applicationinsights.smoketest.schemav2.Domain in project camel by apache.
the class DomainProducerTest method setUp.
@Before
public void setUp() {
producer = new DomainProducer(endpoint, client);
when(domainService.create(any(Domain.class))).thenReturn(testOSdomain);
when(domainService.get(anyString())).thenReturn(testOSdomain);
List<Domain> getAllList = new ArrayList<>();
getAllList.add(testOSdomain);
getAllList.add(testOSdomain);
doReturn(getAllList).when(domainService).list();
dummyDomain = createDomain();
when(testOSdomain.getName()).thenReturn(dummyDomain.getName());
when(testOSdomain.getDescription()).thenReturn(dummyDomain.getDescription());
}
use of com.microsoft.applicationinsights.smoketest.schemav2.Domain in project weblogic-kubernetes-operator by oracle.
the class Main method begin.
private static void begin() {
// read the operator configuration
String namespace = System.getenv("OPERATOR_NAMESPACE");
if (namespace == null) {
namespace = "default";
}
Collection<String> targetNamespaces = getTargetNamespaces(namespace);
String serviceAccountName = tuningAndConfig.get("serviceaccount");
if (serviceAccountName == null) {
serviceAccountName = "default";
}
principal = "system:serviceaccount:" + namespace + ":" + serviceAccountName;
LOGGER.info(MessageKeys.OP_CONFIG_NAMESPACE, namespace);
StringBuilder tns = new StringBuilder();
Iterator<String> it = targetNamespaces.iterator();
while (it.hasNext()) {
tns.append(it.next());
if (it.hasNext()) {
tns.append(", ");
}
}
LOGGER.info(MessageKeys.OP_CONFIG_TARGET_NAMESPACES, tns.toString());
LOGGER.info(MessageKeys.OP_CONFIG_SERVICE_ACCOUNT, serviceAccountName);
try {
// Initialize logging factory with JSON serializer for later logging
// that includes k8s objects
LoggingFactory.setJSON(new JSON());
// start the REST server
startRestServer(principal, targetNamespaces);
// create the Custom Resource Definitions if they are not already there
CRDHelper.checkAndCreateCustomResourceDefinition();
try {
HealthCheckHelper healthCheck = new HealthCheckHelper(namespace, targetNamespaces);
version = healthCheck.performK8sVersionCheck();
healthCheck.performNonSecurityChecks();
healthCheck.performSecurityChecks(serviceAccountName);
} catch (ApiException e) {
LOGGER.warning(MessageKeys.EXCEPTION, e);
}
// check for any existing resources and add the watches on them
// this would happen when the Domain was running BEFORE the Operator starts up
LOGGER.info(MessageKeys.LISTING_DOMAINS);
for (String ns : targetNamespaces) {
initialized.put(ns, Boolean.TRUE);
Step domainList = callBuilderFactory.create().listDomainAsync(ns, new ResponseStep<DomainList>(null) {
@Override
public NextAction onFailure(Packet packet, ApiException e, int statusCode, Map<String, List<String>> responseHeaders) {
if (statusCode == CallBuilder.NOT_FOUND) {
return onSuccess(packet, null, statusCode, responseHeaders);
}
return super.onFailure(packet, e, statusCode, responseHeaders);
}
@Override
public NextAction onSuccess(Packet packet, DomainList result, int statusCode, Map<String, List<String>> responseHeaders) {
if (result != null) {
for (Domain dom : result.getItems()) {
doCheckAndCreateDomainPresence(dom);
}
}
// main logic now happens in the watch handlers
domainWatchers.put(ns, createDomainWatcher(ns, result != null ? result.getMetadata().getResourceVersion() : ""));
return doNext(packet);
}
});
Step initialize = ConfigMapHelper.createScriptConfigMapStep(ns, new ConfigMapAfterStep(ns, callBuilderFactory.create().with($ -> {
$.labelSelector = LabelConstants.DOMAINUID_LABEL + "," + LabelConstants.CREATEDBYOPERATOR_LABEL;
}).listPodAsync(ns, new ResponseStep<V1PodList>(callBuilderFactory.create().with($ -> {
$.labelSelector = LabelConstants.DOMAINUID_LABEL + "," + LabelConstants.CREATEDBYOPERATOR_LABEL;
}).listServiceAsync(ns, new ResponseStep<V1ServiceList>(callBuilderFactory.create().with($ -> {
$.labelSelector = LabelConstants.DOMAINUID_LABEL + "," + LabelConstants.CREATEDBYOPERATOR_LABEL;
}).listIngressAsync(ns, new ResponseStep<V1beta1IngressList>(domainList) {
@Override
public NextAction onFailure(Packet packet, ApiException e, int statusCode, Map<String, List<String>> responseHeaders) {
if (statusCode == CallBuilder.NOT_FOUND) {
return onSuccess(packet, null, statusCode, responseHeaders);
}
return super.onFailure(packet, e, statusCode, responseHeaders);
}
@Override
public NextAction onSuccess(Packet packet, V1beta1IngressList result, int statusCode, Map<String, List<String>> responseHeaders) {
if (result != null) {
for (V1beta1Ingress ingress : result.getItems()) {
String domainUID = IngressWatcher.getIngressDomainUID(ingress);
String clusterName = IngressWatcher.getIngressClusterName(ingress);
if (domainUID != null && clusterName != null) {
DomainPresenceInfo created = new DomainPresenceInfo(ns);
DomainPresenceInfo info = domains.putIfAbsent(domainUID, created);
if (info == null) {
info = created;
}
info.getIngresses().put(clusterName, ingress);
}
}
}
ingressWatchers.put(ns, createIngressWatcher(ns, result != null ? result.getMetadata().getResourceVersion() : ""));
return doNext(packet);
}
})) {
@Override
public NextAction onFailure(Packet packet, ApiException e, int statusCode, Map<String, List<String>> responseHeaders) {
if (statusCode == CallBuilder.NOT_FOUND) {
return onSuccess(packet, null, statusCode, responseHeaders);
}
return super.onFailure(packet, e, statusCode, responseHeaders);
}
@Override
public NextAction onSuccess(Packet packet, V1ServiceList result, int statusCode, Map<String, List<String>> responseHeaders) {
if (result != null) {
for (V1Service service : result.getItems()) {
String domainUID = ServiceWatcher.getServiceDomainUID(service);
String serverName = ServiceWatcher.getServiceServerName(service);
String channelName = ServiceWatcher.getServiceChannelName(service);
if (domainUID != null && serverName != null) {
DomainPresenceInfo created = new DomainPresenceInfo(ns);
DomainPresenceInfo info = domains.putIfAbsent(domainUID, created);
if (info == null) {
info = created;
}
ServerKubernetesObjects csko = new ServerKubernetesObjects();
ServerKubernetesObjects current = info.getServers().putIfAbsent(serverName, csko);
ServerKubernetesObjects sko = current != null ? current : csko;
if (channelName != null) {
sko.getChannels().put(channelName, service);
} else {
sko.getService().set(service);
}
}
}
}
serviceWatchers.put(ns, createServiceWatcher(ns, result != null ? result.getMetadata().getResourceVersion() : ""));
return doNext(packet);
}
})) {
@Override
public NextAction onFailure(Packet packet, ApiException e, int statusCode, Map<String, List<String>> responseHeaders) {
if (statusCode == CallBuilder.NOT_FOUND) {
return onSuccess(packet, null, statusCode, responseHeaders);
}
return super.onFailure(packet, e, statusCode, responseHeaders);
}
@Override
public NextAction onSuccess(Packet packet, V1PodList result, int statusCode, Map<String, List<String>> responseHeaders) {
if (result != null) {
for (V1Pod pod : result.getItems()) {
String domainUID = PodWatcher.getPodDomainUID(pod);
String serverName = PodWatcher.getPodServerName(pod);
if (domainUID != null && serverName != null) {
DomainPresenceInfo created = new DomainPresenceInfo(ns);
DomainPresenceInfo info = domains.putIfAbsent(domainUID, created);
if (info == null) {
info = created;
}
ServerKubernetesObjects csko = new ServerKubernetesObjects();
ServerKubernetesObjects current = info.getServers().putIfAbsent(serverName, csko);
ServerKubernetesObjects sko = current != null ? current : csko;
sko.getPod().set(pod);
}
}
}
podWatchers.put(ns, createPodWatcher(ns, result != null ? result.getMetadata().getResourceVersion() : ""));
return doNext(packet);
}
})));
engine.createFiber().start(initialize, new Packet(), new CompletionCallback() {
@Override
public void onCompletion(Packet packet) {
// no-op
}
@Override
public void onThrowable(Packet packet, Throwable throwable) {
LOGGER.severe(MessageKeys.EXCEPTION, throwable);
}
});
}
// delete stranded resources
for (Map.Entry<String, DomainPresenceInfo> entry : domains.entrySet()) {
String domainUID = entry.getKey();
DomainPresenceInfo info = entry.getValue();
if (info != null) {
if (info.getDomain() == null) {
// no domain resource
deleteDomainPresence(info.getNamespace(), domainUID);
}
}
}
} catch (Throwable e) {
LOGGER.warning(MessageKeys.EXCEPTION, e);
} finally {
LOGGER.info(MessageKeys.OPERATOR_SHUTTING_DOWN);
}
}
use of com.microsoft.applicationinsights.smoketest.schemav2.Domain in project weblogic-kubernetes-operator by oracle.
the class WeblogicApi method readWebLogicOracleV1NamespacedDomainStatusAsync.
/**
* (asynchronously) read status of the specified Domain
*
* @param name
* name of the Domain (required)
* @param namespace
* object name and auth scope, such as for teams and projects
* (required)
* @param pretty
* If 'true', then the output is pretty printed. (optional)
* @param callback
* The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException
* If fail to process the API call, e.g. serializing the request body
* object
*/
public com.squareup.okhttp.Call readWebLogicOracleV1NamespacedDomainStatusAsync(String name, String namespace, String pretty, final ApiCallback<Domain> callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
if (callback != null) {
progressListener = (bytesRead, contentLength, done) -> callback.onDownloadProgress(bytesRead, contentLength, done);
progressRequestListener = (bytesWritten, contentLength, done) -> callback.onUploadProgress(bytesWritten, contentLength, done);
}
com.squareup.okhttp.Call call = readWebLogicOracleV1NamespacedDomainStatusValidateBeforeCall(name, namespace, pretty, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken<Domain>() {
}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
use of com.microsoft.applicationinsights.smoketest.schemav2.Domain in project weblogic-kubernetes-operator by oracle.
the class WeblogicApi method replaceWebLogicOracleV1NamespacedDomainWithHttpInfo.
/**
* replace the specified Domain
*
* @param name
* name of the Domain (required)
* @param namespace
* object name and auth scope, such as for teams and projects
* (required)
* @param body
* (required)
* @param pretty
* If 'true', then the output is pretty printed. (optional)
* @return ApiResponse<Domain>
* @throws ApiException
* If fail to call the API, e.g. server error or cannot deserialize
* the response body
*/
public ApiResponse<Domain> replaceWebLogicOracleV1NamespacedDomainWithHttpInfo(String name, String namespace, Domain body, String pretty) throws ApiException {
com.squareup.okhttp.Call call = replaceWebLogicOracleV1NamespacedDomainValidateBeforeCall(name, namespace, body, pretty, null, null);
Type localVarReturnType = new TypeToken<Domain>() {
}.getType();
return apiClient.execute(call, localVarReturnType);
}
use of com.microsoft.applicationinsights.smoketest.schemav2.Domain in project weblogic-kubernetes-operator by oracle.
the class WeblogicApi method patchWebLogicOracleV1NamespacedDomainStatusAsync.
/**
* (asynchronously) partially update status of the specified Domain
*
* @param name
* name of the Domain (required)
* @param namespace
* object name and auth scope, such as for teams and projects
* (required)
* @param body
* (required)
* @param pretty
* If 'true', then the output is pretty printed. (optional)
* @param callback
* The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException
* If fail to process the API call, e.g. serializing the request body
* object
*/
public com.squareup.okhttp.Call patchWebLogicOracleV1NamespacedDomainStatusAsync(String name, String namespace, Patch body, String pretty, final ApiCallback<Domain> callback) throws ApiException {
ProgressResponseBody.ProgressListener progressListener = null;
ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
if (callback != null) {
progressListener = (bytesRead, contentLength, done) -> callback.onDownloadProgress(bytesRead, contentLength, done);
progressRequestListener = (bytesWritten, contentLength, done) -> callback.onUploadProgress(bytesWritten, contentLength, done);
}
com.squareup.okhttp.Call call = patchWebLogicOracleV1NamespacedDomainStatusValidateBeforeCall(name, namespace, body, pretty, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken<Domain>() {
}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
Aggregations