Skip to content

Commit

Permalink
Merge pull request #295 from liranmauda/liran-backport_into_2_2
Browse files Browse the repository at this point in the history
Bump version to 2.2.0
  • Loading branch information
liranmauda authored Apr 30, 2020
2 parents 326e43b + 5b04ec2 commit 3c9e4c4
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 11 deletions.
28 changes: 20 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,31 @@ For Linux
wget https://github.com/noobaa/noobaa-operator/releases/download/v2.1.1/noobaa-linux-v2.1.1; mv noobaa-linux-* noobaa; chmod +x noobaa
```

- Run: `./noobaa --help` for CLI usage
- Install the operator and noobaa with: `./noobaa install`
The install output includes S3 service endpoint and credentials, as well as web management console address with credentials.
- Getting this information is always available with: `./noobaa status`
- Remove NooBaa deployment can be done with: `./noobaa uninstall`
```
$ noobaa options
The following options can be passed to any command:
--db-image='centos/mongodb-36-centos7': The database container image
--db-storage-class='': The database volume storage class name
--db-volume-size-gb=0: The database volume size in GB
--image-pull-secret='': Image pull secret (must be in same namespace)
--kubeconfig='': Paths to a kubeconfig. Only required if out-of-cluster.
--master='': The address of the Kubernetes API server. Overrides any value in kubeconfig. Only required if
out-of-cluster.
--mini=false: Signal the operator that it is running in a low resource environment
-n, --namespace='noobaa': Target namespace
--noobaa-image='noobaa/noobaa-core:5.4.0': NooBaa image
--operator-image='noobaa/noobaa-operator:2.2.0': Operator image
--pv-pool-default-storage-class='': The default storage class name for BackingStores of type pv-pool
# Troubleshooting
- The operator is running, but there is no noobaa-core-0 pod
Make sure that there is a single default storage class with `oc get sc`. run `oc describe sts` for more information
- The operator is running, but the noobaa-core-0 is pending
INFO[0000] CLI version: 2.2.0
INFO[0000] noobaa-image: noobaa/noobaa-core:5.4.0
INFO[0000] operator-image: noobaa/noobaa-operator:2.2.0
Verify that there are enough resources. run `oc describe pod noobaa-core-0` for more information
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 = "2.1.1"
const Version = "2.2.0"

const Sha256_deploy_cluster_role_yaml = "349e613915ed288629c4926e22cd42f4a3776ed38dfbc9e814a9b28211a67b3c"

Expand Down
2 changes: 1 addition & 1 deletion pkg/options/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const (
// ContainerImageRepo is the repo of the default image url
ContainerImageRepo = "noobaa-core"
// ContainerImageTag is the tag of the default image url
ContainerImageTag = "5.3.1"
ContainerImageTag = "5.4.0-rc1"
// ContainerImageSemverLowerBound is the lower bound for supported image versions
ContainerImageSemverLowerBound = "5.0.0"
// ContainerImageSemverUpperBound is the upper bound for supported image versions
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 = "2.1.1"
Version = "2.2.0"
)

0 comments on commit 3c9e4c4

Please sign in to comment.