io.dekorate.openshift.annotation.OpenshiftApplication Maven / Gradle / Ivy
/**
* Copyright 2018 The original authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.dekorate.openshift.annotation;
import io.dekorate.kubernetes.annotation.Annotation;
import io.dekorate.kubernetes.annotation.AwsElasticBlockStoreVolume;
import io.dekorate.kubernetes.annotation.AzureDiskVolume;
import io.dekorate.kubernetes.annotation.AzureFileVolume;
import io.dekorate.kubernetes.annotation.Container;
import io.dekorate.kubernetes.annotation.GitRepoVolume;
import io.dekorate.kubernetes.annotation.ImagePullPolicy;
import io.dekorate.kubernetes.annotation.Label;
import io.dekorate.kubernetes.annotation.Mount;
import io.dekorate.kubernetes.annotation.PersistentVolumeClaimVolume;
import io.dekorate.kubernetes.annotation.Port;
import io.dekorate.kubernetes.annotation.Probe;
import io.dekorate.kubernetes.annotation.SecretVolume;
import io.dekorate.kubernetes.annotation.ServiceType;
import io.dekorate.kubernetes.annotation.ConfigMapVolume;
import io.dekorate.kubernetes.annotation.Env;
import io.dekorate.kubernetes.config.BaseConfig;
import io.sundr.builder.annotations.Adapter;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.Pojo;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Buildable(builderPackage = "io.dekorate.deps.kubernetes.api.builder")
@Pojo(name = "OpenshiftConfig", mutable = true, superClass = BaseConfig.class, relativePath = "../config", withStaticAdapterMethod = false, adapter = @Adapter(relativePath = "../adapter", withMapAdapterMethod = true))
@Target({ElementType.CONSTRUCTOR, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface OpenshiftApplication {
/**
* The name of the collection of componnet this component belongs to.
* This value will be use as:
* - labeling resources
* @return The specified group name.
*/
String partOf() default "";
/**
* The name of the application.
* This value will be used for naming Kubernetes resources like:
* - Deployment
* - Service
* and so on ...
* If no value is specified it will attempt to determine the name using the following rules:
* If its a maven/gradle project use the artifact id.
* Else if its a bazel project use the name.
* Else if the system property app.name is present it will be used.
* Else find the project root folder and use its name (root folder detection is done by moving to the parent folder until .git is found).
* @return The specified application name.
*/
String name() default "";
/**
* The version of the application.
* This value be used for things like:
* - The docker image tag.
* If no value specified it will attempt to determine the name using the following rules:
* @return The version.
*/
String version() default "";
/**
* The init containers.
* @return the init containers.
*/
Container[] initContainers() default {};
/**
* Custom labels to add to all resources.
* @return The labels.
*/
Label[] labels() default {};
/**
* Custom annotations to add to all resources.
* @return The annotations.
*/
Annotation[] annotations() default {};
/**
* Environment variables to add to all containers.
* @return The environment variables.
*/
Env[] envVars() default {};
/**
* Working directory.
* @return The working directory if specified, else empty string.
*/
String workingDir() default "";
/**
* The commands
* @return The commands.
*/
String[] command() default {};
/**
* The arguments
* @return The arguments.
*/
String[] arguments() default {};
/**
* The number of replicas to use.
* @return The number of replicas.
*/
int replicas() default 1;
/**
* The service account.
* @return The service account or empty string if not specified.
*/
String serviceAccount() default "";
/**
* The host under which the application is going to be exposed.
* @return The hostname.
*/
String host() default "";
/**
* The application ports.
*/
Port[] ports() default {};
/**
* The type of service that will be generated for the application.
*/
ServiceType serviceType() default ServiceType.ClusterIP;
PersistentVolumeClaimVolume[] pvcVolumes() default {};
SecretVolume[] secretVolumes() default {};
ConfigMapVolume[] configMapVolumes() default {};
GitRepoVolume[] gitRepoVolumes() default {};
AwsElasticBlockStoreVolume[] awsElasticBlockStoreVolumes() default {};
AzureDiskVolume[] azureDiskVolumes() default {};
AzureFileVolume[] azureFileVolumes() default {};
/**
* Mounts to add to all containers.
* @return The mounts.
*/
Mount[] mounts() default {};
/**
* Image pull policy.
* @return The image pull policy.
*/
ImagePullPolicy imagePullPolicy() default ImagePullPolicy.IfNotPresent;
/**
* The image pull secret
*/
String[] imagePullSecrets() default {};
/**
* The liveness probe.
* @return The probe.
*/
Probe livenessProbe() default @Probe();
/**
* The readiness probe.
* @return The probe.
*/
Probe readinessProbe() default @Probe();
/**
* The sidecars.
* @return the sidecar containers.
*/
Container[] sidecars() default {};
/**
* Controls whether the application should be exposed via Route
*/
boolean expose() default false;
/**
* Controls whether the generated {@link Service} will be headless.
* @return true if headless.
*/
boolean headless() default false;
/**
* Flag to trigger the registration of the deploy hook.
* It's generally preferable to use `-Ddekorate.deploy=true` instead of hardcoding this here.
* @return True for automatic registration of the build hook.
*/
boolean autoDeployEnabled() default false;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy