'update files with ansible'

This commit is contained in:
git 2023-10-16 13:13:58 +00:00
parent f69db06964
commit 1c54a8d8e7
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ RUN dnf update -y && \
update-ca-trust && \ update-ca-trust && \
dnf clean all dnf clean all
RUN curl -sLo sonarr.tar.gz https://download.sonarr.tv/v3/main/3.0.9.1549/Sonarr.main.3.0.9.1549.linux.tar.gz && \ RUN curl -sLo sonarr.tar.gz https://download.sonarr.tv/v3/main/3.0.10.1567/Sonarr.main.3.0.10.1567.linux.tar.gz && \
sleep 30 && \ sleep 30 && \
tar zxvf sonarr.tar.gz && \ tar zxvf sonarr.tar.gz && \
rm -rf sonarr.tar.gz && \ rm -rf sonarr.tar.gz && \

4
Jenkinsfile vendored
View File

@ -28,11 +28,11 @@ spec:
stage('Build with Kaniko') { stage('Build with Kaniko') {
git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-sonarr', credentialsId: 'jenkins2git' git url: 'ssh://git@git.ervine.org/jonny/x86_64-alpine-sonarr', credentialsId: 'jenkins2git'
container('kaniko') { container('kaniko') {
sh '/kaniko/executor --force -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/ubi/sonarr:v3.0.9.1549' sh '/kaniko/executor --force -f `pwd`/Dockerfile -c `pwd` --cache=false --destination=harbor.ervine.dev/public/x86_64/ubi/sonarr:v3.0.10.1567'
} }
} }
stage('Notify gchat') { stage('Notify gchat') {
googlechatnotification (url: 'https://chat.googleapis.com/v1/spaces/AAAA-nNKzdA/messages?key=AIzaSyDdI0hCZtE6vySjMm-WEfRq3CPzqKqqsHI&token=FySO2Zy2wfNJ7QKoqT9zy0uzNJF8bwj74ansor3BTu0%3D', message: "Sonarr 3.0.9.1549 on RHEL UBI has built") googlechatnotification (url: 'https://chat.googleapis.com/v1/spaces/AAAA-nNKzdA/messages?key=AIzaSyDdI0hCZtE6vySjMm-WEfRq3CPzqKqqsHI&token=FySO2Zy2wfNJ7QKoqT9zy0uzNJF8bwj74ansor3BTu0%3D', message: "Sonarr 3.0.10.1567 on RHEL UBI has built")
} }
} }
} }