Skip to content

Commit

Permalink
update metadata for 0.4.0 upcoming release (#815)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dharmjit Singh authored Jul 12, 2023
1 parent 9a8a2f3 commit 46636f0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
7 changes: 7 additions & 0 deletions controllers/infrastructure/byomachine_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,13 @@ var _ = Describe("Controllers/ByomachineController", func() {
byoHost.Labels[infrastructurev1beta1.AttachedByoMachineLabel] = byoMachine.Namespace + "." + byoMachine.Name
Expect(ph.Patch(ctx, byoHost, patch.WithStatusObservedGeneration{})).Should(Succeed())

WaitForObjectToBeUpdatedInCache(byoHost, func(object client.Object) bool {
return object.(*infrastructurev1beta1.ByoHost).Status.HostDetails == infrastructurev1beta1.HostInfo{
OSName: "linux",
OSImage: "Ubuntu 20.04.4 LTS",
Architecture: "arm64",
}
})
WaitForObjectToBeUpdatedInCache(byoHost, func(object client.Object) bool {
return object.(*infrastructurev1beta1.ByoHost).Status.MachineRef != nil
})
Expand Down
3 changes: 3 additions & 0 deletions metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,7 @@ releaseSeries:
- major: 0
minor: 3
contract: v1beta1
- major: 0
minor: 4
contract: v1beta1

2 changes: 1 addition & 1 deletion test/e2e/config/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ providers:
- name: byoh
type: InfrastructureProvider
versions:
- name: v0.3.0
- name: v0.4.0
# Use manifest from source files
value: ../../../config/default
type: kustomize
Expand Down

0 comments on commit 46636f0

Please sign in to comment.