Skip to content

Commit

Permalink
fix: change min ram percentage to initial (like it should be)
Browse files Browse the repository at this point in the history
  • Loading branch information
philipsens committed Dec 15, 2023
1 parent c3f3500 commit 460b3db
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion charts/ff-common/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: ff-common
description: ff-common chart building components and helpers for the Frank!Framework
version: 0.1.17
version: 0.1.18
appVersion: "7.8"
type: library
home: https://frankframework.org
Expand Down
2 changes: 1 addition & 1 deletion charts/ff-common/templates/_configmap.env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ data:
application.server.type.custom: "{{ .Values.frank.server.transactionManager }}"
{{- with .Values.frank.memory }}
{{- if .percentage }}
JAVA_OPTS: "-XX:MinRAMPercentage={{ .minimum }} -XX:MaxRAMPercentage={{ .maximum }}"
JAVA_OPTS: "-XX:InitialRAMPercentage={{ .minimum }} -XX:MaxRAMPercentage={{ .maximum }}"
{{- else }}
JAVA_OPTS: "-Xms{{ .minimum }} -Xmx{{ .maximum }}"
{{- end }}
Expand Down
4 changes: 2 additions & 2 deletions charts/ff-test/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: ff-test
description: A Helm chart for testing the Frank!Framework on Kubernetes
version: 0.2.29
version: 0.2.30
appVersion: "latest-tomcat"
type: application
home: https://frankframework.org
Expand All @@ -12,5 +12,5 @@ keywords:

dependencies:
- name: ff-common
version: ~0.1.17
version: ~0.1.18
repository: file://../ff-common
4 changes: 2 additions & 2 deletions charts/frank2example/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: frank2example
description: A Helm chart for running Frank2Example on Kubernetes
version: 0.2.11
version: 0.2.12
appVersion: "latest"
type: application
home: https://frankframework.org
Expand All @@ -12,5 +12,5 @@ keywords:

dependencies:
- name: ff-common
version: ~0.1.17
version: ~0.1.18
repository: file://../ff-common
4 changes: 2 additions & 2 deletions charts/frankframework/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apiVersion: v2
name: frankframework
description: A Helm chart for running the Frank!Framework on Kubernetes
version: 0.2.11
version: 0.2.12
appVersion: "7.8"
type: application
home: https://frankframework.org
icon: https://raw.githubusercontent.com/frankframework/charts/master/charts/frankframework/icon.svg

dependencies:
- name: ff-common
version: ~0.1.17
version: ~0.1.18
repository: file://../ff-common
4 changes: 2 additions & 2 deletions ff-template/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apiVersion: v2
name: ff-template
description: A Helm chart for running a Frank! on Kubernetes
version: 0.1.7
version: 0.1.8
appVersion: "7.8"
type: application
home: https://frankframework.org
icon: https://raw.githubusercontent.com/frankframework/charts/master/ff-template/icon.svg

dependencies:
- name: ff-common
version: ~0.1.17
version: ~0.1.18
repository: file://../charts/ff-common

0 comments on commit 460b3db

Please sign in to comment.