All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cdk8s.plus.RestartPolicy Maven / Gradle / Ivy

There is a newer version: 0.33.0
Show newest version
package org.cdk8s.plus;

/**
 * Restart policy for all containers within the pod.
 * 

* EXPERIMENTAL */ @javax.annotation.Generated(value = "jsii-pacmak/1.7.0 (build 179a3a5)", date = "2020-06-29T13:29:38.529Z") @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) @software.amazon.jsii.Jsii(module = org.cdk8s.plus.$Module.class, fqn = "cdk8s-plus.RestartPolicy") public enum RestartPolicy { /** * Always restart the pod after it exits. *

* EXPERIMENTAL */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) ALWAYS, /** * Only restart if the pod exits with a non-zero exit code. *

* EXPERIMENTAL */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) ON_FAILURE, /** * Never restart the pod. *

* EXPERIMENTAL */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) NEVER, }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy