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

com.github.shoothzj.javatool.util.StatefulSetUtil Maven / Gradle / Ivy

There is a newer version: 3.1.15
Show newest version
package com.github.shoothzj.javatool.util;

import lombok.extern.slf4j.Slf4j;

/**
 * @author hezhangjian
 */
@Slf4j
public class StatefulSetUtil {

    /**
     * @return 获取当前节点,是statefulSet的第几个节点
     */
    public static int getStatefulSequence() {
        String hostName = EnvUtil.getHostName();
        String[] split = hostName.split("-");
        return Integer.parseInt(split[split.length - 1]);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy