Compare commits
25 Commits
argo-workf
...
6bfcbb1c96
Author | SHA1 | Date | |
---|---|---|---|
6bfcbb1c96 | |||
7072671564 | |||
a2c2e39a1b | |||
55eeec730d | |||
e6c9675abc | |||
ebf713f75f | |||
13f098fc7c | |||
8cf8a92f8d | |||
571a45d3de | |||
560090319a | |||
cefb8eba4d | |||
1e54ba614a | |||
7469609600 | |||
b7a1fcfe49 | |||
a9743ecfbe | |||
76f33f50f5 | |||
203a81573d | |||
383e906102 | |||
e7330f07ee | |||
c996be5953 | |||
bf60011948 | |||
82d5962020 | |||
1254b036f5 | |||
6d84bf694e | |||
c2df9d136e |
70
.woodpecker/build.yaml
Normal file
70
.woodpecker/build.yaml
Normal file
@ -0,0 +1,70 @@
|
|||||||
|
when:
|
||||||
|
- event: push
|
||||||
|
branch: woodpecker
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: code-tests
|
||||||
|
image: python:3.11.7-alpine
|
||||||
|
commands:
|
||||||
|
- cd api
|
||||||
|
- python3 -m venv env
|
||||||
|
- source env/bin/activate
|
||||||
|
- pip install -r requirements.txt pytest
|
||||||
|
- python3 -m pytest --junit-xml=pytest_junit.xml
|
||||||
|
|
||||||
|
- name: build-and-push
|
||||||
|
image: marcin00.azurecr.io/azure-cli-docker:slim-bookworm
|
||||||
|
environment:
|
||||||
|
ACR_NAME: marcin00
|
||||||
|
CLIENT_ID: c302726f-fafb-4143-94c1-67a70975574a
|
||||||
|
commands:
|
||||||
|
- dockerd &
|
||||||
|
- export DOCKER_IMAGE=marcin00.azurecr.io/user-microservice:${CI_COMMIT_SHA}
|
||||||
|
- docker build -t $DOCKER_IMAGE --build-arg APP_VERSION=${CI_COMMIT_SHA} --build-arg BUILD_DATE=$(date -u +"%Y-%m-%dT%H:%M:%SZ") .
|
||||||
|
- az login --identity --client-id $CLIENT_ID
|
||||||
|
- az acr login --name $ACR_NAME
|
||||||
|
- docker push $DOCKER_IMAGE
|
||||||
|
backend_options:
|
||||||
|
kubernetes:
|
||||||
|
annotations:
|
||||||
|
io.kubernetes.cri-o.userns-mode: "auto:size=65536"
|
||||||
|
runtimeClassName: sysbox-runc
|
||||||
|
|
||||||
|
- name: gitops-commit
|
||||||
|
image: alpine/git
|
||||||
|
environment:
|
||||||
|
DEPLOY_REPO: ssh://git@srv22.mikr.us:20343/pikram/user-microservice-deploy.git
|
||||||
|
GITEA_DEPLOY_KEY:
|
||||||
|
from_secret: gitea-deploy-key
|
||||||
|
GITEA_KNOWN_HOST:
|
||||||
|
from_secret: gitea-known-host
|
||||||
|
commands:
|
||||||
|
- mkdir -p ~/.ssh
|
||||||
|
|
||||||
|
- echo "$GITEA_KNOWN_HOST" >> ~/.ssh/known_hosts
|
||||||
|
- chmod 644 ~/.ssh/known_hosts
|
||||||
|
|
||||||
|
- echo "$GITEA_DEPLOY_KEY" > ~/.ssh/id_rsa
|
||||||
|
- chmod 600 ~/.ssh/id_rsa
|
||||||
|
|
||||||
|
- git config --global user.name "woodpecker[bot]"
|
||||||
|
- git config --global user.email "woodpecker@marcin00.pl"
|
||||||
|
|
||||||
|
- git clone $DEPLOY_REPO --branch woodpecker-deploy
|
||||||
|
- cd user-microservice-deploy
|
||||||
|
|
||||||
|
- |
|
||||||
|
awk -v commit="$CI_COMMIT_SHA" '
|
||||||
|
$0 ~ /name:[[:space:]]*api/ { in_api_container = 1; print; next }
|
||||||
|
in_api_container && $0 ~ /^[[:space:]]*image:[[:space:]]*/ {
|
||||||
|
sub(/:[^:[:space:]]+$/, ":" commit)
|
||||||
|
in_api_container = 0
|
||||||
|
print
|
||||||
|
next
|
||||||
|
}
|
||||||
|
{ print }
|
||||||
|
' deploy.yaml > deploy.tmp && mv deploy.tmp deploy.yaml
|
||||||
|
|
||||||
|
- git add deploy.yaml
|
||||||
|
- 'git diff-index --quiet HEAD || git commit -m "WOODPECKER: Changed deployed version to $CI_COMMIT_SHA"'
|
||||||
|
- git push origin woodpecker-deploy
|
15
Dockerfile
15
Dockerfile
@ -1,5 +1,18 @@
|
|||||||
FROM python:3.11.7-slim-bookworm
|
FROM python:3.11.7-alpine
|
||||||
|
|
||||||
|
# Wersja i data builda jako build-arg
|
||||||
|
ARG APP_VERSION=unknown
|
||||||
|
ARG BUILD_DATE=unknown
|
||||||
|
|
||||||
|
# Ustawiamy zmienne w ENV, by były dostępne w kontenerze
|
||||||
|
ENV APP_VERSION=$APP_VERSION
|
||||||
|
ENV BUILD_DATE=$BUILD_DATE
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY api .
|
COPY api .
|
||||||
|
|
||||||
|
RUN apk add --no-cache curl
|
||||||
RUN pip install -r requirements.txt
|
RUN pip install -r requirements.txt
|
||||||
|
|
||||||
CMD python3 app.py
|
CMD python3 app.py
|
||||||
|
72
Jenkinsfile
vendored
72
Jenkinsfile
vendored
@ -1,72 +0,0 @@
|
|||||||
pipeline {
|
|
||||||
agent any
|
|
||||||
environment {
|
|
||||||
DOCKER_REGISTRY_URL = 'marcin00.azurecr.io'
|
|
||||||
DOCKER_IMAGE = "${DOCKER_REGISTRY_URL}/user-microservice:${GIT_COMMIT}"
|
|
||||||
ACR_NAME = 'marcin00'
|
|
||||||
}
|
|
||||||
stages {
|
|
||||||
stage('Checkout') {
|
|
||||||
steps {
|
|
||||||
checkout scm
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Test python app') {
|
|
||||||
steps {
|
|
||||||
script {
|
|
||||||
dir('api') {
|
|
||||||
sh '''
|
|
||||||
python3 -m venv env
|
|
||||||
source env/bin/activate
|
|
||||||
pip install -r requirements.txt pytest
|
|
||||||
python3 -m pytest --junit-xml=pytest_junit.xml
|
|
||||||
'''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
post {
|
|
||||||
always {
|
|
||||||
junit testResults: '**/*pytest_junit.xml'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Build & test docker image') {
|
|
||||||
steps {
|
|
||||||
script {
|
|
||||||
appImage = docker.build("${DOCKER_IMAGE}")
|
|
||||||
|
|
||||||
sh label: 'Install dgoss', script: '''
|
|
||||||
curl -s -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o goss
|
|
||||||
curl -s -L https://github.com/aelsabbahy/goss/releases/latest/download/dgoss -o dgoss
|
|
||||||
chmod +rx *goss
|
|
||||||
'''
|
|
||||||
|
|
||||||
withEnv(['GOSS_OPTS=-f junit', 'GOSS_PATH=./goss', 'GOSS_SLEEP=3', 'SQLALCHEMY_DATABASE_URI=sqlite:///:memory:']) {
|
|
||||||
sh label: 'run image tests', script: './dgoss run -e SQLALCHEMY_DATABASE_URI=sqlite:///:memory: ${DOCKER_IMAGE} > goss_junit.xml'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
post {
|
|
||||||
always {
|
|
||||||
junit testResults: '**/*goss_junit.xml'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('Deploy') {
|
|
||||||
steps {
|
|
||||||
script {
|
|
||||||
sh '''
|
|
||||||
az login --identity
|
|
||||||
az acr login --name ${ACR_NAME}
|
|
||||||
docker push ${DOCKER_IMAGE}
|
|
||||||
'''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
post {
|
|
||||||
cleanup {
|
|
||||||
script { cleanWs() }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
54
deployment_timer.sh
Executable file
54
deployment_timer.sh
Executable file
@ -0,0 +1,54 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# === KONFIGURACJA ===
|
||||||
|
APP_URL="https://user-microservice.marcin00.pl/version"
|
||||||
|
MARKER_FILE="version_marker.txt"
|
||||||
|
OUTPUT_FILE="deployment_times.csv"
|
||||||
|
CHECK_INTERVAL=1 # sekundy
|
||||||
|
|
||||||
|
# === POBRANIE AKTUALNEJ WERSJI APLIKACJI ===
|
||||||
|
echo "[INFO] Pobieranie aktualnej wersji z /version..."
|
||||||
|
OLD_VERSION=$(curl -s "$APP_URL" | jq -r '.version')
|
||||||
|
|
||||||
|
if [[ -z "$OLD_VERSION" ]]; then
|
||||||
|
echo "[ERROR] Nie udało się pobrać aktualnej wersji aplikacji."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "[INFO] Aktualna wersja: $OLD_VERSION"
|
||||||
|
|
||||||
|
# === Modyfikacja pliku, commit i push ===
|
||||||
|
TIMESTAMP=$(date +%s)
|
||||||
|
echo "$TIMESTAMP" > "$MARKER_FILE"
|
||||||
|
|
||||||
|
git add "$MARKER_FILE"
|
||||||
|
git commit -m "Automatyczna zmiana: $TIMESTAMP"
|
||||||
|
START_TIME=$(date +%s)
|
||||||
|
|
||||||
|
echo "[INFO] Wykonuję git push..."
|
||||||
|
git push
|
||||||
|
|
||||||
|
if [[ $? -ne 0 ]]; then
|
||||||
|
echo "[ERROR] Push nie powiódł się."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "[INFO] Oczekiwanie na wdrożenie nowej wersji..."
|
||||||
|
|
||||||
|
# === Odpytywanie endpointa /version ===
|
||||||
|
while true; do
|
||||||
|
sleep $CHECK_INTERVAL
|
||||||
|
NEW_VERSION=$(curl -s "$APP_URL" | jq -r '.version')
|
||||||
|
|
||||||
|
if [[ "$NEW_VERSION" != "$OLD_VERSION" ]]; then
|
||||||
|
END_TIME=$(date +%s)
|
||||||
|
DURATION=$((END_TIME - START_TIME))
|
||||||
|
echo "[INFO] Nowa wersja wdrożona: $NEW_VERSION"
|
||||||
|
echo "[INFO] Czas wdrożenia: $DURATION sekund"
|
||||||
|
|
||||||
|
echo "$START_TIME,$END_TIME,$DURATION,$OLD_VERSION,$NEW_VERSION" >> "$OUTPUT_FILE"
|
||||||
|
break
|
||||||
|
else
|
||||||
|
echo "[WAIT] Czekam... ($NEW_VERSION)"
|
||||||
|
fi
|
||||||
|
done
|
@ -1,8 +0,0 @@
|
|||||||
port:
|
|
||||||
tcp:80:
|
|
||||||
listening: true
|
|
||||||
ip:
|
|
||||||
- 0.0.0.0
|
|
||||||
process:
|
|
||||||
python3:
|
|
||||||
running: true
|
|
1
version_marker.txt
Normal file
1
version_marker.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
1753539316
|
Reference in New Issue
Block a user