Skip to content

Commit

Permalink
feat: add RuntimeType.STATEFUL
Browse files Browse the repository at this point in the history
  • Loading branch information
alii committed Sep 21, 2022
1 parent c53642c commit bd1fdb0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/rest/types/ignite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ export enum RuntimeType {
* Persistent deployments/containers will restart if they exit. They can also be started and stopped programmatically.
*/
PERSISTENT = 'persistent',

/**
* Stateful deployments/containers can only run one container at a time, and will have a persistent volume attached.
*/
STATEFUL = 'stateful',
}

/**
Expand Down

0 comments on commit bd1fdb0

Please sign in to comment.