Skip to content

Commit 42618e4

Browse files
authored
Merge pull request openshift#5 from openshift-cherrypick-robot/cherry-pick-4-to-backplane-2.10
[backplane-2.10] 🌱 Sync upstream main branch
2 parents 086f864 + 4e29f52 commit 42618e4

39 files changed

+1444
-105
lines changed

.github/workflows/build-ami-varsfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
echo "$PACKER_VARS" | jq -r > ./images/capi/vars.json
4343
cat ./images/capi/vars.json
4444
- name: Configure AWS credentials
45-
uses: aws-actions/configure-aws-credentials@v4
45+
uses: aws-actions/configure-aws-credentials@v5
4646
with:
4747
aws-region: us-east-2
4848
role-to-assume: arn:aws:iam::819546954734:role/gh-image-builder

.github/workflows/build-ami.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
ref: ${{ inputs.image_builder_version }}
5555
fetch-depth: 0
5656
- name: Configure AWS credentials
57-
uses: aws-actions/configure-aws-credentials@v4
57+
uses: aws-actions/configure-aws-credentials@v5
5858
with:
5959
aws-region: us-east-2
6060
role-to-assume: arn:aws:iam::819546954734:role/gh-image-builder

.github/workflows/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Set up Go 1.x
26-
uses: actions/setup-go@v5
26+
uses: actions/setup-go@v6
2727
with:
2828
go-version: '1.24'
2929
id: go

.github/workflows/pr-gh-workflow-approve.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
actions: write
1818
steps:
1919
- name: Update PR
20-
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
20+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
2121
continue-on-error: true
2222
with:
2323
github-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/pr-golangci-lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
id: vars
2323
run: echo "go_version=$(make go-version)" >> $GITHUB_OUTPUT
2424
- name: Set up Go
25-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # tag=v5.5.0
25+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # tag=v6.0.0
2626
with:
2727
go-version: ${{ steps.vars.outputs.go_version }}
2828
- name: golangci-lint

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
fetch-depth: 0
2020
- name: Set up Go
21-
uses: actions/setup-go@v5
21+
uses: actions/setup-go@v6
2222
with:
2323
go-version: '1.23'
2424
- name: Set version info

.github/workflows/scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
ref: ${{ matrix.branch }}
2424
- name: Setup go
25-
uses: actions/setup-go@v5
25+
uses: actions/setup-go@v6
2626
with:
2727
go-version-file: '${{ github.workspace }}/go.mod'
2828
- name: Run verify container script

api/v1beta1/awscluster_conversion.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ func (src *AWSCluster) ConvertTo(dstRaw conversion.Hub) error {
6666
dst.Status.Bastion.HostAffinity = restored.Status.Bastion.HostAffinity
6767
dst.Status.Bastion.HostID = restored.Status.Bastion.HostID
6868
dst.Status.Bastion.CapacityReservationPreference = restored.Status.Bastion.CapacityReservationPreference
69+
dst.Status.Bastion.CPUOptions = restored.Status.Bastion.CPUOptions
6970
}
7071
dst.Spec.Partition = restored.Spec.Partition
7172

api/v1beta1/awsmachine_conversion.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ func (src *AWSMachine) ConvertTo(dstRaw conversion.Hub) error {
4848
dst.Spec.HostAffinity = restored.Spec.HostAffinity
4949
dst.Spec.CapacityReservationPreference = restored.Spec.CapacityReservationPreference
5050
dst.Spec.NetworkInterfaceType = restored.Spec.NetworkInterfaceType
51+
dst.Spec.CPUOptions = restored.Spec.CPUOptions
5152
if restored.Spec.ElasticIPPool != nil {
5253
if dst.Spec.ElasticIPPool == nil {
5354
dst.Spec.ElasticIPPool = &infrav1.ElasticIPPool{}
@@ -115,6 +116,7 @@ func (r *AWSMachineTemplate) ConvertTo(dstRaw conversion.Hub) error {
115116
dst.Spec.Template.Spec.HostAffinity = restored.Spec.Template.Spec.HostAffinity
116117
dst.Spec.Template.Spec.CapacityReservationPreference = restored.Spec.Template.Spec.CapacityReservationPreference
117118
dst.Spec.Template.Spec.NetworkInterfaceType = restored.Spec.Template.Spec.NetworkInterfaceType
119+
dst.Spec.Template.Spec.CPUOptions = restored.Spec.Template.Spec.CPUOptions
118120
if restored.Spec.Template.Spec.ElasticIPPool != nil {
119121
if dst.Spec.Template.Spec.ElasticIPPool == nil {
120122
dst.Spec.Template.Spec.ElasticIPPool = &infrav1.ElasticIPPool{}

api/v1beta1/zz_generated.conversion.go

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)