forked from fabric8io/fabric8-maven-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix fabric8io#825 : More flexible S2I binary build data format
- Loading branch information
1 parent
2ccfce1
commit 9335bba
Showing
19 changed files
with
328 additions
and
87 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
core/src/main/java/io/fabric8/maven/core/service/BinaryInputArchiveBuilder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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 | ||
* <p/> | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* <p/> | ||
* 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.fabric8.maven.core.service; | ||
|
||
import io.fabric8.maven.docker.config.ImageConfiguration; | ||
import io.fabric8.maven.docker.service.ServiceHub; | ||
|
||
import java.io.File; | ||
|
||
public interface BinaryInputArchiveBuilder { | ||
void createBinaryInput(ServiceHub hub, File targetDirectory, ImageConfiguration imageConfiguration) throws Fabric8ServiceException; | ||
File getBinaryInputTar(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
89 changes: 89 additions & 0 deletions
89
core/src/main/java/io/fabric8/maven/core/service/DefaultBinaryInputArchiveBuilder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
/** | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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 | ||
* <p/> | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* <p/> | ||
* 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.fabric8.maven.core.service; | ||
|
||
import io.fabric8.maven.core.util.IoUtil; | ||
import io.fabric8.maven.docker.assembly.ArchiverCustomizer; | ||
import io.fabric8.maven.docker.config.ImageConfiguration; | ||
import io.fabric8.maven.docker.service.ServiceHub; | ||
import org.apache.maven.plugin.MojoExecutionException; | ||
import org.codehaus.plexus.archiver.tar.TarArchiver; | ||
|
||
import java.io.File; | ||
import java.io.FileWriter; | ||
import java.io.IOException; | ||
import java.io.PrintWriter; | ||
import java.util.Map; | ||
|
||
public class DefaultBinaryInputArchiveBuilder implements BinaryInputArchiveBuilder { | ||
|
||
private BuildService.BuildServiceConfig config; | ||
private File binaryInputTar = null; | ||
|
||
public DefaultBinaryInputArchiveBuilder(BuildService.BuildServiceConfig config) { | ||
this.config = config; | ||
} | ||
|
||
@Override | ||
public void createBinaryInput(ServiceHub hub, File targetDir, ImageConfiguration imageConfiguration) throws Fabric8ServiceException { | ||
// Adding S2I artifacts such as environment variables in S2I mode | ||
ArchiverCustomizer customizer = getS2ICustomizer(imageConfiguration); | ||
|
||
try { | ||
// Create tar file with Docker archive | ||
if (customizer != null) { | ||
this.binaryInputTar = hub.getArchiveService().createDockerBuildArchive(imageConfiguration, config.getDockerMojoParameters(), customizer); | ||
} else { | ||
this.binaryInputTar = hub.getArchiveService().createDockerBuildArchive(imageConfiguration, config.getDockerMojoParameters()); | ||
} | ||
} catch (MojoExecutionException e) { | ||
throw new Fabric8ServiceException("Unable to create the build archive", e); | ||
} | ||
} | ||
|
||
private ArchiverCustomizer getS2ICustomizer(ImageConfiguration imageConfiguration) throws Fabric8ServiceException { | ||
try { | ||
if (imageConfiguration.getBuildConfiguration() != null && imageConfiguration.getBuildConfiguration().getEnv() != null) { | ||
String fileName = IoUtil.sanitizeFileName("s2i-env-" + imageConfiguration.getName()); | ||
final File environmentFile = new File(config.getBuildDirectory(), fileName); | ||
|
||
try (PrintWriter out = new PrintWriter(new FileWriter(environmentFile))) { | ||
for (Map.Entry<String, String> e : imageConfiguration.getBuildConfiguration().getEnv().entrySet()) { | ||
out.println(e.getKey() + "=" + e.getValue()); | ||
} | ||
} | ||
|
||
return new ArchiverCustomizer() { | ||
@Override | ||
public TarArchiver customize(TarArchiver tarArchiver) throws IOException { | ||
tarArchiver.addFile(environmentFile, ".s2i/environment"); | ||
return tarArchiver; | ||
} | ||
}; | ||
} else { | ||
return null; | ||
} | ||
} catch (IOException e) { | ||
throw new Fabric8ServiceException("Unable to add environment variables to the S2I build archive", e); | ||
} | ||
} | ||
|
||
public File getBinaryInputTar() { | ||
return binaryInputTar; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.