[Sync] Update eni-max-pods.txt #62
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: '[Sync] Update eni-max-pods.txt' | |
on: | |
workflow_dispatch: | |
schedule: | |
# once a day | |
- cron: '0 0 * * *' | |
permissions: | |
id-token: write | |
contents: write | |
pull-requests: write | |
jobs: | |
update-max-pods: | |
# this workflow will always fail in forks; bail if this isn't running in the upstream | |
if: github.repository == 'awslabs/amazon-eks-ami' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: aws-actions/configure-aws-credentials@v2 | |
with: | |
aws-region: ${{ secrets.AWS_REGION }} | |
role-to-assume: ${{ secrets.AWS_ROLE_ARN_SYNC_ENI_MAX_PODS }} | |
- uses: actions/checkout@v3 | |
with: | |
repository: awslabs/amazon-eks-ami | |
ref: refs/heads/master | |
path: amazon-eks-ami/ | |
- uses: actions/checkout@v3 | |
with: | |
repository: aws/amazon-vpc-cni-k8s | |
ref: refs/heads/master | |
path: amazon-vpc-cni-k8s/ | |
- run: | | |
#!/usr/bin/env bash | |
set -o errexit | |
cd amazon-vpc-cni-k8s/ | |
make generate-limits | |
cp misc/eni-max-pods.txt ../amazon-eks-ami/src/runtime/eni-max-pods.txt | |
- uses: peter-evans/create-pull-request@v4 | |
with: | |
branch: update-eni-max-pods | |
path: amazon-eks-ami/ | |
add-paths: files/eni-max-pods.txt | |
commit-message: "Update eni-max-pods.txt" | |
committer: "GitHub <noreply@github.com>" | |
author: "GitHub <noreply@github.com>" | |
labels: | | |
changelog/exclude | |
title: "Update eni-max-pods.txt" | |
body: | | |
Generated by [aws/amazon-vpc-cni-k8s](https://github.com/aws/amazon-vpc-cni-k8s): | |
``` | |
make generate-limits | |
``` |