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: docs/usage/installation.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,16 +44,17 @@ The `values.yaml` file allows you to configure various aspects of the Boot Opera
44
44
|`controllerManager.replicas`| Number of replicas for the manager deployment |`1`|
45
45
|`controllerManager.manager.image.repository`| Image repository for the manager container |`registry/boot-operator`|
46
46
|`controllerManager.manager.image.tag`| Image tag for the manager container |`"v0.1.0"`|
47
-
|`controllerManager.manager.args`| Arguments for the manager container |`--probe-image=probe-image`, `--probe-os-image=probe-os-image`, `--registry-url=registry-url`|
47
+
|`controllerManager.manager.args`| Arguments for the manager container |`--ipxe-service-url=ipxe-service-url`|
48
48
|`controllerManager.manager.resources`| Resource requests and limits for the manager container |`{cpu: 500m, memory: 128Mi}` (limits), `{cpu: 10m, memory: 64Mi}` (requests) |
49
49
|`controllerManager.manager.livenessProbe`| Liveness probe configuration for the manager container |`{initialDelaySeconds: 15, periodSeconds: 20, httpGet: {path: /healthz, port: 8081}}`|
50
50
|`controllerManager.manager.readinessProbe`| Readiness probe configuration for the manager container |`{initialDelaySeconds: 5, periodSeconds: 10, httpGet: {path: /readyz, port: 8081}}`|
51
51
|`controllerManager.manager.containerSecurityContext`| Security context for the manager container |`{allowPrivilegeEscalation: false, capabilities: {drop: ["ALL"]}}`|
52
52
|`controllerManager.podSecurityContext`| Security context for the manager pod |`{runAsNonRoot: true, seccompProfile: {type: RuntimeDefault}}`|
53
53
|`controllerManager.terminationGracePeriodSeconds`| Termination grace period for the manager pod |`10`|
54
-
|`controllerManager.serviceAccountName`| Service account name for the manager pod |`boot-operator-controller-manager`|
55
-
|`controllerManager.nodeSelector`| Node selector for the manager pod |`{kubernetes.io/os: linux, kubernetes.io/arch: arm64}`|
54
+
|`controllerManager.serviceAccountName`| Service account name for the manager pod |`controller-manager`|
56
55
|`controllerManager.tolerations`| Tolerations for the manager pod |`[{key: node-role.kubernetes.io/control-plane, effect: NoSchedule}]`|
56
+
|`controllerManager.hostNetwork`| Enable host networking for the manager pod |`false`|
57
+
|`controllerManager.strategy.type`| Deployment strategy for the manager pod |`Recreate`|
0 commit comments