From e2c161190d27b73ff2b1861c37a3da5bb1bf3c17 Mon Sep 17 00:00:00 2001 From: Jon Ervine Date: Tue, 2 Mar 2021 22:11:23 +0800 Subject: [PATCH] Initial commit --- Dockerfile | 17 +++++++++++++++++ Jenkinsfile | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 Dockerfile create mode 100644 Jenkinsfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..682340f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +# Locations - set globally to be used across stages +# Final container(s) +FROM centos:8 + +ENV LANG en_US.UTF-8 +ENV LANGUAGE en_US:en +ENV LC_ALL en_US.UTF-8 + +USER root + +# Install runtime requirements +RUN dnf -y python3 gcc python3-pip && \ + /usr/bin/python3 -m venv extra-modules /var/lib/awx/my-venv/extra-modules + +VOLUME /var/lib/awx/my-venv + +CMD [ "/var/lib/awx/my-venv/extra-modules/bin/pip3", "install", "-r", "/tmp/extra-modules/requirements/txt" ] diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..29e1ed6 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,38 @@ +podTemplate(yaml: """ +kind: Pod +spec: + containers: + - name: kaniko + image: gcr.io/kaniko-project/executor:debug-539ddefcae3fd6b411a95982a830d987f4214251 + imagePullPolicy: Always + command: + - /busybox/cat + tty: true + volumeMounts: + - name: jenkins-docker-cfg + mountPath: /kaniko/.docker + volumes: + - name: jenkins-docker-cfg + projected: + sources: + - secret: + name: regcred + items: + - key: .dockerconfigjson + path: config.json +""" + ) { + + node(POD_LABEL) { + stage('Build with Kaniko') { + git url: 'ssh://git@git.ervine.org/jonny/x86_64-centos-awx-init.git', credentialsId: 'jenkins-to-git' + container('kaniko') { + sh '/kaniko/executor -f `pwd`/Dockerfile -c `pwd` --cache=true --destination=harbor.ervine.dev/public/x86_64/centos/awx-init:15.0.0' + } + } + stage('Notify gchat') { + hangoutsNotify message: "AWX init container on CentOS 8 has built",token: "A2ET831pVslqXTqAx6ycu573r",threadByJob: false + } + } +} +