Class AbstractDockerRegistryWorkflow
java.lang.Object
io.micronaut.starter.feature.github.workflows.GitHubWorkflowFeature
io.micronaut.starter.feature.github.workflows.docker.AbstractDockerRegistryWorkflow
- All Implemented Interfaces:
io.micronaut.core.naming.Described,io.micronaut.core.naming.Named,io.micronaut.core.order.Ordered,Feature
- Direct Known Subclasses:
AbstractAzureContainerInstanceWorkflow,AbstractCloudRunWorkflow,AbstractOracleFunctionsWorkflow,DockerRegistryWorkflow,GraalVMDockerRegistryWorkflow
Abstract docker registry workflow.
- Since:
- 2.2
- Author:
- Pavol Gressa
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringstatic final Stringstatic final Stringstatic final StringFields inherited from interface io.micronaut.core.order.Ordered
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidapply(GeneratorContext generatorContext) Applies the feature by configuring build properties for Jib when using Maven.Returns a list of secrets required by the GitHub workflow.abstract StringgetWorkflowFileName(GeneratorContext generatorContext) Methods inherited from class io.micronaut.starter.feature.github.workflows.GitHubWorkflowFeature
getCategory, isPreviewMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.micronaut.core.naming.Described
getDescriptionMethods inherited from interface io.micronaut.projectgen.core.feature.Feature
getDescription, getFrameworkDocumentation, getName, getOrder, getThirdPartyDocumentation, getTitle, isCommunity, isVisible, processSelectedFeatures, supports
-
Field Details
-
DOCKER_USERNAME
- See Also:
-
DOCKER_PASSWORD
- See Also:
-
DOCKER_REPOSITORY_PATH
- See Also:
-
DOCKER_REGISTRY_URL
- See Also:
-
-
Constructor Details
-
AbstractDockerRegistryWorkflow
public AbstractDockerRegistryWorkflow()
-
-
Method Details
-
getSecrets
Description copied from class:GitHubWorkflowFeatureReturns a list of secrets required by the GitHub workflow.Subclasses may override this method to provide specific secrets needed for their workflow configuration.
- Overrides:
getSecretsin classGitHubWorkflowFeature- Returns:
- a list of
Secretinstances, or an empty list if none are required
-
apply
Applies the feature by configuring build properties for Jib when using Maven.- Parameters:
generatorContext- The context for project generation.
-
getWorkflowFileName
-