Skip to content

Commit 9e5b5c1

Browse files
committed
style: log entry update in exec_env_pull
perf: update PR title on k8s_edit fix: use arm64/v8 in az_acr_push
1 parent b1567dc commit 9e5b5c1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/az_acr_push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
DEV_LOGIN_PASSWORD: ${{ secrets.DEV_LOGIN_PASSWORD }}
1818
strategy:
1919
matrix:
20-
platform: [amd64, arm64]
20+
platform: [amd64, arm64/v8]
2121
steps:
2222
- name: Checkout repository
2323
uses: actions/checkout@v4

.github/workflows/k8s_edit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,16 +61,16 @@ jobs:
6161
git commit -m "ci(${{ github.event.repository.name }}): $KUBERNETES_POD_NEW_IMAGE" || true
6262
git push origin $AUTOMATED_RELEASE_BRANCH
6363
64-
PR_TITLE="ci(${{ github.event.repository.name }}): $KUBERNETES_POD_NEW_IMAGE"
64+
PR_TITLE="ci: $AUTOMATED_RELEASE_BRANCH"
6565
if [ ${{ github.event_name }} == 'release' ]; then
66-
PR_TITLE="ci(${{ github.ref_name }}): $KUBERNETES_POD_NEW_IMAGE"
66+
PR_TITLE="ci(${{ github.ref_name }}): $AUTOMATED_RELEASE_BRANCH"
6767
fi
6868
6969
gh pr create \
7070
--base dev \
7171
--head $AUTOMATED_RELEASE_BRANCH \
7272
--title "$PR_TITLE" \
73-
--body "Automated release for ${{ github.event.repository.name }}: $KUBERNETES_POD_NEW_IMAGE:${{ env.IMAGE_TAG }}" \
73+
--body "Automated release for ${{ github.event.repository.name }}:\n- $KUBERNETES_POD_NEW_IMAGE:${{ env.IMAGE_TAG }}" \
7474
--draft \
7575
--repo ${{ github.repository_owner }}/${{ env.KUBERNETES_CLUSTER_REPO_NAME }} || true
7676
# --reviewer ${{ github.repository_owner }}/devops-admin \

k8s/exec_env_pull.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ for IMAGE_NAME in "${PULL_IMAGE_NAMES[@]}"; do
3434
echo "Pulling image: $AZURE_CONTAINER_REGISTRY/$IMAGE_NAME:$AZURE_IMAGE_TAG"
3535
kubectl exec $DOCKER_POD -c docker -- /bin/sh -c "docker pull $AZURE_CONTAINER_REGISTRY/$IMAGE_NAME:$AZURE_IMAGE_TAG"
3636
i=$((i+1))
37-
echo "::notice::Pushed $i of $total_images images"
37+
echo "::notice::Pulled $i of $total_images images"
3838
done

0 commit comments

Comments
 (0)