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

io.k8s.api.apps.v1.StatefulSetOrdinals Maven / Gradle / Ivy

There is a newer version: 1.30.4
Show newest version
package io.k8s.api.apps.v1;

import java.lang.Long;

/**
 * StatefulSetOrdinals describes the policy used for replica ordinal assignment in this StatefulSet.
 */
public class StatefulSetOrdinals {
  public Long start;

  /**
   * start is the number representing the first replica's index. It may be used to number replicas from an alternate index (eg: 1-indexed) over the default 0-indexed names, or to orchestrate progressive movement of replicas from one StatefulSet to another. If set, replica indices will be in the range:
   *   [.spec.ordinals.start, .spec.ordinals.start + .spec.replicas).
   * If unset, defaults to 0. Replica indices will be in the range:
   *   [0, .spec.replicas).
   */
  public StatefulSetOrdinals start(Long start) {
    this.start = start;
    return this;
  }

  public static StatefulSetOrdinals statefulSetOrdinals() {
    return new StatefulSetOrdinals();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy