Skip to content
Snippets Groups Projects
Select Git revision
1 result Searching

setting-up-your-first-cluster.md

Blame
    • Cristian Calin's avatar
      360aff4a
      Rename ansible groups to use _ instead of - (#7552) · 360aff4a
      Cristian Calin authored
      * rename ansible groups to use _ instead of -
      
      k8s-cluster -> k8s_cluster
      k8s-node -> k8s_node
      calico-rr -> calico_rr
      no-floating -> no_floating
      
      Note: kube-node,k8s-cluster groups in upgrade CI
            need clean-up after v2.16 is tagged
      
      * ensure old groups are mapped to the new ones
      360aff4a
      History
      Rename ansible groups to use _ instead of - (#7552)
      Cristian Calin authored
      * rename ansible groups to use _ instead of -
      
      k8s-cluster -> k8s_cluster
      k8s-node -> k8s_node
      calico-rr -> calico_rr
      no-floating -> no_floating
      
      Note: kube-node,k8s-cluster groups in upgrade CI
            need clean-up after v2.16 is tagged
      
      * ensure old groups are mapped to the new ones
    push-rebase.yaml 768 B
    name: Push [rebase]
    "on":
      push:
        branches:
          - main
    concurrency:
      group: push-rebase-main
      cancel-in-progress: true
    jobs:
      rebase:
        name: Push [rebase]
        runs-on: ubuntu-latest
        steps:
          - name: "Rebase all Dependabot's pull requests on every push to the main branch"
            uses: bbeesley/gha-auto-dependabot-rebase@v1.5.137
            env:
              GITHUB_TOKEN: ${{ secrets.PAT }}
          - name: "Rebase all users' pull requests on release push to the main branch"
            uses: peter-evans/rebase@v3.1.0
            with:
              base: main
              exclude-drafts: true
              exclude-labels: |
                no-rebase
                dependencies
            if: "${{ startsWith(github.event.head_commit.message, 'docs: update changelog for ') }}"