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

Add init containers #258

Merged
merged 7 commits into from
May 28, 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: 1 addition & 1 deletion charts/odrl-pap/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: odrl-pap
version: 0.0.17
version: 0.0.18
appVersion: 0.0.1
description: A Helm chart for running the odrl-pap on kubernetes.
icon: https://fiware.github.io/catalogue/img/fiware.png
Expand Down
6 changes: 3 additions & 3 deletions charts/odrl-pap/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# odrl-pap

![Version: 0.0.17](https://img.shields.io/badge/Version-0.0.17-informational?style=flat-square) ![AppVersion: 0.0.1](https://img.shields.io/badge/AppVersion-0.0.1-informational?style=flat-square)
![Version: 0.0.18](https://img.shields.io/badge/Version-0.0.18-informational?style=flat-square) ![AppVersion: 0.0.1](https://img.shields.io/badge/AppVersion-0.0.1-informational?style=flat-square)

A Helm chart for running the odrl-pap on kubernetes.

Expand Down Expand Up @@ -36,8 +36,8 @@ A Helm chart for running the odrl-pap on kubernetes.
| database.username | string | `"user"` | username to conncet the db - ignored if existing secret is configured |
| deployment.additionalAnnotations | object | `{}` | additional annotations for the deployment, if required |
| deployment.additionalLabels | object | `{}` | additional labels for the deployment, if required |
| deployment.additionalVolumeMounts | object | `{}` | additional volume mounts |
| deployment.additionalVolumes | object | `{}` | additional volumes to be added for the containers |
| deployment.additionalVolumeMounts | list | `[]` | additional volume mounts |
| deployment.additionalVolumes | list | `[]` | additional volumes to be added for the containers |
| deployment.affinity | object | `{}` | affinity template ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity |
| deployment.args | string | `nil` | arguments to be set for the container |
| deployment.command | string | `nil` | command to be used for starting the container |
Expand Down
4 changes: 2 additions & 2 deletions charts/odrl-pap/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ deployment:
# -- additional annotations for the deployment, if required
additionalAnnotations: {}
# -- additional volume mounts
additionalVolumeMounts: {}
additionalVolumeMounts: []
# -- additional volumes to be added for the containers
additionalVolumes: {}
additionalVolumes: []
## pap resource requests and limits, we leave the default empty to make that a concious choice by the user.
## for the autoscaling to make sense, you should configure this.
# resources:
Expand Down