Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
Removed unused commands and code for the uncompleted back up solution (
Browse files Browse the repository at this point in the history
  • Loading branch information
fieldju authored Jan 20, 2017
1 parent be83885 commit c2cf5b6
Show file tree
Hide file tree
Showing 10 changed files with 0 additions and 456 deletions.
2 changes: 0 additions & 2 deletions src/main/java/com/nike/cerberus/cli/CerberusRunner.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
import com.nike.cerberus.command.consul.CreateConsulConfigCommand;
import com.nike.cerberus.command.consul.CreateVaultAclCommand;
import com.nike.cerberus.command.core.CreateBaseCommand;
import com.nike.cerberus.command.core.EnableConfigReplicationCommand;
import com.nike.cerberus.command.core.PrintStackInfoCommand;
import com.nike.cerberus.command.core.UpdateStackCommand;
import com.nike.cerberus.command.core.UploadCertFilesCommand;
Expand Down Expand Up @@ -242,7 +241,6 @@ private void registerAllCommands() {
registerCommand(new CreateConsulClusterCommand());
registerCommand(new CreateVaultConfigCommand());
registerCommand(new CreateVaultClusterCommand());
registerCommand(new EnableConfigReplicationCommand());
registerCommand(new PublishDashboardCommand());
registerCommand(new InitVaultClusterCommand());
registerCommand(new UnsealVaultClusterCommand());
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ public class Environment {

private String configKeyId;

private String replicationBucketName;

/**
* Is the environment configured for continuous delivery
*/
Expand Down Expand Up @@ -118,13 +116,4 @@ public Environment setCd(boolean cd) {
isCd = cd;
return this;
}

public String getReplicationBucketName() {
return replicationBucketName;
}

public Environment setReplicationBucketName(String replicationBucketName) {
this.replicationBucketName = replicationBucketName;
return this;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ public enum StackName {
GATEWAY("gateway"),
@Deprecated
LAMBDA("lambda"),
@Deprecated
RDSBACKUP("rdsbackup"),
CLOUD_FRONT_IP_SYNCHRONIZER("cloud-front-ip-synchronizer");

private final String name;
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit c2cf5b6

Please sign in to comment.