Skip to content
This repository has been archived by the owner on Jan 20, 2025. It is now read-only.

Features/chart extra volume mount #247

Merged
merged 1 commit into from
Jan 26, 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
2 changes: 2 additions & 0 deletions charts/managed-identity-wallet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ See [helm upgrade](https://helm.sh/docs/helm/helm_upgrade/) for command document
|-----|------|---------|-------------|
| affinity | object | `{}` | Affinity configuration |
| envs | object | `{}` | envs Parameters for the application (will be provided as environment variables) |
| extraVolumeMounts | list | `[]` | add volume mounts to the miw deployment |
| extraVolumes | list | `[]` | add volumes to the miw deployment |
| fullnameOverride | string | `""` | String to fully override common.names.fullname template |
| image.pullPolicy | string | `"Always"` | PullPolicy |
| image.repository | string | `"tractusx/managed-identity-wallet"` | Image repository |
Expand Down
4 changes: 4 additions & 0 deletions charts/managed-identity-wallet/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ spec:
{{- end }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumeMounts:
{{- toYaml .Values.extraVolumeMounts | nindent 12 }}

{{- with .Values.nodeSelector }}
nodeSelector:
Expand All @@ -159,3 +161,5 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
volumes:
{{- toYaml .Values.extraVolumes | nindent 8 }}
6 changes: 6 additions & 0 deletions charts/managed-identity-wallet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,12 @@ networkPolicy:
from:
- namespaceSelector: {}

# -- add volumes to the miw deployment
extraVolumes: []

# -- add volume mounts to the miw deployment
extraVolumeMounts: []

## @section Managed Identity Wallet Primary Parameters
##
miw:
Expand Down
Loading