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
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ View [our docs](https://coder.com/docs/setup/installation) for detailed installa
25
25
| certs | object | Certificate that will be mounted inside Coder services. |`{"secret":{"key":"","name":""}}`|
26
26
| certs.secret.key | string | Key pointing to a certificate in the secret. |`""`|
27
27
| certs.secret.name | string | Name of the secret. |`""`|
28
-
| coderd | object | Primary service responsible for all things Coder! |`{"builtinProviderServiceAccount":{"annotations":{},"labels":{}},"devurlsHost":"","image":"","oidc":{"enableRefresh":false,"redirectOptions":{}},"podSecurityContext":{"runAsNonRoot":true,"runAsUser":1000,"seccompProfile":{"type":"RuntimeDefault"}},"replicas":1,"resources":{"limits":{"cpu":"250m","memory":"512Mi"},"requests":{"cpu":"250m","memory":"512Mi"}},"satellite":{"accessURL":"","enable":false,"primaryURL":""},"securityContext":{"allowPrivilegeEscalation":false,"readOnlyRootFilesystem":true,"seccompProfile":{"type":"RuntimeDefault"}},"serviceAnnotations":{},"serviceNodePorts":{"http":30080,"https":30443},"serviceSpec":{"externalTrafficPolicy":"Local","loadBalancerIP":"","loadBalancerSourceRanges":[],"type":"LoadBalancer"},"superAdmin":{"passwordSecret":{"key":"password","name":""}},"tls":{"devurlsHostSecretName":"","hostSecretName":""},"trustProxyIP":false}`|
28
+
| coderd | object | Primary service responsible for all things Coder! |`{"builtinProviderServiceAccount":{"annotations":{},"labels":{}},"devurlsHost":"","image":"","oidc":{"enableRefresh":false,"redirectOptions":{}},"podSecurityContext":{"runAsNonRoot":true,"runAsUser":1000,"seccompProfile":{"type":"RuntimeDefault"}},"replicas":1,"resources":{"limits":{"cpu":"250m","memory":"512Mi"},"requests":{"cpu":"250m","memory":"512Mi"}},"satellite":{"accessURL":"","enable":false,"primaryURL":""},"securityContext":{"allowPrivilegeEscalation":false,"readOnlyRootFilesystem":true,"seccompProfile":{"type":"RuntimeDefault"}},"serviceAnnotations":{},"serviceNodePorts":{"http":null,"https":null},"serviceSpec":{"externalTrafficPolicy":"Local","loadBalancerIP":"","loadBalancerSourceRanges":[],"type":"LoadBalancer"},"superAdmin":{"passwordSecret":{"key":"password","name":""}},"tls":{"devurlsHostSecretName":"","hostSecretName":""},"trustProxyIP":false}`|
29
29
| coderd.builtinProviderServiceAccount | object | Customize the built-in Kubernetes provider service account. |`{"annotations":{},"labels":{}}`|
30
30
| coderd.builtinProviderServiceAccount.annotations | object | A KV mapping of annotations. See: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/|`{}`|
31
31
| coderd.builtinProviderServiceAccount.labels | object | Add labels to the service account used for the built-in provider. |`{}`|
@@ -46,9 +46,9 @@ View [our docs](https://coder.com/docs/setup/installation) for detailed installa
46
46
| coderd.securityContext.readOnlyRootFilesystem | bool | Mounts the container's root filesystem as read-only. It is recommended to leave this setting enabled in production. This will override the same setting in the pod |`true`|
47
47
| coderd.securityContext.seccompProfile | object | Sets the seccomp profile for the migration and runtime containers. |`{"type":"RuntimeDefault"}`|
48
48
| coderd.serviceAnnotations | object | Extra annotations to apply to the coderd service. |`{}`|
49
-
| coderd.serviceNodePorts | object | Allows manually setting static node ports for the coderd service. This is only helpful if static ports are required, and usually should be left alone. By default these are dynamically chosen. |`{"http":30080,"https":30443}`|
50
-
| coderd.serviceNodePorts.http |int| Sets a static 'coderd' service non-TLS nodePort. This should usually be omitted. |`30080`|
51
-
| coderd.serviceNodePorts.https |int| Sets a static 'coderd' service TLS nodePort This should usually be omitted. |`30443`|
49
+
| coderd.serviceNodePorts | object | Allows manually setting static node ports for the coderd service. This is only helpful if static ports are required, and usually should be left alone. By default these are dynamically chosen. |`{"http":null,"https":null}`|
50
+
| coderd.serviceNodePorts.http |string| Sets a static 'coderd' service non-TLS nodePort. This should usually be omitted. |`nil`|
51
+
| coderd.serviceNodePorts.https |string| Sets a static 'coderd' service TLS nodePort This should usually be omitted. |`nil`|
52
52
| coderd.serviceSpec | object | Specification to inject for the coderd service. See: https://kubernetes.io/docs/concepts/services-networking/service/|`{"externalTrafficPolicy":"Local","loadBalancerIP":"","loadBalancerSourceRanges":[],"type":"LoadBalancer"}`|
53
53
| coderd.serviceSpec.externalTrafficPolicy | string | Set the traffic policy for the service. See: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/#preserving-the-client-source-ip|`"Local"`|
54
54
| coderd.serviceSpec.loadBalancerIP | string | Set the external IP address of the Ingress service. |`""`|
@@ -69,6 +69,8 @@ View [our docs](https://coder.com/docs/setup/installation) for detailed installa
| postgres.default.enable | bool | Deploys a PostgreSQL instance. We recommend using an external PostgreSQL instance in production. If true, all other values are ignored. |`true`|
0 commit comments