Skip to content

Commit ce234e9

Browse files
committed
Merge branch 'main' into feature/network-bridge
2 parents 73588d1 + c05bfb9 commit ce234e9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ for more information : https://cluster-api.sigs.k8s.io/user/quick-start.html#ini
1717
```sh
1818
# install cluster-api components
1919
export EXP_CLUSTER_RESOURCE_SET=true
20-
clusterctl init --infrastructure=proxmox:v0.3.1 --config https://raw.githubusercontent.com/sp-yduck/cluster-api-provider-proxmox/main/clusterctl.yaml
20+
clusterctl init --infrastructure=proxmox:v0.3.2 --config https://raw.githubusercontent.com/sp-yduck/cluster-api-provider-proxmox/main/clusterctl.yaml
2121
```
2222
**Note:** container images are available at [ghcr.io/sp-yduck/cluster-api-provider-proxmox:\<tag\>](https://github.com/sp-yduck/cluster-api-provider-proxmox/pkgs/container/cluster-api-provider-proxmox)
2323

@@ -30,7 +30,7 @@ export PROXMOX_PASSWORD=password
3030
export PROXMOX_USER=user@pam
3131

3232
# generate manifests (available flags: --target-namespace, --kubernetes-version, --control-plane-machine-count, --worker-machine-count)
33-
clusterctl generate cluster cappx-test --control-plane-machine-count=3 --infrastructure=proxmox:v0.3.1 --config https://raw.githubusercontent.com/sp-yduck/cluster-api-provider-proxmox/main/clusterctl.yaml > cappx-test.yaml
33+
clusterctl generate cluster cappx-test --control-plane-machine-count=3 --infrastructure=proxmox:v0.3.2 --config https://raw.githubusercontent.com/sp-yduck/cluster-api-provider-proxmox/main/clusterctl.yaml > cappx-test.yaml
3434

3535
# inspect and edit
3636
vi cappx-test.yaml

cloud/services/compute/instance/storage.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func (s *Service) ensureStorageAvailable(ctx context.Context) error {
2323
if err != nil {
2424
return err
2525
}
26-
if supportsImage(storage) {
26+
if !supportsImage(storage) {
2727
return fmt.Errorf("storage %s does not support \"images\" type of content", storageName)
2828
}
2929
}

0 commit comments

Comments
 (0)