org.fusesource.fabric.commands.ContainerCreateChild Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fabric-commands Show documentation
Show all versions of fabric-commands Show documentation
Fuse Fabric :: Karaf Commands
The newest version!
/**
* Copyright (C) FuseSource, Inc.
* http://fusesource.com
*
* 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 org.fusesource.fabric.commands;
import java.io.IOException;
import org.apache.felix.gogo.commands.Argument;
import org.apache.felix.gogo.commands.Command;
import org.apache.felix.gogo.commands.Option;
import org.fusesource.fabric.api.CreateContainerChildOptions;
import org.fusesource.fabric.api.CreateContainerMetadata;
import org.fusesource.fabric.api.CreateContainerOptionsBuilder;
import org.fusesource.fabric.api.FabricAuthenticationException;
import org.fusesource.fabric.boot.commands.support.ContainerCreateSupport;
import org.fusesource.fabric.utils.shell.ShellUtils;
import static org.fusesource.fabric.utils.FabricValidations.validateProfileName;
@Command(name = "container-create-child", scope = "fabric", description = "Creates one or more child containers", detailedDescription = "classpath:containerCreateChild.txt")
public class ContainerCreateChild extends ContainerCreateSupport {
@Option(name = "--jmx-user", multiValued = false, required = false, description = "The jmx user name of the parent container.")
protected String username;
@Option(name = "--jmx-password", multiValued = false, required = false, description = "The jmx password of the parent container.")
protected String password;
@Argument(index = 0, required = true, description = "Parent containers ID")
protected String parent;
@Argument(index = 1, required = true, description = "The name of the containers to be created. When creating multiple containers it serves as a prefix")
protected String name;
@Argument(index = 2, required = false, description = "The number of containers that should be created")
protected int number = 1;
@Override
protected Object doExecute() throws Exception {
CreateContainerMetadata[] metadatas = null;
validateProfileName(profiles);
// validate input before creating containers
preCreateContainer(name);
String jmxUser = username != null ? username : ShellUtils.retrieveFabricUser(session);
String jmxPassword = password != null ? password : ShellUtils.retrieveFabricUserPassword(session);
// okay create child container
String url = "child://" + parent;
CreateContainerChildOptions options = CreateContainerOptionsBuilder.child()
.name(name)
.parent(parent)
.resolver(resolver)
.ensembleServer(isEnsembleServer)
.number(number)
.zookeeperUrl(fabricService.getZookeeperUrl())
.zookeeperPassword(fabricService.getZookeeperPassword())
.jvmOpts(jvmOpts)
.jmxUser(jmxUser)
.jmxPassword(jmxPassword);
try {
metadatas = fabricService.createContainers(options);
ShellUtils.storeFabricCredentials(session, jmxUser, jmxPassword);
} catch (FabricAuthenticationException ex) {
//If authentication fails, prompts for credentilas and try again.
username = null;
password = null;
promptForJmxCredentialsIfNeeded();
options.setJmxUser(username);
options.setJmxPassword(password);
metadatas = fabricService.createContainers(options);
ShellUtils.storeFabricCredentials(session, username, password);
}
// display containers
displayContainers(metadatas);
// and set its profiles and versions after creation
postCreateContainers(metadatas);
return null;
}
@Override
protected void preCreateContainer(String name) {
super.preCreateContainer(name);
// validate number is not out of bounds
if (number < 1 || number > 99) {
throw new IllegalArgumentException("The number of containers must be between 1 and 99.");
}
if (isEnsembleServer && number > 1) {
throw new IllegalArgumentException("Can not create a new ZooKeeper ensemble on multiple containers. Create the containers first and then use the fabric:create command instead.");
}
}
private void promptForJmxCredentialsIfNeeded() throws IOException {
// If the username was not configured via cli, then prompt the user for the values
if (username == null) {
log.debug("Prompting user for jmx login");
username = ShellUtils.readLine(session, "Jmx Login for " + parent + ": ", false);
}
if (password == null) {
password = ShellUtils.readLine(session, "Jmx Password for " + parent + ": ", true);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy