operator v1: add support for host-index-offset for advertised listeners #12
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
--- | |
# This workflow triggers the action in redpanda-data/docs that | |
# publishes the CRD specifications to the Redpanda documentation. | |
name: Trigger CRD docs | |
on: | |
push: | |
branches: [main] | |
paths: | |
- 'operator/api/**' | |
jobs: | |
dispatch: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
aws-region: ${{ vars.RP_AWS_CRED_REGION }} | |
role-to-assume: arn:aws:iam::${{ secrets.RP_AWS_CRED_ACCOUNT_ID }}:role/${{ vars.RP_AWS_CRED_BASE_ROLE_NAME }}${{ github.event.repository.name }} | |
- uses: aws-actions/aws-secretsmanager-get-secrets@v2 | |
with: | |
secret-ids: | | |
,sdlc/prod/github/actions_bot_token | |
parse-json-secrets: true | |
- name: Trigger generate-crd-docs event | |
uses: peter-evans/repository-dispatch@v2 | |
with: | |
token: ${{ env.ACTIONS_BOT_TOKEN }} | |
repository: redpanda-data/docs | |
event-type: generate-crd-docs |