use of com.netflix.spinnaker.halyard.config.model.v1.node.Account in project halyard by spinnaker.
the class AbstractListAccountsCommand method executeThis.
@Override
protected void executeThis() {
Provider provider = getProvider();
List<Account> accounts = provider.getAccounts();
if (accounts.isEmpty()) {
AnsiUi.success("No configured accounts for " + getProviderName() + ".");
} else {
AnsiUi.success("Accounts for " + getProviderName() + ":");
accounts.forEach(account -> AnsiUi.listItem(account.getName()));
}
}
use of com.netflix.spinnaker.halyard.config.model.v1.node.Account in project halyard by spinnaker.
the class AppengineAddAccountCommand method buildAccount.
@Override
protected Account buildAccount(String accountName) {
AppengineAccount account = (AppengineAccount) new AppengineAccount().setName(accountName);
account.setProject(project).setJsonPath(jsonPath);
account.setLocalRepositoryDirectory(localRepositoryDirectory).setGitHttpsUsername(gitHttpsUsername).setGitHttpsPassword(gitHttpsPassword).setGithubOAuthAccessToken(githubOAuthAccessToken).setSshPrivateKeyFilePath(sshPrivateKeyFilePath).setSshPrivateKeyPassphrase(sshPrivateKeyPassphrase).setSshKnownHostsFilePath(sshKnownHostsFilePath).setSshTrustUnknownHosts(sshTrustUnknownHosts).setGcloudReleaseTrack(gcloudReleaseTrack);
return account;
}
use of com.netflix.spinnaker.halyard.config.model.v1.node.Account in project halyard by spinnaker.
the class DockerRegistryAddAccountCommand method buildAccount.
@Override
protected Account buildAccount(String accountName) {
DockerRegistryAccount account = (DockerRegistryAccount) new DockerRegistryAccount().setName(accountName);
account.setAddress(address).setRepositories(repositories).setPassword(password).setPasswordFile(passwordFile).setUsername(username).setEmail(email).setCacheIntervalSeconds(cacheIntervalSeconds).setClientTimeoutMillis(clientTimeoutMillis).setCacheThreads(cacheThreads).setPaginateSize(paginateSize).setSortTagsByDate(sortTagsByDate).setTrackDigests(trackDigests).setInsecureRegistry(insecureRegistry);
return account;
}
use of com.netflix.spinnaker.halyard.config.model.v1.node.Account in project halyard by spinnaker.
the class ClouddriverProfileFactory method removeBootstrapOnlyAccount.
@SuppressWarnings("unchecked")
private void removeBootstrapOnlyAccount(Providers providers, String deploymentName, String bootstrapAccountName) {
Account bootstrapAccount = accountService.getAnyProviderAccount(deploymentName, bootstrapAccountName);
Provider bootstrapProvider = ((Provider) bootstrapAccount.getParent());
bootstrapProvider.getAccounts().remove(bootstrapAccount);
if (bootstrapProvider.getAccounts().isEmpty()) {
bootstrapProvider.setEnabled(false);
if (bootstrapAccount instanceof ContainerAccount) {
ContainerAccount containerAccount = (ContainerAccount) bootstrapAccount;
DockerRegistryAccountReverseIndex revIndex = new DockerRegistryAccountReverseIndex(providers);
containerAccount.getDockerRegistries().forEach(reg -> {
Set<Account> dependentAccounts = revIndex.get(reg.getAccountName());
if (dependentAccounts == null || dependentAccounts.isEmpty()) {
DockerRegistryAccount regAcct = (DockerRegistryAccount) accountService.getAnyProviderAccount(deploymentName, reg.getAccountName());
((DockerRegistryProvider) regAcct.getParent()).getAccounts().remove(regAcct);
}
});
if (providers.getDockerRegistry().getAccounts().isEmpty()) {
providers.getDockerRegistry().setEnabled(false);
}
}
}
}
use of com.netflix.spinnaker.halyard.config.model.v1.node.Account in project halyard by spinnaker.
the class ClouddriverBootstrapProfileFactory method setProfile.
@Override
@SuppressWarnings("unchecked")
protected void setProfile(Profile profile, DeploymentConfiguration deploymentConfiguration, SpinnakerRuntimeSettings endpoints) {
super.setProfile(profile, deploymentConfiguration, endpoints);
DeploymentEnvironment deploymentEnvironment = deploymentConfiguration.getDeploymentEnvironment();
if (deploymentEnvironment.getType() != DeploymentEnvironment.DeploymentType.Distributed) {
throw new IllegalStateException("There is no need to produce a bootstrapping clouddriver for a non-remote deployment of Spinnaker. This is a bug.");
}
// We need to make modifications to this deployment configuration, but can't use helpful objects
// like the accountService on a clone. Therefore, we'll make the modifications in place and
// restore to the original state when the modifications are written out.
Providers originalProviders = deploymentConfiguration.getProviders().cloneNode(Providers.class);
Providers modifiedProviders = deploymentConfiguration.getProviders();
String deploymentName = deploymentConfiguration.getName();
String bootstrapAccountName = deploymentEnvironment.getAccountName();
Account bootstrapAccount = accountService.getAnyProviderAccount(deploymentName, bootstrapAccountName);
bootstrapAccount.makeBootstrappingAccount(artifactSourcesConfig);
Provider bootstrapProvider = (Provider) bootstrapAccount.getParent();
disableAllProviders(modifiedProviders);
bootstrapProvider.setEnabled(true);
bootstrapProvider.setAccounts(Collections.singletonList(bootstrapAccount));
if (bootstrapAccount instanceof ContainerAccount) {
ContainerAccount containerAccount = (ContainerAccount) bootstrapAccount;
List<DockerRegistryAccount> bootstrapRegistries = containerAccount.getDockerRegistries().stream().map(ref -> (DockerRegistryAccount) accountService.getProviderAccount(deploymentName, DOCKER_REGISTRY, ref.getAccountName())).collect(Collectors.toList());
DockerRegistryProvider dockerProvider = modifiedProviders.getDockerRegistry();
dockerProvider.setEnabled(true);
dockerProvider.setAccounts(bootstrapRegistries);
}
if (bootstrapAccount instanceof SupportsConsul) {
SupportsConsul consulAccount = (SupportsConsul) bootstrapAccount;
ConsulConfig config = consulAccount.getConsul();
if (config == null) {
config = new ConsulConfig();
consulAccount.setConsul(config);
}
consulAccount.getConsul().setEnabled(true);
} else {
log.warn("Attempting to perform a distributed deployment to account \"" + bootstrapAccount.getName() + "\" without a discovery mechanism");
}
List<String> files = backupRequiredFiles(modifiedProviders, deploymentConfiguration.getName());
profile.appendContents(yamlToString(modifiedProviders)).appendContents("services.fiat.enabled: false").appendContents(profile.getBaseContents()).setRequiredFiles(files);
deploymentConfiguration.setProviders(originalProviders);
}
Aggregations