use of com.sequenceiq.cloudbreak.reactor.api.event.kerberos.KeytabConfigurationSuccess in project cloudbreak by hortonworks.
the class ClusterUpscaleActions method configureKeytabsAction.
@Bean(name = "RECONFIGURE_KEYTABS_STATE")
public Action<?, ?> configureKeytabsAction() {
return new AbstractClusterUpscaleAction<>(UploadUpscaleRecipesResult.class) {
@Override
protected void doExecute(ClusterUpscaleContext context, UploadUpscaleRecipesResult payload, Map<Object, Object> variables) {
if (context.isSinglePrimaryGateway() && ClusterManagerType.CLOUDERA_MANAGER.equals(context.getClusterManagerType())) {
KeytabConfigurationRequest keytabConfigurationRequest = new KeytabConfigurationRequest(context.getStackId());
sendEvent(context, keytabConfigurationRequest.selector(), keytabConfigurationRequest);
} else {
KeytabConfigurationSuccess keytabConfigurationSuccess = new KeytabConfigurationSuccess(context.getStackId());
sendEvent(context, keytabConfigurationSuccess.selector(), keytabConfigurationSuccess);
}
}
};
}
use of com.sequenceiq.cloudbreak.reactor.api.event.kerberos.KeytabConfigurationSuccess in project cloudbreak by hortonworks.
the class KeytabConfigurationHandler method accept.
@Override
public void accept(Event<KeytabConfigurationRequest> keytabConfigurationRequestEvent) {
Long stackId = keytabConfigurationRequestEvent.getData().getResourceId();
Selectable response;
try {
Stack stack = stackService.getByIdWithListsInTransaction(stackId);
Optional<KerberosConfig> kerberosConfigOptional = kerberosConfigService.get(stack.getEnvironmentCrn(), stack.getName());
boolean childEnvironment = environmentConfigProvider.isChildEnvironment(stack.getEnvironmentCrn());
if (kerberosDetailService.keytabsShouldBeUpdated(stack.cloudPlatform(), childEnvironment, kerberosConfigOptional)) {
GatewayConfig primaryGatewayConfig = gatewayConfigService.getPrimaryGatewayConfig(stack);
ServiceKeytabResponse serviceKeytabResponse = keytabProvider.getServiceKeytabResponse(stack, primaryGatewayConfig);
KeytabModel keytabModel = buildKeytabModel(serviceKeytabResponse);
hostOrchestrator.uploadKeytabs(List.of(primaryGatewayConfig), Set.of(keytabModel), ClusterDeletionBasedExitCriteriaModel.clusterDeletionBasedModel(stackId, stack.getCluster().getId()));
}
response = new KeytabConfigurationSuccess(stackId);
} catch (Exception e) {
LOGGER.info("Error during keytab configuration, stackId: " + stackId, e);
KeytabConfigurationException configurationException = new KeytabConfigurationException("Keytab generation failed with: " + e.getMessage(), e);
response = new KeytabConfigurationFailed(stackId, configurationException);
}
eventBus.notify(response.selector(), new Event<>(keytabConfigurationRequestEvent.getHeaders(), response));
}
Aggregations