Skip to content

Commit

Permalink
Merge pull request #865 from cloud-gov/platformcell8
Browse files Browse the repository at this point in the history
Make iso-seg count be controlled by credhub vars
  • Loading branch information
cweibel authored Jun 25, 2024
2 parents 56c0aed + 287464b commit c00c7b7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ci/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- task: diego-cell-iso-seg
file: cf-manifests/ci/create-diego-cell-iso-seg.yml
params:
NUMBER_OF_ISO_SEGS: 0 #((number_of_iso_segs_development))
NUMBER_OF_ISO_SEGS: ((number_of_iso_segs_development)) # Value in credhub
- put: cf-deployment-development
params: &deploy-params
manifest: cf-deployment/cf-deployment.yml
Expand Down Expand Up @@ -556,7 +556,7 @@ jobs:
- task: diego-cell-iso-seg
file: cf-manifests/ci/create-diego-cell-iso-seg.yml
params:
NUMBER_OF_ISO_SEGS: 0
NUMBER_OF_ISO_SEGS: ((number_of_iso_segs_staging)) # Value in credhub
- put: cf-deployment-staging
params:
<<: *deploy-params
Expand Down Expand Up @@ -1081,7 +1081,7 @@ jobs:
- task: diego-cell-iso-seg
file: cf-manifests/ci/create-diego-cell-iso-seg.yml
params:
NUMBER_OF_ISO_SEGS: 0
NUMBER_OF_ISO_SEGS: ((number_of_iso_segs_production)) # Value in credhub
- put: cf-deployment-production
params: &prod-deploy-params
<<: *deploy-params
Expand Down Expand Up @@ -1188,7 +1188,7 @@ jobs:
- task: diego-cell-iso-seg
file: cf-manifests/ci/create-diego-cell-iso-seg.yml
params:
NUMBER_OF_ISO_SEGS: 0
NUMBER_OF_ISO_SEGS: ((number_of_iso_segs_production)) # Value in credhub
- put: cf-deployment-production
params:
<<: *prod-deploy-params
Expand Down

0 comments on commit c00c7b7

Please sign in to comment.