case class FSGroupStrategyOptions(ranges: Optional[Vector[IDRange]] = Optional.Absent, rule: Optional[String] = Optional.Absent) extends Product with Serializable

FSGroupStrategyOptions defines the strategy type and options used to create the strategy.

ranges

ranges are the allowed ranges of fs groups. If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.

rule

rule is the strategy that will dictate what FSGroup is used in the SecurityContext.

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FSGroupStrategyOptions
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new FSGroupStrategyOptions(ranges: Optional[Vector[IDRange]] = Optional.Absent, rule: Optional[String] = Optional.Absent)

    ranges

    ranges are the allowed ranges of fs groups. If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.

    rule

    rule is the strategy that will dictate what FSGroup is used in the SecurityContext.

Value Members

  1. def getRanges: IO[K8sFailure, Vector[IDRange]]

    ranges are the allowed ranges of fs groups.

    ranges are the allowed ranges of fs groups. If you would like to force a single fs group then supply a single range with the same start and end. Required for MustRunAs.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  2. def getRule: IO[K8sFailure, String]

    rule is the strategy that will dictate what FSGroup is used in the SecurityContext.

    rule is the strategy that will dictate what FSGroup is used in the SecurityContext.

    If the field is not present, fails with com.coralogix.zio.k8s.client.UndefinedField.

  3. val ranges: Optional[Vector[IDRange]]
  4. val rule: Optional[String]