You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -232,8 +232,10 @@ The Helm `config` values are converted into the `rstudio-pm.gcfg` service config
232
232
| pod.annotations | object | `{}` | annotations is a map of keys / values that will be added as annotations to the pods |
233
233
| pod.containerSecurityContext | object | `{"allowPrivilegeEscalation":false,"capabilities":{"drop":["ALL"]},"runAsNonRoot":true,"runAsUser":999,"seccompProfile":{"type":"{{ if .Values.enableSandboxing }}Unconfined{{ else }}RuntimeDefault{{ end }}"}}` | the [securityContext](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/) for the main Package Manager container. Evaluated as a template. |
234
234
| pod.env | list | `[]` | env is an array of maps that is injected as-is into the "env:" component of the pod.container spec |
235
+
| pod.hostAliases | list | `[]` | |
235
236
| pod.labels | object | `{}` | Additional labels to add to the rstudio-pm pods |
| pod.securityContext | object | `{"fsGroup":999,"fsGroupChangePolicy":"OnRootMismatch"}` | the [securityContext](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/) for the pod |
| pod.terminationGracePeriodSeconds | int | `120` | The termination grace period seconds allowed for the pod before shutdown |
@@ -251,6 +253,7 @@ The Helm `config` values are converted into the `rstudio-pm.gcfg` service config
251
253
| service.loadBalancerIP | string | `""` | The external IP to use with `service.type` LoadBalancer, when supported by the cloud provider |
252
254
| service.nodePort | bool | `false` | The explicit nodePort to use for `service.type` NodePort. If not provided, Kubernetes will choose one automatically |
253
255
| service.port | int | `80` | The Service port. This is the port your service will run under. |
256
+
| service.targetPort | int | `4242` | The port to forward to on the Package Manager pod. Also see pod.port |
254
257
| service.type | string | `"ClusterIP"` | The service type, usually ClusterIP (in-cluster only) or LoadBalancer (to expose the service using your cloud provider's load balancer) |
255
258
| serviceAccount.annotations | object | `{}` | Annotations for the ServiceAccount, if any |
256
259
| serviceAccount.create | bool | `true` | Whether to create a [Service Account](https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/) |
0 commit comments