Initial commit

This commit is contained in:
Jon Ervine 2021-03-02 22:11:23 +08:00
parent 7f46a1cb0f
commit e2c161190d
2 changed files with 55 additions and 0 deletions

17
Dockerfile Normal file
View File

@ -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" ]

38
Jenkinsfile vendored Normal file
View File

@ -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
}
}
}