| |
@@ -24,6 +24,12 @@
|
| |
PLUGINS=$(curl https://raw.githubusercontent.com/openshift/jenkins/master/2/contrib/openshift/base-plugins.txt | grep -v "#" |grep -v '^$' | sed 's/:.*/:latest/')
|
| |
PLUGINS=$(echo -e "$PLUGINS\n$(cat jenkins-plugins.txt)" | sort -u | tr '\n' ',')
|
| |
|
| |
+ # replace problematic plugins
|
| |
+ PLUGINS=$(echo $PLUGINS | sed 's/docker-commons:latest/docker-commons:1.16/')
|
| |
+ PLUGINS=$(echo $PLUGINS | sed 's/kubernetes:latest/kubernetes:1.19.3/')
|
| |
+ PLUGINS=$(echo $PLUGINS | sed 's/antisamy-markup-formatter:latest/antisamy-markup-formatter:1.6/')
|
| |
+
|
| |
+
|
| |
oc create configmap openshift-jenkins-login-plugin-config --from-literal Overall-Administer=view
|
| |
|
| |
oc new-app --file=jenkins-template.yml \
|
| |
Allow to set external git repository with c3i role definition. This
is improving testing and allows separation c3i from main code.