Skip to content

Commit 27b00c4

Browse files
committed
docs(chart): Update chart/README.md according to latest chart changes.
1 parent ee29ddb commit 27b00c4

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

chart/README.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ The following table lists the configurable parameters of the Helm chart and thei
3939
| `config.default.base_href` | Base href for the SPA | `"/"` |
4040
| `config.default.spa_config.endpoints` | SPA endpoints configuration | `{}` |
4141
| `config.default.http.enabled` | Enable HTTP | `true` |
42-
| `config.default.http.port` | HTTP port | `80` |
42+
| `config.default.http.port` | HTTP port | `8080` |
4343
| `config.default.https.enabled` | Enable HTTPS | `false` |
44-
| `config.default.https.port` | HTTPS port | `443` |
44+
| `config.default.https.port` | HTTPS port | `8443` |
4545
| `config.default.https.ssl_certificate` | Path to SSL certificate | `/var/run/secrets/tls/tls.crt` |
4646
| `config.default.https.ssl_certificate_key` | Path to SSL certificate key | `/var/run/secrets/tls/tls.key` |
4747
| `labels` | Labels added to all resource types | `{"app.kubernetes.io/component": "frontend"}` |
@@ -59,17 +59,19 @@ The following table lists the configurable parameters of the Helm chart and thei
5959
| `pod.container.image.tag` | Container image tag | `""` |
6060
| `pod.container.image.pullSecrets` | Image pull secrets | `[]` |
6161
| `pod.container.securityContext.capabilities.drop` | Capabilities to drop | `["ALL"]` |
62-
| `pod.container.securityContext.readOnlyRootFilesystem` | Use read-only root filesystem | `true` |
63-
| `pod.container.securityContext.runAsNonRoot` | Run container as non-root | `true` |
64-
| `pod.container.livenessProbe.httpGet.path` | Path for liveness probe | `/health/liveness` |
65-
| `pod.container.livenessProbe.httpGet.port` | Port for liveness probe | `http` |
66-
| `pod.container.readinessProbe.httpGet.path` | Path for readiness probe | `/health/readiness` |
67-
| `pod.container.readinessProbe.httpGet.port` | Port for readiness probe | `http` |
62+
| `pod.container.securityContext.capabilities.add` | Capabilities to add | `["NET_BIND_SERVICE"]` |
63+
| `pod.container.securityContext.readOnlyRootFilesystem` | Use read-only root filesystem | `true` |
64+
| `pod.container.securityContext.allowPrivilegeEscalation`| Allow privilege escalation | `false` |
65+
| `pod.container.securityContext.runAsNonRoot` | Run container as non-root | `true` |
66+
| `pod.container.livenessProbe.httpGet.path` | Path for liveness probe | `/health/liveness` |
67+
| `pod.container.livenessProbe.httpGet.port` | Port for liveness probe | `http` |
68+
| `pod.container.readinessProbe.httpGet.path` | Path for readiness probe | `/health/readiness` |
69+
| `pod.container.readinessProbe.httpGet.port` | Port for readiness probe | `http` |
6870
| `pod.container.volumeMounts` | Volume mounts for the container | `[]` |
6971
| `pod.container.resources.limits.cpu` | CPU limit for the container | `2` |
7072
| `pod.container.resources.limits.memory` | Memory limit for the container | `4Gi` |
7173
| `pod.container.resources.requests.cpu` | CPU request for the container | `100m` |
72-
| `pod.container.resources.requests.memory` | Memory request for the container | `512Mi` |
74+
| `pod.container.resources.requests.memory` | Memory request for the container | `512Mi` |
7375
| `pod.nodeSelector` | Node selector for the pod | `{}` |
7476
| `pod.tolerations` | Tolerations for the pod | `[]` |
7577
| `pod.affinity` | Affinity for the pod | `{}` |
@@ -79,7 +81,7 @@ The following table lists the configurable parameters of the Helm chart and thei
7981
| `pod.autoscaling.enabled` | Enable autoscaling | `false` |
8082
| `pod.autoscaling.minReplicas` | Minimum replicas for autoscaling | `1` |
8183
| `pod.autoscaling.maxReplicas` | Maximum replicas for autoscaling | `4` |
82-
| `pod.autoscaling.targetCPUUtilizationPercentage` | Target CPU utilization percentage for autoscaling | `50` |
84+
| `pod.autoscaling.targetCPUUtilizationPercentage` | Target CPU utilization percentage for autoscaling | `50` |
8385
| `pod.autoscaling.customMetrics` | Custom metrics for autoscaling | `[]` |
8486
| `service.type` | Type of the service | `ClusterIP` |
8587
| `service.httpPort` | HTTP port for the service | `80` |
@@ -99,7 +101,7 @@ The following table lists the configurable parameters of the Helm chart and thei
99101
| `openshift.route.enabled` | Enable OpenShift Route | `false` |
100102
| `openshift.route.annotations` | Annotations for OpenShift Route | `{}` |
101103
| `openshift.route.tls.termination` | TLS termination for OpenShift Route | `reencrypt` |
102-
| `openshift.route.tls.insecureEdgeTerminationPolicy` | Insecure edge termination policy for OpenShift Route | `Redirect` |
104+
| `openshift.route.tls.insecureEdgeTerminationPolicy` | Insecure edge termination policy for OpenShift Route | `Redirect` |
103105

104106
## Usage
105107

0 commit comments

Comments
 (0)