Skip to content

Commit d2b7ddf

Browse files
committed
Fixed the issue with force update of bosh
Signed-off-by: João Pereira <[email protected]>
1 parent c133bc8 commit d2b7ddf

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

.github/workflows/tests-integration.yml

+11-13
Original file line numberDiff line numberDiff line change
@@ -232,20 +232,18 @@ jobs:
232232
jq -r .bosh.jumpbox_private_key metadata.json > /tmp/${env_name}.priv
233233
eval "$(bbl print-env --metadata-file metadata.json)"
234234
235-
if [[ -z $SHEPHERD_LEASE_ID ]]; then
236-
bosh -d cf manifest > /tmp/manifest.yml
237-
bosh interpolate /tmp/manifest.yml \
238-
-o cf-deployment/operations/use-internal-lookup-for-route-services.yml \
239-
-o cf-deployment/operations/add-persistent-isolation-segment-diego-cell.yml \
240-
-o .github/ops-files/use-latest-capi.yml \
241-
-o .github/ops-files/add-oidc-provider.yml \
242-
-o .github/ops-files/add-uaa-client-credentials.yml \
243-
-o .github/ops-files/diego-cell-instances.yml \
244-
-v client-secret="${{ secrets.CLIENT_SECRET }}" \
245-
> ./director.yml
235+
bosh -d cf manifest > /tmp/manifest.yml
236+
bosh interpolate /tmp/manifest.yml \
237+
-o cf-deployment/operations/use-internal-lookup-for-route-services.yml \
238+
-o cf-deployment/operations/add-persistent-isolation-segment-diego-cell.yml \
239+
-o .github/ops-files/use-latest-capi.yml \
240+
-o .github/ops-files/add-oidc-provider.yml \
241+
-o .github/ops-files/add-uaa-client-credentials.yml \
242+
-o .github/ops-files/diego-cell-instances.yml \
243+
-v client-secret="${{ secrets.CLIENT_SECRET }}" \
244+
> ./director.yml
246245
247-
bosh -d cf deploy director.yml -n
248-
fi
246+
bosh -d cf deploy director.yml -n
249247
echo "Deployed CAPI version:"
250248
bosh -d cf releases | grep capi
251249

0 commit comments

Comments
 (0)