Add 'build-faymii.jenkins'
This commit is contained in:
parent
43ba03a43a
commit
7747d4344f
94
build-faymii.jenkins
Normal file
94
build-faymii.jenkins
Normal file
@ -0,0 +1,94 @@
|
||||
def label = "kaniko-${UUID.randomUUID().toString()}"
|
||||
|
||||
podTemplate(
|
||||
label: label,
|
||||
name: "kaniko",
|
||||
containers: [
|
||||
containerTemplate(
|
||||
name: "kaniko",
|
||||
image: "gcr.io/kaniko-project/executor:debug",
|
||||
alwaysPullImage: true,
|
||||
ttyEnabled: true,
|
||||
command: "/busybox/cat")
|
||||
],
|
||||
) {
|
||||
node (label) {
|
||||
def workspace = pwd()
|
||||
stage("Clone Files") {
|
||||
sh """
|
||||
git clone https://github.com/RaymiiOrg/ssl-decoder.git
|
||||
git clone https://github.com/RaymiiOrg/certificate-expiry-monitor.git
|
||||
"""
|
||||
}
|
||||
container ("kaniko") {
|
||||
stage("Kaniko Build & Push") {
|
||||
def CE = """
|
||||
<?php
|
||||
\$version = 1.4;
|
||||
\$title = "Certificate Expiry Monitor";
|
||||
\$current_folder = get_current_folder();
|
||||
\$timeout = 2;
|
||||
|
||||
date_default_timezone_set('UTC');
|
||||
ini_set('default_socket_timeout', 2);
|
||||
|
||||
\$random_blurp = rand(1000,99999);
|
||||
\$current_domain = "test-chamber-13.lan";
|
||||
\$current_link = \$current_domain;
|
||||
|
||||
\$pre_check_file = '/cert-monitor/pre_checks.json';
|
||||
\$check_file = '/cert-monitor/checks.json';
|
||||
\$deleted_check_file = '/cert-monitor/deleted_checks.json';
|
||||
"""
|
||||
def AC = """
|
||||
LoadModule headers_module /usr/lib/apache2/modules/mod_headers.so
|
||||
LoadModule vhost_alias_module /usr/lib/apache2/modules/mod_vhost_alias.so
|
||||
|
||||
<VirtualHost _default_:80>
|
||||
# Compression configuration
|
||||
SetOutputFilter DEFLATE
|
||||
BrowserMatch ^Mozilla/4 gzip-only-text/html
|
||||
BrowserMatch ^Mozilla/4\\.0[678] no-gzip
|
||||
BrowserMatch \\bMSIE !no-gzip !gzip-only-text/html
|
||||
SetEnvIfNoCase Request_URI \\.(?:gif|jpe?g|png)\$ no-gzip dont-vary
|
||||
SetEnvIfNoCase Request_URI \\.(?:exe|t?gz|zip|bz2|sit|rar)\$ no-gzip dont-vary
|
||||
SetEnvIfNoCase Request_URI \\.(?:avi|mov|mp3|mp4|rm|flv|swf|mp?g)\$ no-gzip dont-vary
|
||||
SetEnvIfNoCase Request_URI \\.pdf\$ no-gzip dont-vary
|
||||
|
||||
DocumentRoot "/var/www/html"
|
||||
<Directory "/var/www/html">
|
||||
Require all granted
|
||||
Options Indexes MultiViews FollowSymLinks
|
||||
AllowOverride All
|
||||
IndexIgnore fancy-index
|
||||
</Directory>
|
||||
</VirtualHost>
|
||||
"""
|
||||
def DF = """
|
||||
FROM php:7-apache
|
||||
|
||||
RUN apt-get update && \\
|
||||
apt-get install -y libicu-dev python2 python-netaddr libcurl4-openssl-dev libonig-dev libxml2-dev && \\
|
||||
docker-php-ext-install intl bcmath curl mbstring xml && \\
|
||||
mkdir -p /var/www/html/ssl-decoder /var/www/html/certificate-expiry-monitor /cert-monitor
|
||||
|
||||
COPY linux-webserver.conf /etc/apache2/sites-enabled/linux-webserver.conf
|
||||
COPY ssl-decoder /var/www/html/ssl-decoder
|
||||
COPY certificate-expiry-monitor /var/www/html/certificate-expiry-monitor
|
||||
COPY variables.php /var/www/html/certificate-expiry-monitor/functions/variables.php
|
||||
|
||||
RUN echo '{}' > /var/www/certificate-expiry-monitor-db/pre_checks.json && \
|
||||
echo '{}' > /var/www/certificate-expiry-monitor-db/checks.json && \
|
||||
echo '{}' > /var/www/certificate-expiry-monitor-db/deleted_checks.json && \
|
||||
chown -R 33:33 /var/www/html/* /cert-monitor && \\
|
||||
sed -i '18s/^.*$/error_reporting(E_ERROR | E_PARSE);/' /var/www/html/ssl-decoder/index.php
|
||||
"""
|
||||
writeFile file: workspace + '/linux-webserver.conf', text: AC
|
||||
writeFile file: workspace + '/variables.php', text: CE
|
||||
writeFile file: workspace + '/Dockerfile', text: DF
|
||||
|
||||
sh '/kaniko/executor --insecure --skip-tls-verify --context "' + workspace + '" -f "' + workspace + '/Dockerfile" --destination registry.test-chamber-13.lan:5000/raymii:latest'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user