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
+5-2Lines changed: 5 additions & 2 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":"","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"}},"serviceSpec":{"externalTrafficPolicy":"Local","loadBalancerIP":"","loadBalancerSourceRanges":[],"type":"LoadBalancer"},"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":{},"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. |`{}`|
@@ -45,11 +45,14 @@ View [our docs](https://coder.com/docs/setup/installation) for detailed installa
45
45
| coderd.securityContext.allowPrivilegeEscalation | bool | Controls whether the container can gain additional privileges, such as escalating to root. It is recommended to leave this setting disabled in production. |`false`|
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
+
| coderd.serviceAnnotations | object | Extra annotations to apply to the coderd service. |`{}`|
48
49
| 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"}`|
49
50
| 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"`|
50
51
| coderd.serviceSpec.loadBalancerIP | string | Set the external IP address of the Ingress service. |`""`|
51
52
| coderd.serviceSpec.loadBalancerSourceRanges | list | Traffic through the LoadBalancer will be restricted to the specified client IPs. This field will be ignored if the cloud provider does not support this feature. |`[]`|
52
53
| coderd.serviceSpec.type | string | Set the type of Service. See: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types|`"LoadBalancer"`|
54
+
| coderd.superAdmin.passwordSecret.key | string | The key of the secret that contains the super admin password. |`"password"`|
55
+
| coderd.superAdmin.passwordSecret.name | string | Name of a secret that should be used to determine the password for the super admin account. The password should be contained in the field `password`, or the manually specified one. |`""`|
53
56
| coderd.tls | object | TLS configuration for coderd. These options will override dashboard configuration. |`{"devurlsHostSecretName":"","hostSecretName":""}`|
54
57
| coderd.tls.devurlsHostSecretName | string | The secret to use for DevURL TLS. |`""`|
55
58
| coderd.tls.hostSecretName | string | The secret to use for TLS. |`""`|
@@ -75,7 +78,7 @@ View [our docs](https://coder.com/docs/setup/installation) for detailed installa
75
78
| postgres.port | string | Port of the external PostgreSQL instance. |`""`|
76
79
| postgres.sslMode | string | Provides variable levels of protection for the PostgreSQL connection. For acceptable values, see: https://www.postgresql.org/docs/9.1/libpq-ssl.html|`"require"`|
77
80
| postgres.user | string | User of the external PostgreSQL instance. |`""`|
78
-
| services | object | Kubernetes Service configuration that applies to Coder services. |`{"annotations":{},"clusterDomainSuffix":".svc.cluster.local","nodeSelector":{"kubernetes.io/arch":"amd64","kubernetes.io/os":"linux"},"tolerations":[],"type":"ClusterIP"}`|
81
+
| services | object | Kubernetes Service configuration that applies to Coder services. |`{"annotations":{},"clusterDomainSuffix":".svc.cluster.local","nodeSelector":{"kubernetes.io/arch":"amd64","kubernetes.io/os":"linux"},"tolerations":[],"type":"ClusterIP"}`|
79
82
| services.annotations | object | A KV mapping of annotations. See: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/|`{}`|
80
83
| services.clusterDomainSuffix | string | Custom domain suffix for DNS resolution in your cluster. See: https://kubernetes.io/docs/tasks/administer-cluster/dns-custom-nameservers/|`".svc.cluster.local"`|
0 commit comments