forked from spinnaker/orca
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding support for bulk server group operations
- Added bulk server group destroy
- Loading branch information
1 parent
3ad6997
commit d83a414
Showing
6 changed files
with
540 additions
and
0 deletions.
There are no files selected for viewing
55 changes: 55 additions & 0 deletions
55
.../netflix/spinnaker/orca/clouddriver/pipeline/servergroup/BulkDestroyServerGroupStage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
/* | ||
* Copyright 2017 Netflix, Inc. | ||
* | ||
* 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 com.netflix.spinnaker.orca.clouddriver.pipeline.servergroup; | ||
|
||
import com.netflix.spinnaker.orca.clouddriver.pipeline.servergroup.support.TargetServerGroup; | ||
import com.netflix.spinnaker.orca.clouddriver.tasks.MonitorKatoTask; | ||
import com.netflix.spinnaker.orca.clouddriver.tasks.servergroup.*; | ||
import com.netflix.spinnaker.orca.kato.pipeline.Nameable; | ||
import com.netflix.spinnaker.orca.pipeline.StageDefinitionBuilder; | ||
import com.netflix.spinnaker.orca.pipeline.TaskNode; | ||
import com.netflix.spinnaker.orca.pipeline.model.Execution; | ||
import com.netflix.spinnaker.orca.pipeline.model.Stage; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
public class BulkDestroyServerGroupStage implements StageDefinitionBuilder, Nameable { | ||
private static final String PIPELINE_CONFIG_TYPE = "bulkDestroyServerGroup"; | ||
|
||
@Override | ||
public <T extends Execution<T>> void taskGraph(Stage<T> stage, TaskNode.Builder builder) { | ||
try { | ||
builder | ||
.withTask("bulkDisableServerGroup", BulkDisableServerGroupTask.class) | ||
.withTask("monitorServerGroups", MonitorKatoTask.class) | ||
.withTask("waitForNotUpInstances", WaitForAllInstancesNotUpTask.class) | ||
.withTask("forceCacheRefresh", ServerGroupCacheForceRefreshTask.class) | ||
.withTask("bulkDestroyServerGroup", BulkDestroyServerGroupTask.class) | ||
.withTask("monitorServerGroups", MonitorKatoTask.class) | ||
.withTask("waitForDestroyedServerGroup", BulkWaitForDestroyedServerGroupTask.class); | ||
} catch (TargetServerGroup.NotFoundException e) { | ||
builder | ||
.withTask("forceCacheRefresh", ServerGroupCacheForceRefreshTask.class); | ||
} | ||
|
||
} | ||
|
||
@Override | ||
public String getName() { | ||
return this.getType(); | ||
} | ||
} |
173 changes: 173 additions & 0 deletions
173
...com/netflix/spinnaker/orca/clouddriver/tasks/servergroup/AbstractBulkServerGroupTask.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,173 @@ | ||
/* | ||
* Copyright 2017 Netflix, Inc. | ||
* | ||
* 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 com.netflix.spinnaker.orca.clouddriver.tasks.servergroup; | ||
|
||
import com.netflix.frigga.Names; | ||
import com.netflix.spinnaker.orca.DefaultTaskResult; | ||
import com.netflix.spinnaker.orca.ExecutionStatus; | ||
import com.netflix.spinnaker.orca.RetryableTask; | ||
import com.netflix.spinnaker.orca.TaskResult; | ||
import com.netflix.spinnaker.orca.clouddriver.KatoService; | ||
import com.netflix.spinnaker.orca.clouddriver.model.TaskId; | ||
import com.netflix.spinnaker.orca.clouddriver.pipeline.servergroup.support.Location; | ||
import com.netflix.spinnaker.orca.clouddriver.pipeline.servergroup.support.TargetServerGroup; | ||
import com.netflix.spinnaker.orca.clouddriver.tasks.AbstractCloudProviderAwareTask; | ||
import com.netflix.spinnaker.orca.clouddriver.utils.OortHelper; | ||
import com.netflix.spinnaker.orca.pipeline.model.Stage; | ||
import org.slf4j.Logger; | ||
import org.slf4j.LoggerFactory; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
|
||
import java.util.Map; | ||
import java.util.HashMap; | ||
import java.util.List; | ||
import java.util.ArrayList; | ||
import java.util.Optional; | ||
import java.util.stream.Collectors; | ||
|
||
public abstract class AbstractBulkServerGroupTask extends AbstractCloudProviderAwareTask implements RetryableTask { | ||
private static final Logger LOGGER = LoggerFactory.getLogger(AbstractBulkServerGroupTask.class); | ||
|
||
@Autowired | ||
protected OortHelper oortHelper; | ||
|
||
@Autowired | ||
protected KatoService katoService; | ||
|
||
abstract void validateClusterStatus(Map<String, Object> operation); | ||
|
||
abstract String getClouddriverOperation(); | ||
|
||
@Override | ||
public long getBackoffPeriod() { | ||
return 10000; | ||
} | ||
|
||
@Override | ||
public long getTimeout() { | ||
return 10000; | ||
} | ||
|
||
@Override | ||
public TaskResult execute(Stage stage) { | ||
ServerGroupRequest request = (ServerGroupRequest) stage.mapTo(ServerGroupRequest.class); | ||
if (request.getServerGroupNames() == null || request.getServerGroupNames().isEmpty()) { | ||
throw new IllegalArgumentException("Server group names must be provided"); | ||
} | ||
|
||
Names names = Names.parseName(request.getServerGroupNames().get(0)); | ||
|
||
Map cluster = oortHelper.getCluster( | ||
names.getApp(), | ||
request.getCredentials(), | ||
names.getCluster(), | ||
request.getCloudProvider() | ||
).orElseThrow( | ||
() -> new IllegalArgumentException(String.format("No Cluster details found for %s", names.getCluster())) | ||
); | ||
|
||
List<Map> serverGroups = Optional.ofNullable((List<Map>) cluster.get("serverGroups")) | ||
.orElseThrow( | ||
() -> new IllegalArgumentException(String.format("No server groups found for cluster %s", names.getCluster())) | ||
); | ||
|
||
Location location = Optional.ofNullable(Location.region(request.getRegion())) | ||
.orElseThrow( | ||
() -> new IllegalArgumentException("A region is required for this operation") | ||
); | ||
|
||
List<TargetServerGroup> targetServerGroups = new ArrayList<>(); | ||
serverGroups.forEach( sg -> { | ||
TargetServerGroup tg = new TargetServerGroup(sg); | ||
if (tg.getLocation(location.getType()).equals(location) && request.getServerGroupNames().contains(tg.getName())) { | ||
targetServerGroups.add(tg); | ||
} | ||
}); | ||
|
||
LOGGER.info("Found target server groups {}", targetServerGroups); | ||
if (targetServerGroups.isEmpty()) { | ||
throw new TargetServerGroup.NotFoundException(); | ||
} | ||
|
||
List<Map<String, Map>> operations = new ArrayList<>(); | ||
targetServerGroups.forEach( targetServerGroup -> { | ||
Map<String , Map> tmp = new HashMap<>(); | ||
Map operation = targetServerGroup.toClouddriverOperationPayload(request.getCredentials()); | ||
|
||
validateClusterStatus(operation); | ||
tmp.put(getClouddriverOperation(), operation); | ||
operations.add(tmp); | ||
}); | ||
|
||
TaskId taskId = katoService.requestOperations(request.cloudProvider, operations).toBlocking().first(); | ||
|
||
Map<String, Object> result = new HashMap<>(); | ||
result.put("deploy.account.name", request.getCredentials()); | ||
result.put("kato.last.task.id", taskId); | ||
Map<String, List<String>> regionToServerGroupNames = new HashMap<>(); | ||
regionToServerGroupNames.put(request.getRegion(), targetServerGroups | ||
.stream() | ||
.map(TargetServerGroup::getName) | ||
.collect(Collectors.toList())); | ||
|
||
result.put("deploy.server.groups", regionToServerGroupNames); | ||
return new DefaultTaskResult(ExecutionStatus.SUCCEEDED, result); | ||
} | ||
|
||
protected Location getLocation(Map operation) { | ||
return Location.region((String) operation.get("region")); | ||
} | ||
|
||
private static class ServerGroupRequest { | ||
private String credentials; | ||
private String cloudProvider; | ||
private String region; | ||
private List<String> serverGroupNames; | ||
|
||
public String getCredentials() { | ||
return credentials; | ||
} | ||
|
||
public void setCredentials(String credentials) { | ||
this.credentials = credentials; | ||
} | ||
|
||
public String getCloudProvider() { | ||
return cloudProvider; | ||
} | ||
|
||
public void setCloudProvider(String cloudProvider) { | ||
this.cloudProvider = cloudProvider; | ||
} | ||
|
||
public String getRegion() { | ||
return region; | ||
} | ||
|
||
public void setRegion(String region) { | ||
this.region = region; | ||
} | ||
|
||
public List<String> getServerGroupNames() { | ||
return this.serverGroupNames; | ||
} | ||
|
||
public void setServerGroupNames(List<String> serverGroupNames) { | ||
this.serverGroupNames = serverGroupNames; | ||
} | ||
} | ||
} |
45 changes: 45 additions & 0 deletions
45
.../com/netflix/spinnaker/orca/clouddriver/tasks/servergroup/BulkDestroyServerGroupTask.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* Copyright 2017 Netflix, Inc. | ||
* | ||
* 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 com.netflix.spinnaker.orca.clouddriver.tasks.servergroup; | ||
|
||
import com.netflix.spinnaker.orca.RetryableTask; | ||
import com.netflix.spinnaker.orca.clouddriver.utils.TrafficGuard; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.stereotype.Component; | ||
|
||
import java.util.Map; | ||
|
||
import static com.netflix.spinnaker.orca.clouddriver.pipeline.servergroup.DestroyServerGroupStage.getPIPELINE_CONFIG_TYPE; | ||
|
||
@Component | ||
public class BulkDestroyServerGroupTask extends AbstractBulkServerGroupTask implements RetryableTask { | ||
@Autowired | ||
private TrafficGuard trafficGuard; | ||
|
||
@Override | ||
String getClouddriverOperation() { | ||
return getPIPELINE_CONFIG_TYPE(); | ||
} | ||
|
||
@Override | ||
void validateClusterStatus(Map<String, Object> operation) { | ||
trafficGuard.verifyTrafficRemoval((String) operation.get("serverGroupName"), | ||
getCredentials(operation), | ||
getLocation(operation), | ||
getCloudProvider(operation), "Destroying"); | ||
} | ||
} |
44 changes: 44 additions & 0 deletions
44
.../com/netflix/spinnaker/orca/clouddriver/tasks/servergroup/BulkDisableServerGroupTask.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* Copyright 2017 Netflix, Inc. | ||
* | ||
* 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 com.netflix.spinnaker.orca.clouddriver.tasks.servergroup; | ||
|
||
import com.netflix.spinnaker.orca.RetryableTask; | ||
import com.netflix.spinnaker.orca.clouddriver.utils.TrafficGuard; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.stereotype.Component; | ||
import java.util.Map; | ||
|
||
import static com.netflix.spinnaker.orca.clouddriver.pipeline.servergroup.DisableServerGroupStage.*; | ||
|
||
@Component | ||
public class BulkDisableServerGroupTask extends AbstractBulkServerGroupTask implements RetryableTask { | ||
@Autowired | ||
private TrafficGuard trafficGuard; | ||
|
||
@Override | ||
String getClouddriverOperation() { | ||
return getPIPELINE_CONFIG_TYPE(); | ||
} | ||
|
||
@Override | ||
void validateClusterStatus(Map<String, Object> operation) { | ||
trafficGuard.verifyTrafficRemoval((String) operation.get("serverGroupName"), | ||
getCredentials(operation), | ||
getLocation(operation), | ||
getCloudProvider(operation), "Disabling"); | ||
} | ||
} |
Oops, something went wrong.