-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update openmfp chart and local-setup
--- On-behalf-of: @SAP angel.kafazov@sap.com Signed-off-by: Angel Kafazov <akafazov@cst-bg.net>
- Loading branch information
Showing
31 changed files
with
23 additions
and
345 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +0,0 @@ | ||
{{ template "chart.header" . }} | ||
{{ template "chart.description" . }} | ||
|
||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} | ||
|
||
## Additional Information | ||
|
||
The `common` chart is a library of common resources that are shared across all other charts in the repository. It has no templates, but provides helm template functions and default values that can be used by other charts. | ||
|
||
{{ template "chart.requirementsSection" . }} | ||
|
||
{{ template "chart.valuesHeader" . }} | ||
|
||
The values in the `defaults:` section can be reused from other charts by using the lookup function "common.getKeyValue". It implements lookup on three levels: | ||
|
||
1. Looks for `keyOverride` in the chart's values.yaml | ||
2. Looks for `global.key` in the chart's or parent chart's values.yaml | ||
3. Uses the `key` in the chart's values.yaml | ||
4. Uses the `common.defaults.key` value from the table below. | ||
|
||
1 has precendence over 2 over 3 over 4 respectively. This approach allows for individual charts to have minimal configuration, while still being able to override parameters locally. | ||
|
||
Example | ||
``` | ||
1) .Values.deployment.resources.limits.memoryOveride = 4096MB | ||
2) .Values.global.deployment.resources.limits.memory = 2048MB | ||
3) .Values.deployment.resources.limits.memory = 1024MB | ||
4) .Values.common.defaults.deployment.resources.limits.memory = default 512MB | ||
``` | ||
|
||
{{ template "chart.valuesTable" . }} | ||
|
||
{{ template "helm-docs.versionFooter" . }} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +0,0 @@ | ||
{{ template "chart.header" . }} | ||
{{ template "chart.description" . }} | ||
|
||
{{ template "chart.versionBadge" . }}{{ template "chart.typeBadge" . }}{{ template "chart.appVersionBadge" . }} | ||
|
||
## Additional Information | ||
|
||
The `common` chart is a library of common resources that are shared across all other charts in the repository. It has no templates, but provides helm template functions and default values that can be used by other charts. | ||
|
||
{{ template "chart.requirementsSection" . }} | ||
|
||
{{ template "chart.valuesHeader" . }} | ||
|
||
The values in the `defaults:` section can be reused from other charts by using the lookup function "common.getKeyValue". It implements lookup on three levels: | ||
|
||
1. Looks for `keyOverride` in the chart's values.yaml | ||
2. Looks for `global.key` in the chart's or parent chart's values.yaml | ||
3. Uses the `key` in the chart's values.yaml | ||
4. Uses the `common.defaults.key` value from the table below. | ||
|
||
1 has precendence over 2 over 3 over 4 respectively. This approach allows for individual charts to have minimal configuration, while still being able to override parameters locally. | ||
|
||
Example | ||
``` | ||
1) .Values.deployment.resources.limits.memoryOveride = 4096MB | ||
2) .Values.global.deployment.resources.limits.memory = 2048MB | ||
3) .Values.deployment.resources.limits.memory = 1024MB | ||
4) .Values.common.defaults.deployment.resources.limits.memory = default 512MB | ||
``` | ||
|
||
{{ template "chart.valuesTable" . }} | ||
|
||
{{ template "helm-docs.versionFooter" . }} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
charts/infra/templates/external-secret-account-operator.yaml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
apiVersion: {{ .Values.gateway.apiVersion }} | ||
{{- if eq (include "common.getKeyValue" (dict "Values" .Values "key" "istio.enabled")) "true" -}} | ||
apiVersion: {{ .Values.istio.networking.apiVersion }} | ||
kind: Gateway | ||
metadata: | ||
name: {{ .Values.gateway.name}} | ||
name: {{ .Values.istio.gateway.name}} | ||
namespace: {{ .Release.Namespace }} | ||
{{- if .Values.gateway.annotations }} | ||
{{- if .Values.istio.gateway.annotations }} | ||
annotations: | ||
{{- toYaml .Values.gateway.annotations | nindent 4 }} | ||
{{- toYaml .Values.istio.gateway.annotations | nindent 4 }} | ||
{{- end }} | ||
spec: | ||
selector: | ||
{{ .Values.gateway.selector | toYaml | indent 4 }} | ||
{{ .Values.istio.gateway.selector | toYaml | indent 4 }} | ||
servers: | ||
{{ toYaml .Values.istio.gateway.servers | indent 4 }} | ||
{{- end -}} | ||
{{- end -}} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
-3 Bytes
(100%)
charts/openmfp-crds/charts/account-operator-crds-0.1.11.tgz
Binary file not shown.
Binary file modified
BIN
-1 Byte
(100%)
charts/openmfp-crds/charts/extension-manager-operator-crds-0.2.0.tgz
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file added
BIN
+11.1 KB
charts/openmfp/tmpcharts-1369650/extension-manager-operator-0.24.0.tgz
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.