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

fix: enable resource config & remove unnecessary configs from helm-charts #1277

Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
15f145b
fix: enable resource config & remove unnecessary configs from helm-ch…
florianrusch-zf May 3, 2024
eb0bda4
remove duplicate line in migration guide
florianrusch-zf May 31, 2024
292958f
streamline services regarding labels & annotations
florianrusch-zf May 31, 2024
9bbbbe4
add missing network policy to azure chart
florianrusch-zf May 31, 2024
c8c4d4d
Update values documentations
florianrusch-zf May 31, 2024
341bd6a
Remove value `businessPartnerValidation.log.agreementValidation`
florianrusch-zf May 31, 2024
3a9ce8d
Remove helm-docs version from README.md footer
florianrusch-zf May 31, 2024
3bbf6ed
Remove unnecessary values from memory chart
florianrusch-zf May 31, 2024
6efa437
fix merge conflict left overs
florianrusch-zf May 31, 2024
f3dd294
fix broken indentations
florianrusch-zf May 31, 2024
fe88bbb
add documentation about control api
florianrusch-zf May 31, 2024
f5708cd
fix missing empty line at EOF
florianrusch-zf May 31, 2024
24ab797
update copyright
florianrusch-zf May 31, 2024
93f6fe7
update test deployment values
florianrusch-zf May 31, 2024
e127e87
remove usage of `businessPartnerValidation.log.agreementValidation`
florianrusch-zf May 31, 2024
f15fcab
update dependency file
florianrusch-zf May 31, 2024
cb529ea
fix wrong require
florianrusch-zf May 31, 2024
371c3f6
Remove unnecessary if statement for required value
florianrusch-zf Jun 10, 2024
3fba43d
Merge remote-tracking branch 'origin/main' into fix/enable-default-re…
florianrusch-zf Jun 10, 2024
e093a74
Use similar memory values for control and dataplane
florianrusch-zf Jun 11, 2024
94383bb
Merge remote-tracking branch 'origin/main' into fix/enable-default-re…
florianrusch-zf Jun 11, 2024
174e6ef
Regenerate README.md's
florianrusch-zf Jun 11, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -289,10 +289,8 @@ spec:
## BDRS CLIENT ##
#################

{{- if .Values.controlplane.bdrs.server.url }}
- name: "TX_IAM_IATP_BDRS_SERVER_URL"
value: {{ .Values.controlplane.bdrs.server.url | required ".Values.controlplane.bdrs.server.url is required" | quote }}
{{- end }}
florianrusch-zf marked this conversation as resolved.
Show resolved Hide resolved
{{- if .Values.controlplane.bdrs.cache_validity_seconds }}
- name: "TX_IAM_IATP_BDRS_CACHE_VALIDITY"
value: {{ .Values.controlplane.bdrs.cache_validity_seconds | quote}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,10 +220,8 @@ spec:
## BDRS CLIENT ##
#################

{{- if .Values.runtime.bdrs.server.url }}
- name: "TX_IAM_IATP_BDRS_SERVER_URL"
value: {{ .Values.runtime.bdrs.server.url | required ".Values.runtime.bdrs.server.url is required" | quote }}
{{- end }}
{{- if .Values.runtime.bdrs.cache_validity_seconds }}
- name: "TX_IAM_IATP_BDRS_CACHE_VALIDITY"
value: {{ .Values.runtime.bdrs.cache_validity_seconds | quote}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -290,10 +290,8 @@ spec:
## BDRS CLIENT ##
#################

{{- if .Values.controlplane.bdrs.server.url }}
- name: "TX_IAM_IATP_BDRS_SERVER_URL"
value: {{ .Values.controlplane.bdrs.server.url | required ".Values.controlplane.bdrs.server.url is required" | quote }}
{{- end }}
{{- if .Values.controlplane.bdrs.cache_validity_seconds }}
- name: "TX_IAM_IATP_BDRS_CACHE_VALIDITY"
value: {{ .Values.controlplane.bdrs.cache_validity_seconds | quote}}
Expand Down