Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 5.16.0 #1302

Merged
merged 1 commit into from
Feb 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ Other Commands:

Use "noobaa <command> --help" for more information about a given command.
```
(taken from branch 5.15)
(taken from branch 5.16)

**2) Option menu**
In case you would like to add flags that are not specific for a certain command.
Expand Down Expand Up @@ -157,8 +157,8 @@ The following options can be passed to any command:
--mini=false: Signal the operator that it is running in a low resource environment
--mongodb-url='': url for mongodb
-n, --namespace='default': Target namespace
--noobaa-image='noobaa/noobaa-core:5.15.0': NooBaa image
--operator-image='noobaa/noobaa-operator:5.15.0': Operator image
--noobaa-image='noobaa/noobaa-core:5.16.0': NooBaa image
--operator-image='noobaa/noobaa-operator:5.16.0': 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 @@ -171,7 +171,7 @@ The following options can be passed to any command:
--sts-load-balancer-source-subnets=[]: The source subnets for the STS service load balancer
--test-env=false: Install the system with test env minimal resource
```
(taken from branch 5.15)
(taken from branch 5.16)

**3) Current version**\
When you want to print the current CLI version and images:
Expand All @@ -180,9 +180,9 @@ $ noobaa version
```

```
INFO[0000] CLI version: 5.15.0
INFO[0000] noobaa-image: noobaa/noobaa-core:5.15.0
INFO[0000] operator-image: noobaa/noobaa-operator:5.15.0
INFO[0000] CLI version: 5.16.0
INFO[0000] noobaa-image: noobaa/noobaa-core:5.16.0
INFO[0000] operator-image: noobaa/noobaa-operator:5.16.0
```

## 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.15.0"
const Version = "5.16.0"

const Sha256_deploy_cluster_role_yaml = "3f8118853db73926c4f9d14be84ac8f81833c3a7a94a52ecf1e9ebcf712eee93"

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.15.0"
Version = "5.16.0"
)
Loading