Skip to content

Commit

Permalink
refactor(cf): Adopt artifact model in deploy stages (#6659)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkschneider authored Mar 8, 2019
1 parent 0eb634c commit de57adf
Show file tree
Hide file tree
Showing 25 changed files with 612 additions and 1,189 deletions.
5 changes: 1 addition & 4 deletions app/scripts/modules/cloudfoundry/src/cf.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,8 @@ import './logo/cf.logo.less';
import { CloudFoundryNoLoadBalancerModal } from './loadBalancer/configure/cloudFoundryNoLoadBalancerModal';
import 'cloudfoundry/pipeline/config/validation/instanceSize.validator';
import 'cloudfoundry/pipeline/config/validation/cfTargetImpedance.validator';
import 'cloudfoundry/pipeline/config/validation/validServiceParameterJson.validator';
import 'cloudfoundry/pipeline/config/validation/validateServiceRequiredField.validator';
import { CLOUD_FOUNDRY_CLONE_SERVER_GROUP_STAGE } from './pipeline/stages/cloneServerGroup/cloudfoundryCloneServerGroupStage.module';
import { CLOUD_FOUNDRY_DEPLOY_SERVICE_STAGE } from './pipeline/stages/deployService/cloudfoundryDeployServiceStage.module';
import './pipeline/stages/deployService/cloudfoundryDeployServiceStage.module';
import { CLOUD_FOUNDRY_DESTROY_ASG_STAGE } from './pipeline/stages/destroyAsg/cloudfoundryDestroyAsgStage.module';
import { CLOUD_FOUNDRY_DESTROY_SERVICE_STAGE } from './pipeline/stages/destroyService/cloudfoundryDestroyServiceStage.module';
import { CLOUD_FOUNDRY_DISABLE_ASG_STAGE } from './pipeline/stages/disableAsg/cloudfoundryDisableAsgStage.module';
Expand All @@ -51,7 +49,6 @@ export const CLOUD_FOUNDRY_MODULE = 'spinnaker.cloudfoundry';
module(CLOUD_FOUNDRY_MODULE, [
CLOUD_FOUNDRY_CLONE_SERVER_GROUP_STAGE,
CLOUD_FOUNDRY_DESTROY_SERVICE_STAGE,
CLOUD_FOUNDRY_DEPLOY_SERVICE_STAGE,
CLOUD_FOUNDRY_DESTROY_ASG_STAGE,
CLOUD_FOUNDRY_DISABLE_ASG_STAGE,
CLOUD_FOUNDRY_ENABLE_ASG_STAGE,
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import * as React from 'react';
import { ILoadBalancerModalProps, WizardModal, WizardPage, ReactModal, noop } from '@spinnaker/core';
import { ICloudFoundryLoadBalancerUpsertCommand } from 'cloudfoundry/domain/ICloudFoundryLoadBalancer';
import { NoLoadBalancerDetails } from 'cloudfoundry/loadBalancer/configure/noLoadBalancer';
import { CfDisclaimerPage } from 'cloudfoundry/common/wizard/sections/cfDisclaimer.cf';
import { IModalServiceInstance } from 'angular-ui-bootstrap';
import { $q } from 'ngimport';

Expand Down Expand Up @@ -77,13 +76,6 @@ export class CloudFoundryNoLoadBalancerModal extends React.Component<
order={nextIdx()}
render={({ innerRef }) => <NoLoadBalancerDetails ref={innerRef} />}
/>

<WizardPage
label="Disclaimer"
wizard={wizard}
order={nextIdx()}
render={({ innerRef }) => <CfDisclaimerPage ref={innerRef} />}
/>
</>
)}
/>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit de57adf

Please sign in to comment.