Skip to content
Merged
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
21 changes: 20 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ inputs:
"universe_domain": "googleapis.com"
},
"GCP_REGION": "us-east1"
},
"onprem": {
"ONPREM_SSH_INIT_SERVER_HOST": "<ssh_init_server_[host|ip]>",
"ONPREM_SSH_PRIVATE_KEY": "<ssh_private_key>",
"ONPREM_SSH_USER": "<ssh_user>"
}
}
},
Expand Down Expand Up @@ -73,6 +78,11 @@ inputs:
"universe_domain": "googleapis.com"
},
"GCP_REGION": "us-east1"
},
"onprem": {
"ONPREM_SSH_INIT_SERVER_HOST": "<ssh_init_server_[host|ip]>",
"ONPREM_SSH_PRIVATE_KEY": "<ssh_private_key>",
"ONPREM_SSH_USER": "<ssh_user>"
}
}
},
Expand Down Expand Up @@ -105,6 +115,11 @@ inputs:
"universe_domain": "googleapis.com"
},
"GCP_REGION": "us-east1"
},
"onprem": {
"ONPREM_SSH_INIT_SERVER_HOST": "<ssh_init_server_[host|ip]>",
"ONPREM_SSH_PRIVATE_KEY": "<ssh_private_key>",
"ONPREM_SSH_USER": "<ssh_user>"
}
}
}
Expand All @@ -122,7 +137,7 @@ inputs:
description: GitHub token with full access permissions to repositories (used by installer script and RMK).
required: true
rmk_cluster_provider:
description: Cluster provider. Allowed values are "aws", "azure", "gcp".
description: Cluster provider. Allowed values are "aws", "azure", "gcp", "onprem".
required: true
default: aws
rmk_command:
Expand Down Expand Up @@ -207,10 +222,14 @@ outputs:
runs:
using: composite
steps:
# setup-python action does not support provisioning Python on RHEL 9 self-hosted runners.
# Python is pre-installed on onprem hosts via configuration management.
# Therefore, this step may legitimately fail and should not block the workflow.
- name: Install python
uses: actions/setup-python@v4
with:
python-version: "3.10"
continue-on-error: true

- name: Install python dependencies
run: pip install -r ${{ github.action_path }}/requirements.txt
Expand Down