InfoGrab Docs

Auto-Update Config 리소스 참조

Teleport auto-update config 리소스의 필드 종합 목록을 제공합니다.

auto-update 구성 리소스는 Teleport 에이전트 및 클라이언트 도구 관리형 업데이트(v2)의 구성 옵션을 포함합니다. Warning autoupdate_config 및 autoupdate_version 리소스는 관리형 업데이트 v2와 관리형 업데이트 v1을 구성합니다. 위의 cluster_maintenance_config 는 현재 지원되지만 향후 버전에서 deprecated될 관리형 업데이트 v1만 구성합니다. kind: autoupdate_config metadata: # autoupdate_config is a singleton resource. There can be only one instance # of this resource in the Teleport cluster, and it must be named `autoupdate-config`. name: autoupdate-config spec: agents: # mode allows users to enable, disable, or suspend agent updates at the # cluster level. Disable agent automatic updates only if self-managed # updates are in place. This value may also be set in autoupdate_version. # If set in both places, disabled overrides suspended, which overrides enabled. # Possible values: "enabled", "disabled", "suspended" # Default: "disabled" (unless specified in autoupdate_version) mode: enabled # strategy used to roll out updates to agents. Applies to every group. # The halt-on-error strategy ensures that groups earlier in the schedule are # given the opportunity to update to the target_version before groups that are # later in the schedule. (Currently, the schedule must be stopped manually by # setting the mode to "suspended" or "disabled". In the future, errors will be # detected automatically). # The time-based strategy ensure that each group updates within a defined # time window, with no dependence between groups. # Possible values: "halt-on-error" or "time-based" # Default: "ha