You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a korifi user I want to be able to delete environment variables via the manifest So that I can use the same manifest as with cf-for-vms
Acceptance Criteria
GIVEN an application named "node" that has the environment variable test set to value (via manifest or via cf set-env) WHEN I re-push the same app using a manifest that sets test to nil (see below) AND I run cf env node THEN I should see that there is no environment variable called test in the response
Here's an example manifest to clear the test env var:
applications:
- name: nodeenv:
test: ~
Dev Notes
This will require several changes:
The field type for env will need to support nil values
The nil value will need to be passed through to AppRepo.CreateOrPatchAppEnvVars()
AppRepo.CreateOrPatchAppEnvVars() will need to delete any environment variable that was set to nil
The text was updated successfully, but these errors were encountered:
Blockers/Dependencies
No response
Background
As a korifi user
I want to be able to delete environment variables via the manifest
So that I can use the same manifest as with cf-for-vms
Acceptance Criteria
GIVEN an application named "node" that has the environment variable
test
set tovalue
(via manifest or viacf set-env
)WHEN I re-push the same app using a manifest that sets
test
tonil
(see below)AND I run
cf env node
THEN I should see that there is no environment variable called
test
in the responseHere's an example manifest to clear the
test
env var:Dev Notes
This will require several changes:
env
will need to support nil valuesAppRepo.CreateOrPatchAppEnvVars()
AppRepo.CreateOrPatchAppEnvVars()
will need to delete any environment variable that was set to nilThe text was updated successfully, but these errors were encountered: