Skip to content

Commit 3593c45

Browse files
Update README.md automatically via GitHub Actions
1 parent 0cc0c5a commit 3593c45

1 file changed

Lines changed: 10 additions & 5 deletions

File tree

  • charts/nl-portal-configpanel-backend/nl-portal-configpanel-backend

charts/nl-portal-configpanel-backend/nl-portal-configpanel-backend/README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
# nl-portal-configpanel-backend
22

3-
![Version: 1.0.1](https://img.shields.io/badge/Version-1.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.0.0](https://img.shields.io/badge/AppVersion-2.0.0-informational?style=flat-square)
3+
![Version: 3.0.0](https://img.shields.io/badge/Version-3.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.0.0](https://img.shields.io/badge/AppVersion-2.0.0-informational?style=flat-square)
44

55
NL-Portal Configuration Panel Helm chart to be used in Kubernetes clusters.
66

7+
## Requirements
8+
9+
Kubernetes: `>=1.23.0`
10+
711
## Values
812

913
| Key | Type | Default | Description |
@@ -13,29 +17,30 @@ NL-Portal Configuration Panel Helm chart to be used in Kubernetes clusters.
1317
| autoscaling.maxReplicas | int | `100` | |
1418
| autoscaling.minReplicas | int | `1` | |
1519
| autoscaling.targetCPUUtilizationPercentage | int | `80` | |
20+
| existingSecret | string | `nil` | Name of an existing Secret holding all secret configuration variables. If set, no Secret will be created by the chart and secretEnvVars is ignored. See `nl-portal-configpanel-backend/templates/secret.yaml` for required keys. |
1621
| extraEnvVars | list | `[]` | Array with extra environment variables to add e.g: extraEnvVars: - name: FOO value: "bar" |
1722
| extraVolumeMounts | list | `[]` | Optionally specify extra list of additional volumeMounts e.g: extraVolumeMounts: - name: verify-certs mountPath: /etc/ssl/certs/extra-certs/ |
1823
| extraVolumes | list | `[]` | Optionally specify extra list of additional volumes e.g: extraVolumes: - name: verify-certs configMap: name: verify-certs |
1924
| fullnameOverride | string | `""` | |
2025
| image.pullPolicy | string | `"IfNotPresent"` | |
2126
| image.repository | string | `"ghcr.io/nl-portal/configuration-panel-backend"` | |
22-
| image.tag | string | `"latest"` | Overrides the image tag whose default is the chart appVersion. |
27+
| image.tag | string | `""` | Overrides the image tag whose default is the chart appVersion. |
2328
| imagePullSecrets | list | `[]` | |
2429
| ingress.annotations | object | `{}` | |
2530
| ingress.className | string | `""` | |
2631
| ingress.enabled | bool | `false` | |
2732
| ingress.hosts[0] | string | `"nl-portal-config-panel.example.com"` | |
2833
| ingress.tls | list | `[]` | |
29-
| livenessProbe | object | `{"enabled":true,"failureThreshold":6,"httpGet":{"path":"/management/health","port":"http"},"initialDelaySeconds":5,"periodSeconds":10,"successThreshold":1,"timeoutSeconds":1}` | Liveness probe for container health checking |
34+
| livenessProbe | object | `{"failureThreshold":6,"httpGet":{"path":"/management/health/liveness","port":"http"},"initialDelaySeconds":5,"periodSeconds":10,"successThreshold":1,"timeoutSeconds":1}` | Liveness probe for container health checking |
3035
| nameOverride | string | `""` | |
3136
| nodeSelector | object | `{}` | |
3237
| podAnnotations | object | `{}` | |
3338
| podLabels | object | `{}` | |
3439
| podSecurityContext | object | `{}` | |
35-
| readinessProbe | object | `{"enabled":true,"failureThreshold":6,"httpGet":{"path":"/management/health","port":"http"},"initialDelaySeconds":5,"periodSeconds":10,"successThreshold":1,"timeoutSeconds":1}` | Readiness probe for container health checking |
40+
| readinessProbe | object | `{"failureThreshold":6,"httpGet":{"path":"/management/health/readiness","port":"http"},"initialDelaySeconds":5,"periodSeconds":10,"successThreshold":1,"timeoutSeconds":1}` | Readiness probe for container health checking |
3641
| replicaCount | int | `1` | |
3742
| resources | object | `{}` | |
38-
| secretEnvVars | list | `[]` | Optionally specify environment variables sourced from various Secrets Setting these implies that no Secret will be created by the chart e.g: secretEnvVars: - name: DATABASE_PASSWORD secretKeyRef: name: my-existing-secret key: password |
43+
| secretEnvVars | list | `[]` | Optionally specify environment variables sourced from various Secrets Use for partial secret injection (individual keys from different secrets). Only used when existingSecret is null. Setting secretEnvVars disables the chart-managed Secret. e.g: secretEnvVars: - name: DATABASE_PASSWORD valueFrom: secretKeyRef: name: my-existing-secret key: password |
3944
| securityContext | object | `{}` | |
4045
| service.port | int | `80` | |
4146
| service.targetPort | int | `8080` | |

0 commit comments

Comments
 (0)