Skip to content

Commit

Permalink
Issue 322: Updating charts to latest version (#323)
Browse files Browse the repository at this point in the history
* Issue 322: Updating charts to latest version

Signed-off-by: SrishT <[email protected]>

* Issue 322: Updating charts to latest version

Signed-off-by: SrishT <[email protected]>

Co-authored-by: SrishT <[email protected]>
  • Loading branch information
SrishT and SrishT authored Apr 23, 2021
1 parent 5c86f53 commit a99c93b
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions charts/zookeeper-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
name: zookeeper-operator
description: Zookeeper Operator Helm chart for Kubernetes
version: 0.2.9
appVersion: 0.2.9
version: 0.2.10
appVersion: 0.2.10
keywords:
- zookeeper
- storage
Expand Down
2 changes: 1 addition & 1 deletion charts/zookeeper-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ The following table lists the configurable parameters of the zookeeper-operator
| Parameter | Description | Default |
| ----- | ----------- | ------ |
| `image.repository` | Image repository | `pravega/zookeeper-operator` |
| `image.tag` | Image tag | `0.2.9` |
| `image.tag` | Image tag | `0.2.10` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `crd.create` | Create zookeeper CRD | `true` |
| `rbac.create` | Create RBAC resources | `true` |
Expand Down
2 changes: 1 addition & 1 deletion charts/zookeeper-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ global:

image:
repository: pravega/zookeeper-operator
tag: 0.2.9
tag: 0.2.10
pullPolicy: IfNotPresent

## Install RBAC roles and bindings.
Expand Down
4 changes: 2 additions & 2 deletions charts/zookeeper/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
name: zookeeper
description: Zookeeper Helm chart for Kubernetes
version: 0.2.9
appVersion: 0.2.9
version: 0.2.10
appVersion: 0.2.10
keywords:
- zookeeper
- storage
Expand Down
2 changes: 1 addition & 1 deletion charts/zookeeper/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ The following table lists the configurable parameters of the zookeeper chart and
| ----- | ----------- | ------ |
| `replicas` | Expected size of the zookeeper cluster (valid range is from 1 to 7) | `3` |
| `image.repository` | Image repository | `pravega/zookeeper` |
| `image.tag` | Image tag | `0.2.9` |
| `image.tag` | Image tag | `0.2.10` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `domainName` | External host name appended for dns annotation | |
| `kubernetesClusterDomain` | Domain of the kubernetes cluster | `cluster.local` |
Expand Down
2 changes: 1 addition & 1 deletion charts/zookeeper/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ replicas: 3

image:
repository: pravega/zookeeper
tag: 0.2.9
tag: 0.2.10
pullPolicy: IfNotPresent

domainName:
Expand Down
2 changes: 1 addition & 1 deletion deploy/all_ns/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
containers:
- name: zookeeper-operator
# Replace this with the built image name
image: pravega/zookeeper-operator:0.2.9
image: pravega/zookeeper-operator:0.2.10
ports:
- containerPort: 60000
name: metrics
Expand Down
2 changes: 1 addition & 1 deletion deploy/cr/ECS/zookeeper_v1beta1_zookeepercluster_cr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ spec:
replicas: 3
image:
repository: pravega/zookeeper
tag: 0.2.9
tag: 0.2.10
storageType: persistence
persistence:
reclaimPolicy: Retain
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ spec:
replicas: 3
image:
repository: pravega/zookeeper
tag: 0.2.9
tag: 0.2.10
storageType: persistence
persistence:
reclaimPolicy: Delete
Expand Down
2 changes: 1 addition & 1 deletion deploy/default_ns/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
containers:
- name: zookeeper-operator
# Replace this with the built image name
image: pravega/zookeeper-operator:0.2.9
image: pravega/zookeeper-operator:0.2.10
ports:
- containerPort: 60000
name: metrics
Expand Down
4 changes: 2 additions & 2 deletions pkg/apis/zookeeper/v1beta1/zookeepercluster_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const (

// DefaultZkContainerVersion is the default tag used for for the zookeeper
// container
DefaultZkContainerVersion = "0.2.8"
DefaultZkContainerVersion = "0.2.10"

// DefaultZkContainerPolicy is the default container pull policy used
DefaultZkContainerPolicy = "Always"
Expand Down Expand Up @@ -79,7 +79,7 @@ const (

// ZookeeperClusterSpec defines the desired state of ZookeeperCluster
type ZookeeperClusterSpec struct {
// Image is the container image. default is zookeeper:0.2.7
// Image is the container image. default is zookeeper:0.2.10
Image ContainerImage `json:"image,omitempty"`

// Labels specifies the labels to attach to pods the operator creates for
Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/zookeeper/v1beta1/zookeepercluster_types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ var _ = Describe("ZookeeperCluster Types", func() {
})

It("Checking tostring() function", func() {
Ω(z.Spec.Image.ToString()).To(Equal("pravega/zookeeper:0.2.8"))
Ω(z.Spec.Image.ToString()).To(Equal("pravega/zookeeper:0.2.10"))
})

})
Expand Down

0 comments on commit a99c93b

Please sign in to comment.