Openshift 3 - 覆盖.s2i / bin文件 - 汇编&运行脚本

时间:2017-10-17 23:18:35

标签: openshift

我想澄清可以在项目仓库中的.s2i / bin目录中添加的可能脚本。

文档说,当您添加这些文件时,他们将在构建项目时覆盖具有相同名称的默认文件。例如,如果我将自己的“汇编”文件放在.s2i / bin目录中,默认的汇编文件也会运行或完全由我的脚本替换?如果我想要一些默认文件的行为?我是否必须将默认的“汇编”内容复制到我的文件中,以便两者都执行?

1 个答案:

答案 0 :(得分:0)

你需要打电话给原文"汇编"来自你自己的脚本。与此相似

#!/bin/bash -e
# The assemble script builds the application artifacts from a source and 
# places them into appropriate directories inside the image.

# Execute the default S2I script
source ${STI_SCRIPTS_PATH}/assemble

# You can write S2I scripts in any programming language, as long as the 
# scripts are executable inside the builder image.