Merge branch 'main' into change-deploy
This commit is contained in:
@@ -1,31 +0,0 @@
|
|||||||
name: 'notify'
|
|
||||||
description: 'notify'
|
|
||||||
|
|
||||||
inputs:
|
|
||||||
result:
|
|
||||||
required: false
|
|
||||||
default: "failure"
|
|
||||||
type: string
|
|
||||||
name:
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
default: build
|
|
||||||
secrets:
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
runs:
|
|
||||||
using: 'composite'
|
|
||||||
steps:
|
|
||||||
- uses: dosymep/vk-teams-action@v1.0.0
|
|
||||||
env:
|
|
||||||
ICONS: '{"success":"✅","failure":"❌","canceled":"🤦","started":"⚠️"}'
|
|
||||||
with:
|
|
||||||
token: ${{ fromJSON(inputs.secrets).VK_TEAMS_BOT_TOKEN }}
|
|
||||||
to: ${{ fromJSON(inputs.secrets).VK_TEAMS_CHAT_ID }}
|
|
||||||
format: MarkdownV2
|
|
||||||
message: |
|
|
||||||
${{ github.repository }} \[${{inputs.name}}\]\(${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_number }}\) was ${{ inputs.result }} by ${{ github.event.sender.login }} ${{ fromJson(env.ICONS)[inputs.result] }}
|
|
||||||
|
|
||||||
60
.gitea/actions/vk-notify/action.yaml
Normal file
60
.gitea/actions/vk-notify/action.yaml
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
name: 'notify'
|
||||||
|
description: 'Send VK Teams notification'
|
||||||
|
|
||||||
|
inputs:
|
||||||
|
result:
|
||||||
|
required: false
|
||||||
|
default: "failure"
|
||||||
|
type: string
|
||||||
|
name:
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
default: build
|
||||||
|
|
||||||
|
runs:
|
||||||
|
using: 'composite'
|
||||||
|
steps:
|
||||||
|
- name: Resolve token/from env if missing
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
if [ -z "${{ inputs.token }}" ] && [ -n "${VK_TEAMS_BOT_TOKEN}" ]; then
|
||||||
|
echo "token=${VK_TEAMS_BOT_TOKEN}" >> $GITHUB_ENV
|
||||||
|
fi
|
||||||
|
if [ -z "${{ inputs.to }}" ] && [ -n "${VK_TEAMS_CHAT_ID}" ]; then
|
||||||
|
echo "to=${VK_TEAMS_CHAT_ID}" >> $GITHUB_ENV
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Set icon
|
||||||
|
id: icon
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
case "${{ inputs.result }}" in
|
||||||
|
success) echo "ICON=✅" >> $GITHUB_ENV ;;
|
||||||
|
failure) echo "ICON=❌" >> $GITHUB_ENV ;;
|
||||||
|
canceled) echo "ICON=🤦" >> $GITHUB_ENV ;;
|
||||||
|
started) echo "ICON=⚠️" >> $GITHUB_ENV ;;
|
||||||
|
*) echo "ICON=ℹ️" >> $GITHUB_ENV ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
- name: Notify VK Teams (native)
|
||||||
|
if: always()
|
||||||
|
shell: bash
|
||||||
|
continue-on-error: true
|
||||||
|
run: |
|
||||||
|
echo "[DEBUG] Sending VK Teams notification..."
|
||||||
|
curl -G "https://myteam.mail.ru/bot/v1/messages/sendText" \
|
||||||
|
--data-urlencode "token=${{ env.token }}" \
|
||||||
|
--data-urlencode "chatId=${{ env.to }}" \
|
||||||
|
--data-urlencode "parseMode=MarkdownV2" \
|
||||||
|
--data-urlencode "text=*${{ github.repository }}* - [${{ inputs.name }}](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_number }}) was *${{ inputs.result }}* by ${{ github.event.sender.login }} ${{ env.ICON }}"
|
||||||
|
|
||||||
|
CODE=$?
|
||||||
|
if [ $CODE -ne 0 ]; then
|
||||||
|
echo "[WARN] VK Teams notification failed with exit code $CODE"
|
||||||
|
else
|
||||||
|
echo "[INFO] VK Teams notification sent successfully"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Делаем паузу, чтобы убедиться, что сообщение дошло
|
||||||
|
echo "[DEBUG] Sleeping 5s to ensure delivery..."
|
||||||
|
sleep 5
|
||||||
131
.github/workflows/build.yaml
vendored
131
.github/workflows/build.yaml
vendored
@@ -11,7 +11,14 @@ on:
|
|||||||
force_build:
|
force_build:
|
||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
|
arch:
|
||||||
|
type: string
|
||||||
|
default: "linux/amd64,linux/arm64/v8"
|
||||||
|
secrets:
|
||||||
|
VK_TEAMS_BOT_TOKEN:
|
||||||
|
required: true
|
||||||
|
VK_TEAMS_CHAT_ID:
|
||||||
|
required: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@@ -20,52 +27,102 @@ jobs:
|
|||||||
CR_REGISTRY: crp8vh46gd976oq8ipla
|
CR_REGISTRY: crp8vh46gd976oq8ipla
|
||||||
CR_REPO: ${{ github.event.repository.name }}
|
CR_REPO: ${{ github.event.repository.name }}
|
||||||
IMAGE_TAG: ${{ github.sha }}
|
IMAGE_TAG: ${{ github.sha }}
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@master
|
|
||||||
- name: Checkout LFS
|
|
||||||
if: ${{ inputs.lfs }}
|
|
||||||
run: |
|
|
||||||
UrlBase=$GITHUB_SERVER_URL; \
|
|
||||||
UrlLfsBase=$UrlBase/${{ github.repository }}.git/info/lfs/objects; \
|
|
||||||
Auth=`/usr/bin/git config --get --local http.$UrlBase/.extraheader`; \
|
|
||||||
/usr/bin/git config --local http.${UrlLfsBase}/batch.extraheader "$Auth"; \
|
|
||||||
/usr/bin/git config --local http.${UrlLfsBase}/.extraheader ''
|
|
||||||
|
|
||||||
git config --local lfs.transfer.maxretries 1
|
steps:
|
||||||
git ls-remote
|
- name: Notify (started)
|
||||||
git lfs checkout
|
uses: https://bb.hublab.ru/HUB/workflows/.gitea/actions/vk-notify@main
|
||||||
git lfs fetch
|
env:
|
||||||
git lfs pull
|
VK_TEAMS_BOT_TOKEN: ${{ secrets.VK_TEAMS_BOT_TOKEN }}
|
||||||
#git lfs fetch origin refs/heads/${{ github.head_ref || github.ref_name }}
|
VK_TEAMS_CHAT_ID: ${{ secrets.VK_TEAMS_CHAT_ID }}
|
||||||
|
with:
|
||||||
|
result: started
|
||||||
|
name: build tag ${{ inputs.tag }}
|
||||||
|
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
lfs: ${{ inputs.lfs }}
|
||||||
|
|
||||||
- name: Use ssh key
|
- name: Use ssh key
|
||||||
uses: webfactory/ssh-agent@v0.9.0
|
uses: webfactory/ssh-agent@v0.9.0
|
||||||
with:
|
with:
|
||||||
ssh-private-key: |
|
ssh-private-key: |
|
||||||
${{ secrets.LIB_SSH_KEY }}
|
${{ secrets.LIB_SSH_KEY }}
|
||||||
${{ secrets.LIB_NEW_SSH_KEY }}
|
${{ secrets.LIB_NEW_SSH_KEY }}
|
||||||
- name: Build Docker image
|
|
||||||
run: |
|
|
||||||
if [ "$NO_CACHE" == "true" ]; then
|
|
||||||
docker build -t cr.yandex/$CR_REGISTRY/$CR_REPO:${IMAGE_TAG::7} --no-cache --ssh default .
|
|
||||||
else
|
|
||||||
docker build -t cr.yandex/$CR_REGISTRY/$CR_REPO:${IMAGE_TAG::7} --ssh default .
|
|
||||||
fi
|
|
||||||
env:
|
|
||||||
NO_CACHE: ${{ inputs.force_build || 'false' }}
|
|
||||||
- name: Yandex Cloud Login
|
- name: Yandex Cloud Login
|
||||||
uses: yc-actions/yc-cr-login@v2
|
uses: yc-actions/yc-cr-login@v2
|
||||||
with:
|
with:
|
||||||
yc-sa-json-credentials: ${{ secrets.YC_SA_JSON_CREDENTIALS }}
|
yc-sa-json-credentials: ${{ secrets.YC_SA_JSON_CREDENTIALS }}
|
||||||
- name: Tag image
|
|
||||||
env:
|
- name: Set up Docker Buildx
|
||||||
INPUT_TAG: ${{ inputs.tag }}
|
id: buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
with:
|
||||||
|
install: true
|
||||||
|
|
||||||
|
- name: Shorten commit SHA
|
||||||
|
run: echo "SHORT_SHA=${GITHUB_SHA::7}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Normalize tag
|
||||||
|
id: normalize
|
||||||
run: |
|
run: |
|
||||||
echo ${INPUT_TAG/\//-} ${IMAGE_TAG::7} $INPUT_TAG $IMAGE_TAG
|
SAFE_TAG=$(echo "${{ inputs.tag }}" | tr '/' '-')
|
||||||
docker tag cr.yandex/$CR_REGISTRY/$CR_REPO:${IMAGE_TAG::7} cr.yandex/$CR_REGISTRY/$CR_REPO:${INPUT_TAG/\//-}
|
echo "SAFE_TAG=$SAFE_TAG" >> $GITHUB_ENV
|
||||||
- name: Push image
|
|
||||||
env:
|
- name: Restore Docker layer cache
|
||||||
INPUT_TAG: ${{ inputs.tag }}
|
uses: actions/cache/restore@v4
|
||||||
|
with:
|
||||||
|
path: /cache/${{ github.repository }}/buildx-cache
|
||||||
|
key: ${{ runner.os }}-${{ github.repository }}-buildx-${{ hashFiles(format('{0}/Dockerfile', github.workspace), format('{0}/**/requirements.txt', github.workspace), format('{0}/**/*lock*', github.workspace), format('{0}/**/package-lock.json', github.workspace), format('{0}/**/poetry.lock', github.workspace)) }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-${{ github.repository }}-buildx-
|
||||||
|
${{ runner.os }}-buildx-
|
||||||
|
|
||||||
|
- name: Build and push multi-arch image
|
||||||
|
id: build-step
|
||||||
|
uses: docker/build-push-action@v6
|
||||||
|
with:
|
||||||
|
push: true
|
||||||
|
context: .
|
||||||
|
builder: ${{ steps.buildx.outputs.name }}
|
||||||
|
tags: |
|
||||||
|
cr.yandex/${{ env.CR_REGISTRY }}/${{ env.CR_REPO }}:${{ env.SHORT_SHA }}
|
||||||
|
cr.yandex/${{ env.CR_REGISTRY }}/${{ env.CR_REPO }}:${{ env.SAFE_TAG }}
|
||||||
|
platforms: ${{ inputs.arch }}
|
||||||
|
ssh: default
|
||||||
|
no-cache: ${{ inputs.force_build }}
|
||||||
|
build-args: |
|
||||||
|
GIT_COMMIT=${{ github.sha }}
|
||||||
|
cache-from: |
|
||||||
|
type=local,src=/cache/${{ github.repository }}/buildx-cache
|
||||||
|
cache-to: |
|
||||||
|
type=local,dest=/cache/${{ github.repository }}/buildx-cache-new,mode=max
|
||||||
|
|
||||||
|
- name: Move new cache if it exists
|
||||||
|
if: always()
|
||||||
run: |
|
run: |
|
||||||
docker push cr.yandex/$CR_REGISTRY/$CR_REPO:${IMAGE_TAG::7}
|
mkdir -p /cache/${{ github.repository }}
|
||||||
docker push cr.yandex/$CR_REGISTRY/$CR_REPO:${INPUT_TAG/\//-}
|
if [ -d /cache/${{ github.repository }}/buildx-cache-new ]; then
|
||||||
|
echo "Found new buildx cache, replacing old one..."
|
||||||
|
rm -rf /cache/${{ github.repository }}/buildx-cache
|
||||||
|
mv /cache/${{ github.repository }}/buildx-cache-new /cache/${{ github.repository }}/buildx-cache
|
||||||
|
else
|
||||||
|
echo "No new buildx cache found, keeping old one."
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Save Docker layer cache
|
||||||
|
if: always()
|
||||||
|
uses: actions/cache/save@v4
|
||||||
|
with:
|
||||||
|
path: /cache/${{ github.repository }}/buildx-cache
|
||||||
|
key: ${{ runner.os }}-${{ github.repository }}-buildx-${{ hashFiles(format('{0}/Dockerfile', github.workspace), format('{0}/**/requirements.txt', github.workspace), format('{0}/**/*lock*', github.workspace), format('{0}/**/package-lock.json', github.workspace), format('{0}/**/poetry.lock', github.workspace)) }}
|
||||||
|
|
||||||
|
- name: Notify (result)
|
||||||
|
if: always()
|
||||||
|
uses: https://bb.hublab.ru/HUB/workflows/.gitea/actions/vk-notify@main
|
||||||
|
env:
|
||||||
|
VK_TEAMS_BOT_TOKEN: ${{ secrets.VK_TEAMS_BOT_TOKEN }}
|
||||||
|
VK_TEAMS_CHAT_ID: ${{ secrets.VK_TEAMS_CHAT_ID }}
|
||||||
|
with:
|
||||||
|
result: ${{ steps.build-step.outcome }}
|
||||||
|
name: build tag ${{ inputs.tag }}
|
||||||
|
|||||||
21
.github/workflows/deployk8s.yaml
vendored
21
.github/workflows/deployk8s.yaml
vendored
@@ -24,7 +24,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
if: contains(format(',{0},', vars.ADMIN_USERS), format(',{0},', github.actor)) || inputs.environment=='stage'
|
if: ${{ contains(format(',{0},', vars.ADMIN_USERS), format(',{0},', github.actor)) || startsWith(inputs.environment, 'stage') }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
CR_REGISTRY: crp8vh46gd976oq8ipla
|
CR_REGISTRY: crp8vh46gd976oq8ipla
|
||||||
@@ -32,24 +32,27 @@ jobs:
|
|||||||
TAG: ${{ inputs.tag }}
|
TAG: ${{ inputs.tag }}
|
||||||
steps:
|
steps:
|
||||||
- name: notify
|
- name: notify
|
||||||
uses: https://bb.hublab.ru/HUB/workflows/.gitea/actions/notify@HEAD
|
uses: https://bb.hublab.ru/HUB/workflows/.gitea/actions/vk-notify@main
|
||||||
|
env:
|
||||||
|
VK_TEAMS_BOT_TOKEN: ${{ secrets.VK_TEAMS_BOT_TOKEN }}
|
||||||
|
VK_TEAMS_CHAT_ID: ${{ secrets.VK_TEAMS_CHAT_ID }}
|
||||||
with:
|
with:
|
||||||
result: 'started'
|
result: 'started'
|
||||||
secrets: ${{ toJSON(secrets) }}
|
|
||||||
name: deploy ${{ inputs.environment }} tag ${{ inputs.tag }}
|
name: deploy ${{ inputs.environment }} tag ${{ inputs.tag }}
|
||||||
- name: deploy
|
- name: deploy
|
||||||
|
id: k8s_deploy
|
||||||
uses: https://bb.hublab.ru/HUB/workflows/.gitea/actions/k8s@HEAD
|
uses: https://bb.hublab.ru/HUB/workflows/.gitea/actions/k8s@HEAD
|
||||||
with:
|
with:
|
||||||
secrets: ${{ toJSON(secrets) }}
|
secrets: ${{ toJSON(secrets) }}
|
||||||
environment: ${{ inputs.environment }}
|
environment: ${{ inputs.environment }}
|
||||||
tag: ${{ inputs.tag }}
|
tag: ${{ inputs.tag }}
|
||||||
migrate: ${{ inputs.migrate }}
|
migrate: ${{ inputs.migrate }}
|
||||||
|
- name: post-notify
|
||||||
notify:
|
|
||||||
needs: [deploy]
|
|
||||||
if: always()
|
if: always()
|
||||||
uses: HUB/workflows/.github/workflows/notify.yaml@main
|
uses: https://bb.hublab.ru/HUB/workflows/.gitea/actions/vk-notify@main
|
||||||
|
env:
|
||||||
|
VK_TEAMS_BOT_TOKEN: ${{ secrets.VK_TEAMS_BOT_TOKEN }}
|
||||||
|
VK_TEAMS_CHAT_ID: ${{ secrets.VK_TEAMS_CHAT_ID }}
|
||||||
with:
|
with:
|
||||||
result: ${{ needs.deploy.result}}
|
result: ${{ steps.k8s_deploy.outcome }}
|
||||||
name: k8s deploy ${{ inputs.environment }} tag ${{ inputs.tag }}
|
name: k8s deploy ${{ inputs.environment }} tag ${{ inputs.tag }}
|
||||||
secrets: inherit
|
|
||||||
16
.github/workflows/notify.yaml
vendored
16
.github/workflows/notify.yaml
vendored
@@ -1,5 +1,3 @@
|
|||||||
env:
|
|
||||||
icons: '{"success" : ":white_check_mark:", "failure": ":x:", "canceled": ":facepalm:", "started": ":warning:", "": ":boxing_glove:"}'
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
inputs:
|
inputs:
|
||||||
@@ -15,11 +13,13 @@ jobs:
|
|||||||
notify:
|
notify:
|
||||||
runs-on: gpu
|
runs-on: gpu
|
||||||
steps:
|
steps:
|
||||||
- uses: mattermost/action-mattermost-notify@master
|
- uses: dosymep/vk-teams-action@v1.0.0
|
||||||
|
env:
|
||||||
|
ICONS: '{"success":"✅","failure":"❌","canceled":"🤦","started":"⚠️"}'
|
||||||
with:
|
with:
|
||||||
MATTERMOST_WEBHOOK_URL: ${{ secrets.MM_WEBHOOK_URL }}
|
token: ${{ secrets.VK_TEAMS_BOT_TOKEN }}
|
||||||
PAYLOAD: |
|
to: ${{ secrets.VK_TEAMS_CHAT_ID }}
|
||||||
{
|
format: MarkdownV2
|
||||||
"text": "${{ github.repository }} [${{inputs.name}}](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_number }}) was ${{ inputs.result }} by ${{ github.event.sender.login}} ${{ fromJson(env.icons)[inputs.result]}}"
|
message: |
|
||||||
}
|
${{ github.repository }} \[${{inputs.name}}\]\(${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_number }}\) was ${{ inputs.result }} by ${{ github.event.sender.login }} ${{ fromJson(env.ICONS)[inputs.result] }}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user