Skip to content
This repository has been archived by the owner on Oct 28, 2020. It is now read-only.

Purged event means application is undeployed #123

Merged
merged 1 commit into from
May 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## UNRELEASED

### BUG FIXES

* Emit a persistent event on deployment purge ([GH-402](https://github.com/ystia/yorc/issues/402))


## 3.2.0-RC1 (May 10, 2019)

## 3.2.0-M5 (April 19, 2019)
Expand Down Expand Up @@ -206,7 +211,7 @@ This release brings a tech preview support of jobs scheduling. It allows to desi

In this release we mainly focused on the integration with Slurm for supporting this feature (but we are also working on Kubernetes for the next release :smile:). Bellow are new supported TOSCA types and implementations:

* SlurmJobs: will lead to issuing a srun command with a given executable file.
* SlurmJobs: will lead to issuing a srun command with a given executable file.
* SlurmBatch: will lead to issuing a sbatch command with a given batch file and associated executables
* Singularity integration: allows to execute a Singularity container instead of an executable file.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -801,6 +801,7 @@ protected static DeploymentStatus getDeploymentStatusFromString(String state) {
deploymentStatus = DeploymentStatus.DEPLOYED;
break;
case "UNDEPLOYED":
case "PURGED":
deploymentStatus = DeploymentStatus.UNDEPLOYED;
break;
case "DEPLOYMENT_IN_PROGRESS":
Expand Down