Skip to content

Commit 92c95df

Browse files
authored
Merge pull request #1530 from liranmauda/liran-bump-version-5.17
[5.17] Bumping version from 5.17.4 to 5.17.5
2 parents 9f3881c + 03e970b commit 92c95df

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ The following options can be passed to any command:
154154
--manual-default-backingstore=false: allow to delete the default backingstore
155155
--mini=false: Signal the operator that it is running in a low resource environment
156156
-n, --namespace='default': Target namespace
157-
--noobaa-image='noobaa/noobaa-core:5.17.4': NooBaa image
158-
--operator-image='noobaa/noobaa-operator:5.17.4': Operator image
157+
--noobaa-image='noobaa/noobaa-core:5.17.5': NooBaa image
158+
--operator-image='noobaa/noobaa-operator:5.17.5': Operator image
159159
--pg-ssl-cert='': ssl cert for postgres (client-side cert - need to be signed by external pg accepted CA)
160160
--pg-ssl-key='': ssl key for postgres (client-side cert - need to be signed by external pg accepted CA)
161161
--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]
@@ -177,9 +177,9 @@ $ noobaa version
177177
```
178178

179179
```
180-
INFO[0000] CLI version: 5.17.4
181-
INFO[0000] noobaa-image: noobaa/noobaa-core:5.17.4
182-
INFO[0000] operator-image: noobaa/noobaa-operator:5.17.4
180+
INFO[0000] CLI version: 5.17.5
181+
INFO[0000] noobaa-image: noobaa/noobaa-core:5.17.5
182+
INFO[0000] operator-image: noobaa/noobaa-operator:5.17.5
183183
```
184184

185185
## Troubleshooting

pkg/bundle/deploy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package bundle
22

3-
const Version = "5.17.4"
3+
const Version = "5.17.5"
44

55
const Sha256_deploy_cluster_role_yaml = "3f8118853db73926c4f9d14be84ac8f81833c3a7a94a52ecf1e9ebcf712eee93"
66

pkg/system/phase4_configuring.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ func (r *Reconciler) SetDesiredSecretAdminAccountInfo() error {
229229
if err != nil {
230230
return fmt.Errorf("cannot read admin account info, error: %v", err)
231231
}
232-
if account.AccessKeys == nil || len(account.AccessKeys) <= 0 {
232+
if len(account.AccessKeys) <= 0 {
233233
return fmt.Errorf("admin account has no access keys yet")
234234
}
235235

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ package version
22

33
const (
44
// Version is the noobaa-operator version (semver)
5-
Version = "5.17.4"
5+
Version = "5.17.5"
66
)

0 commit comments

Comments
 (0)