Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ rke2_tarball_images_path: "{{ rke2_data_path }}/agent/images"
# See https://docs.rke2.io/install/airgap?airgap-load-images=Manually+Deploy+Images#enable-conditional-image-imports
rke2_conditional_image_imports: false

# Architecture to be downloaded, currently there are releases for amd64 and s390x
# Architecture to be downloaded, currently there are releases for amd64, arm64 and s390x
rke2_architecture: amd64

# Destination directory for RKE2 installation script
Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ rke2_tarball_images_path: "{{ rke2_data_path }}/agent/images"
# See https://docs.rke2.io/install/airgap?airgap-load-images=Manually+Deploy+Images#enable-conditional-image-imports
rke2_conditional_image_imports: false

# Architecture to be downloaded, currently there are releases for amd64 and s390x
# Architecture to be downloaded, currently there are releases for amd64, arm64 and s390x
rke2_architecture: amd64

# Destination directory for RKE2 installation script
Expand Down
4 changes: 2 additions & 2 deletions meta/argument_specs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -282,10 +282,10 @@ argument_specs:

rke2_architecture:
type: str
choices: ["amd64", "s390x"]
choices: ["amd64", "arm64", "s390x"]
default: "amd64"

description: "Architecture to be downloaded, currently there are releases for amd64 and s390x"
description: "Architecture to be downloaded, currently there are releases for amd64, arm64 and s390x"

rke2_install_script_dir:
type: str
Expand Down