diff --git a/.changeset/hot-hairs-appear.md b/.changeset/hot-hairs-appear.md new file mode 100644 index 00000000..e37d2f89 --- /dev/null +++ b/.changeset/hot-hairs-appear.md @@ -0,0 +1,5 @@ +--- +'@onehop/js': patch +--- + +Added stateful RuntimeType diff --git a/src/rest/types/ignite.ts b/src/rest/types/ignite.ts index 17fbe116..671a1ab8 100644 --- a/src/rest/types/ignite.ts +++ b/src/rest/types/ignite.ts @@ -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', } /**