Auto-Update Version 리소스 참조
auto-update 버전 리소스를 통해 클러스터 관리자는 에이전트 및 클라이언트 도구 관리형 업데이트에 사용되는 버전을 관리할 수 있습니다. autoupdate_config 및 autoupdate_version 리소스는 관리형 업데이트 v2와 관리형 업데이트 v1을 구성합니다.
auto-update 버전 리소스를 통해 클러스터 관리자는 에이전트 및 클라이언트 도구 관리형 업데이트에 사용되는 버전을 관리할 수 있습니다.
autoupdate_config 및 autoupdate_version 리소스는 관리형 업데이트 v2와 관리형 업데이트 v1을 구성합니다.
위의 cluster_maintenance_config는 현재 지원되지만 향후 버전에서 deprecated될 관리형 업데이트 v1만 구성합니다.
이 리소스는 클라이언트가 보안 패치를 수신하고 클러스터와의 호환성을 유지하도록 클라우드 관리형 Teleport Enterprise에서는 편집할 수 없습니다.
kind: autoupdate_version
metadata:
# autoupdate_version is a singleton resource. There can be only one instance
# of this resource in the Teleport cluster, and it must be named `autoupdate-version`.
name: autoupdate-version
spec:
agents:
# start_version is the version used to install new agents before their
# group's scheduled update time. Agents never update to the start_version
# automatically, but may be required to via "teleport-update update --now".
start_version: v17.2.0
# target_version is the version that agents update to during their group's
# scheduled update time. New agents also use this version after their group's
# scheduled update time.
target_version: v17.2.1
# schedule used to roll out updates.
# The regular schedule is defined in the autoupdate_config resource.
# The immediate schedule updates all agents to target_version immediately.
# Possible values: "regular" or "immediate"
# Default: "regular"
schedule: regular
# 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_config.
# If set in both places, disabled overrides suspended, which overrides enabled.
# Possible values: "enabled", "disabled", "suspended"
# Default: "disabled" (unless specified in autoupdate_config)
mode: enabled
tools:
# target_version is the semver version of client tools the cluster will advertise.
# Client tools such as tsh and tctl will update to this version at login if the
# mode set in autoupdate_config is set to enabled.
# Default: cluster version
target_version: v17.2.1
자세한 내용은 Teleport 클라이언트 도구 관리형 업데이트 및 Teleport 에이전트 관리형 업데이트를 참조하세요.
