Skip to content

Commit

Permalink
Merge pull request #135 from guymguym/guy-2.0
Browse files Browse the repository at this point in the history
2.0 Backport: Bump operator and core versions
  • Loading branch information
guymguym committed Nov 12, 2019
2 parents 75af847 + c37a889 commit ebea58a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -12,12 +12,12 @@ For Mac
```
brew install noobaa/noobaa/noobaa
# or
wget https://github.com/noobaa/noobaa-operator/releases/download/v2.0.6/noobaa-mac-v2.0.6; mv noobaa-mac-* noobaa; chmod +x noobaa
wget https://github.com/noobaa/noobaa-operator/releases/download/v2.0.7/noobaa-mac-v2.0.7; mv noobaa-mac-* noobaa; chmod +x noobaa
```

For Linux
```
wget https://github.com/noobaa/noobaa-operator/releases/download/v2.0.6/noobaa-linux-v2.0.6; mv noobaa-linux-* noobaa; chmod +x noobaa
wget https://github.com/noobaa/noobaa-operator/releases/download/v2.0.7/noobaa-linux-v2.0.7; mv noobaa-linux-* noobaa; chmod +x noobaa
```

- Run: `./noobaa --help` for CLI usage
Expand Down
2 changes: 1 addition & 1 deletion deploy/operator.yaml
Expand Up @@ -16,7 +16,7 @@ spec:
serviceAccountName: noobaa
containers:
- name: noobaa-operator
image: noobaa/noobaa-operator:2.0.6
image: noobaa/noobaa-operator:2.0.7
imagePullPolicy: IfNotPresent
resources:
limits:
Expand Down
6 changes: 3 additions & 3 deletions pkg/bundle/deploy.go
@@ -1,6 +1,6 @@
package bundle

const Version = "2.0.6"
const Version = "2.0.7"

const Sha256_deploy_cluster_role_yaml = "b7002d09a74061e0d16e9414d60f97ed7f6a8fb3192699f957169e1170f2a669"

Expand Down Expand Up @@ -1811,7 +1811,7 @@ spec:
sourceNamespace: marketplace
`

const Sha256_deploy_operator_yaml = "da7953abeaba4a833719d5c197bc445049e6a3954f96cddfed7ee0c6a1f81dca"
const Sha256_deploy_operator_yaml = "bead9e44ebb85a2684e1d17f3c20c02ad8fedb461041db0c61305655538f79c0"

const File_deploy_operator_yaml = `apiVersion: apps/v1
kind: Deployment
Expand All @@ -1831,7 +1831,7 @@ spec:
serviceAccountName: noobaa
containers:
- name: noobaa-operator
image: noobaa/noobaa-operator:2.0.6
image: noobaa/noobaa-operator:2.0.7
imagePullPolicy: IfNotPresent
resources:
limits:
Expand Down
2 changes: 1 addition & 1 deletion pkg/options/options.go
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.2.8"
ContainerImageTag = "5.2.9"
// ContainerImageConstraintSemver is the contraints of supported image versions
ContainerImageConstraintSemver = ">=5, <6"
// ContainerImageName is the default image name without the tag/version
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Expand Up @@ -2,5 +2,5 @@ package version

const (
// Version is the noobaa-operator version (semver)
Version = "2.0.6"
Version = "2.0.7"
)

0 comments on commit ebea58a

Please sign in to comment.