congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
ClouddriverService
Code IndexAdd Tabnine to your IDE (free)

How to use
ClouddriverService
in
com.netflix.spinnaker.halyard.deploy.spinnaker.v1.service

Best Java code snippets using com.netflix.spinnaker.halyard.deploy.spinnaker.v1.service.ClouddriverService (Showing top 14 results out of 315)

origin: com.netflix.spinnaker.halyard/halyard-deploy

@Override
public List<Profile> getProfiles(DeploymentConfiguration deploymentConfiguration, SpinnakerRuntimeSettings endpoints) {
 List<Profile> profiles = super.getProfiles(deploymentConfiguration, endpoints);
 String filename = "clouddriver.yml";
 String path = Paths.get(getConfigOutputPath(), filename).toString();
 Profile profile = getClouddriverProfileFactory().getProfile(filename, path, deploymentConfiguration, endpoints);
 profiles.add(profile);
 return profiles;
}
origin: spinnaker/halyard

@Override
public List<Profile> getProfiles(DeploymentConfiguration deploymentConfiguration, SpinnakerRuntimeSettings endpoints) {
 List<Profile> profiles = super.getProfiles(deploymentConfiguration, endpoints);
 generateAwsProfile(deploymentConfiguration, endpoints, getHomeDirectory()).ifPresent(p -> profiles.add(p));
 return profiles;
}
origin: com.netflix.spinnaker.halyard/halyard-deploy

@Override
public List<Profile> getProfiles(DeploymentConfiguration deploymentConfiguration, SpinnakerRuntimeSettings endpoints) {
 List<Profile> profiles = super.getProfiles(deploymentConfiguration, endpoints);
 generateAwsProfile(deploymentConfiguration, endpoints, getHomeDirectory()).ifPresent(p -> profiles.add(p));
 return profiles;
}
origin: spinnaker/halyard

@Override
public List<Profile> getProfiles(DeploymentConfiguration deploymentConfiguration, SpinnakerRuntimeSettings endpoints) {
 List<Profile> profiles = super.getProfiles(deploymentConfiguration, endpoints);
 String filename = "clouddriver.yml";
 String path = Paths.get(getConfigOutputPath(), filename).toString();
 Profile profile = getClouddriverProfileFactory().getProfile(filename, path, deploymentConfiguration, endpoints);
 profiles.add(profile);
 return profiles;
}
origin: com.netflix.spinnaker.halyard/halyard-deploy

@Override
public List<Profile> getProfiles(DeploymentConfiguration deploymentConfiguration, SpinnakerRuntimeSettings endpoints) {
 List<Profile> profiles = super.getProfiles(deploymentConfiguration, endpoints);
 generateAwsProfile(deploymentConfiguration, endpoints, getHomeDirectory()).ifPresent(p -> profiles.add(p));
 return profiles;
}
origin: spinnaker/halyard

@Override
public List<Profile> getProfiles(DeploymentConfiguration deploymentConfiguration, SpinnakerRuntimeSettings endpoints) {
 List<Profile> profiles = super.getProfiles(deploymentConfiguration, endpoints);
 generateAwsProfile(deploymentConfiguration, endpoints, getHomeDirectory()).ifPresent(p -> profiles.add(p));
 return profiles;
}
origin: spinnaker/halyard

 @Override
 public List<Profile> getProfiles(DeploymentConfiguration deploymentConfiguration, SpinnakerRuntimeSettings endpoints) {
  List<Profile> profiles = super.getProfiles(deploymentConfiguration, endpoints);

  // Due to a "feature" in how spring merges profiles, list entries (including requiredGroupMembership) are
  // merged rather than overwritten. Including the base profile will prevent fiat-enabled setups from deploying
  // anything since the deploying account will be restricted from performing any operations
  profiles = profiles.stream().filter(p -> !p.getName().equals("clouddriver.yml")).collect(Collectors.toList());

  String filename = "clouddriver-bootstrap.yml";
  String path = Paths.get(getConfigOutputPath(), filename).toString();
  Profile profile = clouddriverBootstrapProfileFactory.getProfile(filename, path, deploymentConfiguration, endpoints);

  profiles.add(profile);
  return profiles;
 }
}
origin: com.netflix.spinnaker.halyard/halyard-deploy

@Override
public List<Profile> getProfiles(DeploymentConfiguration deploymentConfiguration, SpinnakerRuntimeSettings endpoints) {
 List<Profile> profiles = super.getProfiles(deploymentConfiguration, endpoints);
 generateAwsProfile(deploymentConfiguration, endpoints, getHomeDirectory()).ifPresent(p -> profiles.add(p));
 return profiles;
}
origin: spinnaker/halyard

@Override
public List<Profile> getProfiles(DeploymentConfiguration deploymentConfiguration, SpinnakerRuntimeSettings endpoints) {
 List<Profile> profiles = super.getProfiles(deploymentConfiguration, endpoints);
 generateAwsProfile(deploymentConfiguration, endpoints, getHomeDirectory()).ifPresent(p -> profiles.add(p));
 return profiles;
}
origin: com.netflix.spinnaker.halyard/halyard-deploy

 @Override
 public List<Profile> getProfiles(DeploymentConfiguration deploymentConfiguration, SpinnakerRuntimeSettings endpoints) {
  List<Profile> profiles = super.getProfiles(deploymentConfiguration, endpoints);

  // Due to a "feature" in how spring merges profiles, list entries (including requiredGroupMembership) are
  // merged rather than overwritten. Including the base profile will prevent fiat-enabled setups from deploying
  // anything since the deploying account will be restricted from performing any operations
  profiles = profiles.stream().filter(p -> !p.getName().equals("clouddriver.yml")).collect(Collectors.toList());

  String filename = "clouddriver-bootstrap.yml";
  String path = Paths.get(getConfigOutputPath(), filename).toString();
  Profile profile = clouddriverBootstrapProfileFactory.getProfile(filename, path, deploymentConfiguration, endpoints);

  profiles.add(profile);
  return profiles;
 }
}
origin: com.netflix.spinnaker.halyard/halyard-deploy

@Override
public List<Profile> getProfiles(DeploymentConfiguration deploymentConfiguration, SpinnakerRuntimeSettings endpoints) {
 List<Profile> profiles = super.getProfiles(deploymentConfiguration, endpoints);
 generateAwsProfile(deploymentConfiguration, endpoints, getRootHomeDirectory()).ifPresent(profiles::add);
 generateAwsProfile(deploymentConfiguration, endpoints, getHomeDirectory()).ifPresent(profiles::add);
 return profiles;
}
origin: spinnaker/halyard

@Override
public List<Profile> getProfiles(DeploymentConfiguration deploymentConfiguration, SpinnakerRuntimeSettings endpoints) {
 List<Profile> profiles = super.getProfiles(deploymentConfiguration, endpoints);
 generateAwsProfile(deploymentConfiguration, endpoints, getRootHomeDirectory()).ifPresent(profiles::add);
 generateAwsProfile(deploymentConfiguration, endpoints, getHomeDirectory()).ifPresent(profiles::add);
 return profiles;
}
origin: spinnaker/halyard

@Override
public List<Profile> getProfiles(DeploymentConfiguration deploymentConfiguration, SpinnakerRuntimeSettings endpoints) {
 List<Profile> profiles = super.getProfiles(deploymentConfiguration, endpoints);
 generateAwsProfile(deploymentConfiguration, endpoints, getRootHomeDirectory()).ifPresent(profiles::add);
 generateAwsProfile(deploymentConfiguration, endpoints, getHomeDirectory()).ifPresent(profiles::add);
 return profiles;
}
origin: com.netflix.spinnaker.halyard/halyard-deploy

@Override
public List<Profile> getProfiles(DeploymentConfiguration deploymentConfiguration, SpinnakerRuntimeSettings endpoints) {
 List<Profile> profiles = super.getProfiles(deploymentConfiguration, endpoints);
 generateAwsProfile(deploymentConfiguration, endpoints, getRootHomeDirectory()).ifPresent(profiles::add);
 generateAwsProfile(deploymentConfiguration, endpoints, getHomeDirectory()).ifPresent(profiles::add);
 return profiles;
}
com.netflix.spinnaker.halyard.deploy.spinnaker.v1.serviceClouddriverService

Most used methods

  • getClouddriverProfileFactory
  • getConfigOutputPath
  • getProfiles

Popular in Java

  • Running tasks concurrently on multiple threads
  • getExternalFilesDir (Context)
  • startActivity (Activity)
  • findViewById (Activity)
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • Map (java.util)
    A Map is a data structure consisting of a set of keys and values in which each key is mapped to a si
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • JComboBox (javax.swing)
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now