From eeeffbdc3c400c8eb371ffac9a560e029ceb0d66 Mon Sep 17 00:00:00 2001 From: Srishti Thakkar Date: Fri, 28 May 2021 12:13:54 +0530 Subject: [PATCH] Issue 145: Updating charts to latest version (#146) Signed-off-by: SrishT Co-authored-by: SrishT --- charts/bookkeeper-operator/Chart.yaml | 4 ++-- charts/bookkeeper-operator/README.md | 2 +- charts/bookkeeper-operator/values.yaml | 2 +- charts/bookkeeper/Chart.yaml | 2 +- charts/bookkeeper/values.yaml | 2 +- charts/bookkeeper/values/large.yaml | 2 +- charts/bookkeeper/values/medium.yaml | 2 +- charts/bookkeeper/values/small.yaml | 2 +- deploy/operator.yaml | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/charts/bookkeeper-operator/Chart.yaml b/charts/bookkeeper-operator/Chart.yaml index 97526351..a18d9da6 100644 --- a/charts/bookkeeper-operator/Chart.yaml +++ b/charts/bookkeeper-operator/Chart.yaml @@ -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 diff --git a/charts/bookkeeper-operator/README.md b/charts/bookkeeper-operator/README.md index 68e544ac..29504f35 100644 --- a/charts/bookkeeper-operator/README.md +++ b/charts/bookkeeper-operator/README.md @@ -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` | diff --git a/charts/bookkeeper-operator/values.yaml b/charts/bookkeeper-operator/values.yaml index 2f6878be..d34edfa7 100644 --- a/charts/bookkeeper-operator/values.yaml +++ b/charts/bookkeeper-operator/values.yaml @@ -4,7 +4,7 @@ image: repository: pravega/bookkeeper-operator - tag: 0.1.3 + tag: 0.1.4 pullPolicy: IfNotPresent ## Install RBAC roles and bindings. diff --git a/charts/bookkeeper/Chart.yaml b/charts/bookkeeper/Chart.yaml index ace44400..12be940f 100644 --- a/charts/bookkeeper/Chart.yaml +++ b/charts/bookkeeper/Chart.yaml @@ -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 diff --git a/charts/bookkeeper/values.yaml b/charts/bookkeeper/values.yaml index 4deefe0d..a0a2b1be 100644 --- a/charts/bookkeeper/values.yaml +++ b/charts/bookkeeper/values.yaml @@ -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" diff --git a/charts/bookkeeper/values/large.yaml b/charts/bookkeeper/values/large.yaml index 9044eed5..87206c6b 100644 --- a/charts/bookkeeper/values/large.yaml +++ b/charts/bookkeeper/values/large.yaml @@ -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"] diff --git a/charts/bookkeeper/values/medium.yaml b/charts/bookkeeper/values/medium.yaml index a5221c8e..99126e3c 100644 --- a/charts/bookkeeper/values/medium.yaml +++ b/charts/bookkeeper/values/medium.yaml @@ -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"] diff --git a/charts/bookkeeper/values/small.yaml b/charts/bookkeeper/values/small.yaml index c10a4622..fe051978 100644 --- a/charts/bookkeeper/values/small.yaml +++ b/charts/bookkeeper/values/small.yaml @@ -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"] diff --git a/deploy/operator.yaml b/deploy/operator.yaml index 7cdc5305..b8742d51 100644 --- a/deploy/operator.yaml +++ b/deploy/operator.yaml @@ -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