We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We can't provide a custom image info configuration using the Configurator class:
public class ApplyImageInfoConfigurator extends Configurator<ImageConfigurationFluent<?>> { @Override public void visit(ImageConfigurationFluent<?> image) { // ... } }
But it works when using ConfigurationSupplier:
public class ApplyImageInfoConfigurationSupplier extends ConfigurationSupplier<ImageConfiguration> { public ApplyImageInfoConfigurationSupplier(ContainerImageInfoBuildItem image, String defaultRegistry) { super(create(image, defaultRegistry)); } private static ImageConfigurationBuilder create(ContainerImageInfoBuildItem image, String defaultRegistry) { ImageConfigurationBuilder builder = new ImageConfigurationBuilder(); // .. return builder; } @Override public boolean isExplicit() { return true; } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We can't provide a custom image info configuration using the Configurator class:
But it works when using ConfigurationSupplier:
The text was updated successfully, but these errors were encountered: