forked from milvus-io/milvus
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: greg pereira <[email protected]>
- Loading branch information
1 parent
9e16418
commit b05afe7
Showing
9 changed files
with
209 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,15 +20,18 @@ env: | |
TF_VAR_ami_id: ${{ secrets.AMI_ID }} | ||
|
||
jobs: | ||
ai-lab-podman-remote: | ||
rhel9-milvus: | ||
runs-on: ubuntu-24.04 | ||
strategy: | ||
fail-fast: false | ||
max-parallel: 1 | ||
steps: | ||
- name: Setup Terraform | ||
uses: hashicorp/[email protected] | ||
with: | ||
terraform_version: "1.7.5" | ||
|
||
- name: Checkout | ||
- name: Checkout code on runner | ||
uses: actions/[email protected] | ||
|
||
- name: sshkeygen for ansible | ||
|
@@ -39,20 +42,58 @@ jobs: | |
|
||
- name: Terraform Apply | ||
run: terraform apply -auto-approve | ||
|
||
- name: Set up Python on runner | ||
uses: actions/[email protected] | ||
with: | ||
python-version: '3.11' | ||
|
||
- name: Terraform Output | ||
id: terraform-output | ||
- name: Install Ansible on runner | ||
run: | | ||
echo "id=$(terraform output id | xargs)" >> $GITHUB_OUTPUT | ||
echo "url=$(terraform output host | xargs)" >> $GITHUB_OUTPUT | ||
echo "ssh_public_key=$(terraform output ssh_public_key | xargs)" >> $GITHUB_OUTPUT | ||
echo "pem_filename=$(terraform output pem_filename | xargs)" >> $GITHUB_OUTPUT | ||
python3 -m pip install --upgrade pip | ||
pip install ansible | ||
# currently no reqs | ||
# - name: Ansible Collections | ||
# working-directory: build/ci/rhel-ansible | ||
# run: ansible-galaxy install -r requirements.yaml | ||
|
||
- name: Install podman remote | ||
- name: Install jq and build inventory on runner | ||
run: | | ||
sudo apt-get install -y podman podman-remote | ||
sudo apt-get install -y jq | ||
PUBLIC_IP=$(terraform output -json | jq -r '.public_ip.value') | ||
# PUBLIC_IP=$(terraform output -json | jq -r '.public_ip.value' | cut -d "\"" -f 2) | ||
echo "public_ip=$PUBLIC_IP" >> $GITHUB_OUTPUT | ||
echo "[test_environments]" > build/ci/rhel-ansible/inventory.ini | ||
echo "test_environment_host ansible_host=${PUBLIC_IP}" >> build/ci/rhel-ansible/inventory.ini | ||
# cat build/ci/rhel-ansible/inventory.ini | ||
- name: Setup tmate session | ||
# if: ${{ failure() }} | ||
uses: mxschmitt/[email protected] | ||
timeout-minutes: 17 | ||
with: | ||
detached: true | ||
limit-access-to-actor: true | ||
|
||
- name: Provision runner to ec2 | ||
working-directory: build/ci/rhel-ansible | ||
run: | | ||
ansible-playbook -vv playbook.yaml \ | ||
-i inventory.ini \ | ||
--private-key=/home/runner/.ssh/id_rsa \ | ||
--extra-vars "registry_user=${{ secrets.REGISTRY_USER }}" \ | ||
--extra-vars "registry_pass=${{ secrets.REGISTRY_PASS }}" \ | ||
--extra-vars "subman_user=${{ secrets.SUBMAN_USER }}" \ | ||
--extra-vars "subman_pass=${{ secrets.SUBMAN_PASS }}" | ||
env: | ||
ANSIBLE_CONFIG: ansible.cfg | ||
|
||
- name: Terraform Destroy | ||
if: always() | ||
run: terraform destroy -auto-approve | ||
|
||
# For stacked runs of CI with concurrency allow for destroy to work | ||
- name: Wait for 30 seconds for destroy to work | ||
if: always() | ||
run: sleep 30 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[ssh_connection] | ||
ssh_common_args = -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null ; | ||
[defaults] | ||
host_key_checking = False |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
--- | ||
- name: Building rhel9-milvus | ||
hosts: test_environments | ||
remote_user: ec2-user | ||
become: true | ||
gather_facts: false | ||
|
||
# THIS RUNS ON RHEL AMI AS BUILDER FOR SUBMAN | ||
|
||
tasks: | ||
|
||
- name: Wait until the instance is ready | ||
ansible.builtin.wait_for_connection: | ||
delay: 15 | ||
timeout: 180 | ||
|
||
- name: Gather facts for first time | ||
ansible.builtin.setup: | ||
|
||
# - name: DEBUG - sleep | ||
# ignore_unreachable: true | ||
# ansible.builtin.shell: | | ||
# sleep 600 | ||
|
||
- name: remove podman for clean docker install | ||
ansible.builtin.shell: | | ||
sudo dnf -y remove \ | ||
docker \ | ||
docker-client \ | ||
docker-client-latest \ | ||
docker-common \ | ||
docker-latest \ | ||
docker-latest-logrotate \ | ||
docker-logrotate \ | ||
docker-engine \ | ||
podman \ | ||
runc | ||
- name: setup docker server and docker compose | ||
async: 1000 | ||
poll: 0 | ||
register: docker_install_result | ||
ansible.builtin.shell: | | ||
sudo yum install -y yum-utils | ||
sudo yum-config-manager --add-repo https://download.docker.com/linux/rhel/docker-ce.repo | ||
sudo yum install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin | ||
sudo systemctl start docker | ||
- name: Check on downloading docker + docker tools | ||
async_status: | ||
jid: "{{ docker_install_result.ansible_job_id }}" | ||
register: job_result | ||
until: job_result.finished | ||
retries: 25 | ||
delay: 10 | ||
|
||
- name: Ensure Docker is running | ||
ansible.builtin.systemd: | ||
name: docker | ||
state: started | ||
enabled: yes | ||
|
||
- name: Install the docker-compose binary | ||
ansible.builtin.shell: | | ||
cd /tmp | ||
export ARCH=$(uname -m) | ||
if [[ "$ARCH" == "arm64" ]] || [[ "$ARCH" == "aarch64" ]]; then | ||
curl -sLO https://github.com/docker/compose/releases/download/v2.28.0/docker-compose-linux-aarch64 | ||
sudo mv /tmp/docker-compose-linux-aarch64 /usr/bin/docker-compose | ||
elif [[ "$ARCH" == "amd64" ]] || [[ "$ARCH" == "x86_64" ]]; then | ||
curl -sLO https://github.com/docker/compose/releases/download/v2.28.0/docker-compose-linux-x86_64 | ||
sudo mv /tmp/docker-compose-linux-x86_64 /usr/bin/docker-compose | ||
fi | ||
chmod +x /usr/bin/docker-compose | ||
- name: Log in to quay.io | ||
community.docker.docker_login: | ||
username: "{{ registry_user }}" | ||
password: "{{ registry_pass }}" | ||
registry: quay.io | ||
|
||
- name: Register to subscription manager | ||
ansible.builtin.shell: | | ||
subscription-manager register --username "{{ subman_user }}" --password "{{ subman_pass }}" --force | ||
- name: Clone Git repository | ||
ansible.builtin.git: | ||
repo: https://github.com/redhat-et/milvus.git | ||
dest: "/home/ec2-user/milvus" | ||
version: "rhel9-milvus" | ||
clone: yes | ||
update: yes | ||
|
||
- name: DEBUG - sleep | ||
ansible.builtin.shell: | | ||
sleep 400 | ||
- name: Make the builder image | ||
async: 1000 | ||
poll: 0 | ||
register: builder_result | ||
ansible.builtin.shell: | | ||
set -x | ||
cd /home/ec2-user/milvus/ && sudo su && ./build/builder.sh make install | ||
ls -al /home/ec2-user/milvus/ | ||
set +x | ||
- name: Check on the builder image | ||
async_status: | ||
jid: "{{ builder_result.ansible_job_id }}" | ||
register: job_result | ||
until: job_result.finished | ||
retries: 100 | ||
delay: 10 | ||
|
||
- name: Make the milvus image | ||
async: 1000 | ||
poll: 0 | ||
register: milvus_result | ||
ansible.builtin.shell: | | ||
cd /home/ec2-user/milvus | ||
ls -al /home/ec2-user/milvus | ||
mv /home/ec2-user/milvus/bin /home/ec2-user/milvus/build/docker/milvus/rhel9/ | ||
mv /home/ec2-user/milvus/configs /home/ec2-user/milvus/build/docker/milvus/rhel9/ | ||
mv /home/ec2-user/milvus/lib /home/ec2-user/milvus/build/docker/milvus/rhel9/ | ||
sudo su && /home/ec2-user/milvus/build/build_image.sh make | ||
- name: Check on the milvus image | ||
async_status: | ||
jid: "{{ milvus_result.ansible_job_id }}" | ||
register: job_result | ||
until: job_result.finished | ||
retries: 100 | ||
delay: 10 | ||
|
||
- name: log docker images | ||
ansible.builtin.shell: | | ||
sudo su && docker images | ||
- name: DEBUG - sleep | ||
ansible.builtin.shell: | | ||
sleep 400 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
collections: | ||
- name: community.docker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters