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

io.ap4k.testing.config.KubernetesIntegrationTestConfig Maven / Gradle / Ivy

The newest version!
package io.ap4k.testing.config;

import io.sundr.builder.annotations.Buildable;

@Buildable(builderPackage = "io.ap4k.deps.kubernetes.api.builder") public class KubernetesIntegrationTestConfig{

    private boolean deployEnabled = true;
    private boolean buildEnabled = true;
    private long readinessTimeout = 300000;

    public KubernetesIntegrationTestConfig(){
    }
    public KubernetesIntegrationTestConfig(boolean deployEnabled,boolean buildEnabled,long readinessTimeout){
            this.deployEnabled = deployEnabled;
            this.buildEnabled = buildEnabled;
            this.readinessTimeout = readinessTimeout;
    }

    public boolean isDeployEnabled(){
            return this.deployEnabled;
    }

    public boolean isBuildEnabled(){
            return this.buildEnabled;
    }

    public long getReadinessTimeout(){
            return this.readinessTimeout;
    }




}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy