Skip to content

Commit

Permalink
Issue 145: Updating charts to latest version (#146)
Browse files Browse the repository at this point in the history
Signed-off-by: SrishT <[email protected]>

Co-authored-by: SrishT <[email protected]>
  • Loading branch information
SrishT and SrishT authored May 28, 2021
1 parent 21dc351 commit eeeffbd
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions charts/bookkeeper-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
name: bookkeeper-operator
description: Bookkeeper Operator Helm chart for Kubernetes
version: 0.1.3
appVersion: 0.1.3
version: 0.1.4
appVersion: 0.1.4
keywords:
- log storage
- stream storage
Expand Down
2 changes: 1 addition & 1 deletion charts/bookkeeper-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ The following table lists the configurable parameters of the bookkeeper-operator
| Parameter | Description | Default |
| ----- | ----------- | ------ |
| `image.repository` | Image repository | `pravega/bookkeeper-operator` |
| `image.tag` | Image tag | `0.1.3` |
| `image.tag` | Image tag | `0.1.4` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `crd.create` | Create bookkeeper CRD | `true` |
| `rbac.create` | Create RBAC resources | `true` |
Expand Down
2 changes: 1 addition & 1 deletion charts/bookkeeper-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

image:
repository: pravega/bookkeeper-operator
tag: 0.1.3
tag: 0.1.4
pullPolicy: IfNotPresent

## Install RBAC roles and bindings.
Expand Down
2 changes: 1 addition & 1 deletion charts/bookkeeper/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: bookkeeper
description: Bookkeeper Helm chart for Kubernetes
version: 0.9.0
version: 0.9.1
appVersion: 0.9.0
keywords:
- log storage
Expand Down
2 changes: 1 addition & 1 deletion charts/bookkeeper/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,5 @@ options:
# enableStatistics: "true"
# statsProviderClass: "org.apache.bookkeeper.stats.prometheus.PrometheusMetricsProvider"
# hostPathVolumeMounts: "foo=/tmp/foo,bar=/tmp/bar"
emptyDirVolumeMounts: "heap-dump=/tmp/dumpfile/heap"
emptyDirVolumeMounts: "heap-dump=/tmp/dumpfile/heap,logs=/opt/bookkeeper/logs"
# configMapVolumeMounts: "bk-log4j:log4j.properties=/opt/bookkeeper/conf/log4j.properties"
2 changes: 1 addition & 1 deletion charts/bookkeeper/values/large.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ storage:
volumeSize: 10Gi

jvmOptions:
memoryOpts: ["-Xms2g", "-XX:MaxDirectMemorySize=8g"]
memoryOpts: ["-Xms2g", "-XX:MaxDirectMemorySize=8g", "-XX:+ExitOnOutOfMemoryError", "-XX:+CrashOnOutOfMemoryError", "-XX:+HeapDumpOnOutOfMemoryError", "-XX:HeapDumpPath=/tmp/dumpfile/heap", "-XX:+UnlockExperimentalVMOptions", "-XX:+UseContainerSupport", "-XX:MaxRAMPercentage=50.0"]
2 changes: 1 addition & 1 deletion charts/bookkeeper/values/medium.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ storage:
volumeSize: 10Gi

jvmOptions:
memoryOpts: ["-Xms2g", "-XX:MaxDirectMemorySize=4g"]
memoryOpts: ["-Xms2g", "-XX:MaxDirectMemorySize=4g", "-XX:+ExitOnOutOfMemoryError", "-XX:+CrashOnOutOfMemoryError", "-XX:+HeapDumpOnOutOfMemoryError", "-XX:HeapDumpPath=/tmp/dumpfile/heap", "-XX:+UnlockExperimentalVMOptions", "-XX:+UseContainerSupport", "-XX:MaxRAMPercentage=50.0"]
2 changes: 1 addition & 1 deletion charts/bookkeeper/values/small.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ storage:
volumeSize: 10Gi

jvmOptions:
memoryOpts: ["-Xms1g", "-XX:MaxDirectMemorySize=2g"]
memoryOpts: ["-Xms1g", "-XX:MaxDirectMemorySize=2g", "-XX:+ExitOnOutOfMemoryError", "-XX:+CrashOnOutOfMemoryError", "-XX:+HeapDumpOnOutOfMemoryError", "-XX:HeapDumpPath=/tmp/dumpfile/heap", "-XX:+UnlockExperimentalVMOptions", "-XX:+UseContainerSupport", "-XX:MaxRAMPercentage=50.0"]
2 changes: 1 addition & 1 deletion deploy/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
serviceAccountName: bookkeeper-operator
containers:
- name: bookkeeper-operator
image: pravega/bookkeeper-operator:0.1.3
image: pravega/bookkeeper-operator:0.1.4
ports:
- containerPort: 60000
name: metrics
Expand Down

0 comments on commit eeeffbd

Please sign in to comment.