Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add note on memory limit to avoid java args break #8379

Merged
merged 5 commits into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions charts/janssen/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Kubernetes: `>=v1.22.0-0`
| auth-server.replicas | int | `1` | Service replica number. |
| auth-server.resources | object | `{"limits":{"cpu":"2500m","memory":"2500Mi"},"requests":{"cpu":"2500m","memory":"2500Mi"}}` | Resource specs. |
| auth-server.resources.limits.cpu | string | `"2500m"` | CPU limit. |
| auth-server.resources.limits.memory | string | `"2500Mi"` | Memory limit. |
| auth-server.resources.limits.memory | string | `"2500Mi"` | Memory limit. This value is used to calculate memory allocation for Java. Currently it only supports `Mi`. Please refrain from using other units. |
| auth-server.resources.requests.cpu | string | `"2500m"` | CPU request. |
| auth-server.resources.requests.memory | string | `"2500Mi"` | Memory request. |
| auth-server.topologySpreadConstraints | object | `{}` | Configure the topology spread constraints. Notice this is a map NOT a list as in the upstream API https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/ |
Expand Down Expand Up @@ -116,7 +116,7 @@ Kubernetes: `>=v1.22.0-0`
| casa.replicas | int | `1` | Service replica number. |
| casa.resources | object | `{"limits":{"cpu":"500m","memory":"500Mi"},"requests":{"cpu":"500m","memory":"500Mi"}}` | Resource specs. |
| casa.resources.limits.cpu | string | `"500m"` | CPU limit. |
| casa.resources.limits.memory | string | `"500Mi"` | Memory limit. |
| casa.resources.limits.memory | string | `"500Mi"` | Memory limit. This value is used to calculate memory allocation for Java. Currently it only supports `Mi`. Please refrain from using other units. |
| casa.resources.requests.cpu | string | `"500m"` | CPU request. |
| casa.resources.requests.memory | string | `"500Mi"` | Memory request. |
| casa.topologySpreadConstraints | object | `{}` | Configure the topology spread constraints. Notice this is a map NOT a list as in the upstream API https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/ |
Expand Down Expand Up @@ -146,7 +146,7 @@ Kubernetes: `>=v1.22.0-0`
| config-api.replicas | int | `1` | Service replica number. |
| config-api.resources | object | `{"limits":{"cpu":"1000m","memory":"1000Mi"},"requests":{"cpu":"1000m","memory":"1000Mi"}}` | Resource specs. |
| config-api.resources.limits.cpu | string | `"1000m"` | CPU limit. |
| config-api.resources.limits.memory | string | `"1000Mi"` | Memory limit. |
| config-api.resources.limits.memory | string | `"1000Mi"` | Memory limit. This value is used to calculate memory allocation for Java. Currently it only supports `Mi`. Please refrain from using other units. |
| config-api.resources.requests.cpu | string | `"1000m"` | CPU request. |
| config-api.resources.requests.memory | string | `"1000Mi"` | Memory request. |
| config-api.topologySpreadConstraints | object | `{}` | Configure the topology spread constraints. Notice this is a map NOT a list as in the upstream API https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/ |
Expand Down Expand Up @@ -263,7 +263,7 @@ Kubernetes: `>=v1.22.0-0`
| fido2.replicas | int | `1` | Service replica number. |
| fido2.resources | object | `{"limits":{"cpu":"500m","memory":"500Mi"},"requests":{"cpu":"500m","memory":"500Mi"}}` | Resource specs. |
| fido2.resources.limits.cpu | string | `"500m"` | CPU limit. |
| fido2.resources.limits.memory | string | `"500Mi"` | Memory limit. |
| fido2.resources.limits.memory | string | `"500Mi"` | Memory limit. This value is used to calculate memory allocation for Java. Currently it only supports `Mi`. Please refrain from using other units. |
| fido2.resources.requests.cpu | string | `"500m"` | CPU request. |
| fido2.resources.requests.memory | string | `"500Mi"` | Memory request. |
| fido2.service.name | string | `"http-fido2"` | The name of the fido2 port within the fido2 service. Please keep it as default. |
Expand Down Expand Up @@ -475,7 +475,7 @@ Kubernetes: `>=v1.22.0-0`
| link.replicas | int | `1` | Service replica number. |
| link.resources | object | `{"limits":{"cpu":"500m","memory":"1000Mi"},"requests":{"cpu":"500m","memory":"1000Mi"}}` | Resource specs. |
| link.resources.limits.cpu | string | `"500m"` | CPU limit. |
| link.resources.limits.memory | string | `"1000Mi"` | Memory limit. |
| link.resources.limits.memory | string | `"1000Mi"` | Memory limit. This value is used to calculate memory allocation for Java. Currently it only supports `Mi`. Please refrain from using other units. |
| link.resources.requests.cpu | string | `"500m"` | CPU request. |
| link.resources.requests.memory | string | `"1000Mi"` | Memory request. |
| link.topologySpreadConstraints | object | `{}` | Configure the topology spread constraints. Notice this is a map NOT a list as in the upstream API https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/ |
Expand Down Expand Up @@ -589,7 +589,7 @@ Kubernetes: `>=v1.22.0-0`
| saml.replicas | int | `1` | Service replica number. |
| saml.resources | object | `{"limits":{"cpu":"500m","memory":"1000Mi"},"requests":{"cpu":"500m","memory":"1000Mi"}}` | Resource specs. |
| saml.resources.limits.cpu | string | `"500m"` | CPU limit. |
| saml.resources.limits.memory | string | `"1000Mi"` | Memory limit. |
| saml.resources.limits.memory | string | `"1000Mi"` | Memory limit. This value is used to calculate memory allocation for Java. Currently it only supports `Mi`. Please refrain from using other units. |
| saml.resources.requests.cpu | string | `"500m"` | CPU request. |
| saml.resources.requests.memory | string | `"1000Mi"` | Memory request. |
| saml.topologySpreadConstraints | object | `{}` | Configure the topology spread constraints. Notice this is a map NOT a list as in the upstream API https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/ |
Expand Down Expand Up @@ -618,7 +618,7 @@ Kubernetes: `>=v1.22.0-0`
| scim.readinessProbe.httpGet.path | string | `"/jans-scim/sys/health-check"` | http readiness probe endpoint |
| scim.replicas | int | `1` | Service replica number. |
| scim.resources.limits.cpu | string | `"1000m"` | CPU limit. |
| scim.resources.limits.memory | string | `"1000Mi"` | Memory limit. |
| scim.resources.limits.memory | string | `"1000Mi"` | Memory limit. This value is used to calculate memory allocation for Java. Currently it only supports `Mi`. Please refrain from using other units. |
| scim.resources.requests.cpu | string | `"1000m"` | CPU request. |
| scim.resources.requests.memory | string | `"1000Mi"` | Memory request. |
| scim.service.name | string | `"http-scim"` | The name of the scim port within the scim service. Please keep it as default. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ spec:
secret:
secretName: {{ .Release.Name }}-cb-pass
items:
# we are mostly need non-superuser couchbase password file here
# we mostly need non-superuser couchbase password file here
- key: couchbase_password
path: couchbase_password
{{- end }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ spec:
secret:
secretName: {{ .Release.Name }}-cb-pass
items:
# we are mostly need non-superuser couchbase password file here
# we mostly need non-superuser couchbase password file here
- key: couchbase_password
path: couchbase_password
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/janssen/charts/casa/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ spec:
secret:
secretName: {{ .Release.Name }}-cb-pass
items:
# we are mostly need non-superuser couchbase password file here
# we mostly need non-superuser couchbase password file here
- key: couchbase_password
path: couchbase_password
{{- end }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ spec:
secret:
secretName: {{ .Release.Name }}-cb-pass
items:
# we are mostly need non-superuser couchbase password file here
# we mostly need non-superuser couchbase password file here
- key: couchbase_password
path: couchbase_password
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/janssen/charts/fido2/templates/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ spec:
secret:
secretName: {{ .Release.Name }}-cb-pass
items:
# we are mostly need non-superuser couchbase password file here
# we mostly need non-superuser couchbase password file here
- key: couchbase_password
path: couchbase_password
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/janssen/charts/link/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ spec:
secret:
secretName: {{ .Release.Name }}-cb-pass
items:
# we are mostly need non-superuser couchbase password file here
# we mostly need non-superuser couchbase password file here
- key: couchbase_password
path: couchbase_password
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/janssen/charts/saml/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ spec:
secret:
secretName: {{ .Release.Name }}-cb-pass
items:
# we are mostly need non-superuser couchbase password file here
# we mostly need non-superuser couchbase password file here
- key: couchbase_password
path: couchbase_password
{{- end }}
Expand Down
2 changes: 1 addition & 1 deletion charts/janssen/charts/scim/templates/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ spec:
secret:
secretName: {{ .Release.Name }}-cb-pass
items:
# we are mostly need non-superuser couchbase password file here
# we mostly need non-superuser couchbase password file here
- key: couchbase_password
path: couchbase_password
{{- end }}
Expand Down
14 changes: 7 additions & 7 deletions charts/janssen/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ auth-server:
limits:
# -- CPU limit.
cpu: 2500m
# -- Memory limit.
# -- Memory limit. This value is used to calculate memory allocation for Java. Currently it only supports `Mi`. Please refrain from using other units.
memory: 2500Mi
requests:
# -- CPU request.
Expand Down Expand Up @@ -454,7 +454,7 @@ config-api:
limits:
# -- CPU limit.
cpu: 1000m
# -- Memory limit.
# -- Memory limit. This value is used to calculate memory allocation for Java. Currently it only supports `Mi`. Please refrain from using other units.
memory: 1000Mi
requests:
# -- CPU request.
Expand Down Expand Up @@ -557,7 +557,7 @@ fido2:
limits:
# -- CPU limit.
cpu: 500m
# -- Memory limit.
# -- Memory limit. This value is used to calculate memory allocation for Java. Currently it only supports `Mi`. Please refrain from using other units.
memory: 500Mi
requests:
# -- CPU request.
Expand Down Expand Up @@ -665,7 +665,7 @@ casa:
limits:
# -- CPU limit.
cpu: 500m
# -- Memory limit.
# -- Memory limit. This value is used to calculate memory allocation for Java. Currently it only supports `Mi`. Please refrain from using other units.
memory: 500Mi
requests:
# -- CPU request.
Expand Down Expand Up @@ -1418,7 +1418,7 @@ scim:
limits:
# -- CPU limit.
cpu: 1000m
# -- Memory limit.
# -- Memory limit. This value is used to calculate memory allocation for Java. Currently it only supports `Mi`. Please refrain from using other units.
memory: 1000Mi
requests:
# -- CPU request.
Expand Down Expand Up @@ -1527,7 +1527,7 @@ link:
limits:
# -- CPU limit.
cpu: 500m
# -- Memory limit.
# -- Memory limit. This value is used to calculate memory allocation for Java. Currently it only supports `Mi`. Please refrain from using other units.
memory: 1000Mi
requests:
# -- CPU request.
Expand Down Expand Up @@ -1634,7 +1634,7 @@ saml:
limits:
# -- CPU limit.
cpu: 500m
# -- Memory limit.
# -- Memory limit. This value is used to calculate memory allocation for Java. Currently it only supports `Mi`. Please refrain from using other units.
memory: 1000Mi
requests:
# -- CPU request.
Expand Down