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

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

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

origin: spinnaker/halyard

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

private GateProfileFactory getGateProfileFactory(String deploymentName) {
 String version = getArtifactService().getArtifactVersion(deploymentName, SpinnakerArtifact.GATE);
 try {
  if (Versions.lessThan(version, BOOT_UPGRADED_VERSION)) {
   return boot128ProfileFactory;
  }
 } catch (IllegalArgumentException iae) {
  log.warn("Could not resolve Gate version, using `boot154ProfileFactory`.");
 }
 return boot154ProfileFactory;
}
origin: com.netflix.spinnaker.halyard/halyard-deploy

private GateProfileFactory getGateProfileFactory(String deploymentName) {
 String version = getArtifactService().getArtifactVersion(deploymentName, SpinnakerArtifact.GATE);
 try {
  if (Versions.lessThan(version, BOOT_UPGRADED_VERSION)) {
   return boot128ProfileFactory;
  }
 } catch (NumberFormatException nfe) {
  log.warn("Could not resolve Gate version, using `boot154ProfileFactory`.");
 }
 return boot154ProfileFactory;
}
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 = "gate.yml";
 String path = Paths.get(getConfigOutputPath(), filename).toString();
 GateProfileFactory gateProfileFactory = getGateProfileFactory(deploymentConfiguration.getName());
 Profile profile = gateProfileFactory.getProfile(filename, path, deploymentConfiguration, endpoints);
 appendReadonlyClouddriverForDeck(profile, deploymentConfiguration, endpoints);
 profiles.add(profile);
 return profiles;
}
com.netflix.spinnaker.halyard.deploy.spinnaker.v1.serviceGateService

Most used methods

  • appendReadonlyClouddriverForDeck
  • getArtifactService
  • getConfigOutputPath
  • getGateProfileFactory

Popular in Java

  • Updating database using SQL prepared statement
  • scheduleAtFixedRate (Timer)
  • getExternalFilesDir (Context)
  • findViewById (Activity)
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • JComboBox (javax.swing)
  • JPanel (javax.swing)
  • LogFactory (org.apache.commons.logging)
    Factory for creating Log instances, with discovery and configuration features similar to that employ
  • CodeWhisperer alternatives
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