Skip to content

Commit

Permalink
Merge pull request #1530 from liranmauda/liran-bump-version-5.17
Browse files Browse the repository at this point in the history
[5.17] Bumping version from 5.17.4 to 5.17.5
  • Loading branch information
liranmauda authored Feb 16, 2025
2 parents 9f3881c + 03e970b commit 92c95df
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ The following options can be passed to any command:
--manual-default-backingstore=false: allow to delete the default backingstore
--mini=false: Signal the operator that it is running in a low resource environment
-n, --namespace='default': Target namespace
--noobaa-image='noobaa/noobaa-core:5.17.4': NooBaa image
--operator-image='noobaa/noobaa-operator:5.17.4': Operator image
--noobaa-image='noobaa/noobaa-core:5.17.5': NooBaa image
--operator-image='noobaa/noobaa-operator:5.17.5': Operator image
--pg-ssl-cert='': ssl cert for postgres (client-side cert - need to be signed by external pg accepted CA)
--pg-ssl-key='': ssl key for postgres (client-side cert - need to be signed by external pg accepted CA)
--pg-ssl-required=false: Force noobaa to work with ssl (external postgres - server-side) [if server cert is self-signed, needs to add --ssl-unauthorized]
Expand All @@ -177,9 +177,9 @@ $ noobaa version
```

```
INFO[0000] CLI version: 5.17.4
INFO[0000] noobaa-image: noobaa/noobaa-core:5.17.4
INFO[0000] operator-image: noobaa/noobaa-operator:5.17.4
INFO[0000] CLI version: 5.17.5
INFO[0000] noobaa-image: noobaa/noobaa-core:5.17.5
INFO[0000] operator-image: noobaa/noobaa-operator:5.17.5
```

## Troubleshooting
Expand Down
2 changes: 1 addition & 1 deletion pkg/bundle/deploy.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package bundle

const Version = "5.17.4"
const Version = "5.17.5"

const Sha256_deploy_cluster_role_yaml = "3f8118853db73926c4f9d14be84ac8f81833c3a7a94a52ecf1e9ebcf712eee93"

Expand Down
2 changes: 1 addition & 1 deletion pkg/system/phase4_configuring.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ func (r *Reconciler) SetDesiredSecretAdminAccountInfo() error {
if err != nil {
return fmt.Errorf("cannot read admin account info, error: %v", err)
}
if account.AccessKeys == nil || len(account.AccessKeys) <= 0 {
if len(account.AccessKeys) <= 0 {
return fmt.Errorf("admin account has no access keys yet")
}

Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ package version

const (
// Version is the noobaa-operator version (semver)
Version = "5.17.4"
Version = "5.17.5"
)

0 comments on commit 92c95df

Please sign in to comment.