Skip to content

Commit

Permalink
check access to ilab
Browse files Browse the repository at this point in the history
Signed-off-by: greg pereira <[email protected]>
  • Loading branch information
Gregory-Pereira authored and lmilbaum committed May 2, 2024
1 parent 0acfa66 commit 360f280
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 5 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/training-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ jobs:
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
working-directory: terraform-test-environment-module

Expand All @@ -83,16 +84,20 @@ jobs:

- name: Provision
run: |
ssh_public_key=$(printf '%s\n' "${{ steps.terraform-output.outputs.ssh_public_key }}" | sed -e 's/[\/&]/\\&/g')
ansible-playbook ./main/training/provision/playbook.yml \
-i terraform-test-environment-module/hosts.ini \
--private-key=terraform-test-environment-module/${{ steps.terraform-output.outputs.pem_filename }} \
--extra-vars "image_name=${{ matrix.image_name }}"
--extra-vars "image_name=${{ matrix.image_name }}" \
--extra-vars "ssh_public_key=$ssh_public_key"
env:
ANSIBLE_HOST_KEY_CHECKING: false

- name: log some networking information
- name: run the e2e tests
run: |
ifconfig
ssh -i terraform-test-environment-module/${{ steps.terraform-output.outputs.pem_filename }} \
${{ steps.terraform-output.outputs.url }} \
curl -sLO /tmp https://raw.githubusercontent.com/stefwalter/instructlab/container-testing/scripts/basic-workflow-tests.sh
- name: Destroy Test Environment
id: down
Expand Down
1 change: 1 addition & 0 deletions training/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,6 @@ cloud-nvidia:
.PHONY:
cloud: cloud-amd cloud-intel cloud

.PHONY: clean
clean:
rm -rf build
16 changes: 14 additions & 2 deletions training/provision/playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,23 @@
name: podman
state: present

- name: Building an image with ssh key
containers.podman.podman_container:
name: localhost/temp_image
image: "quay.io/ai-lab/{{ image_name }}:latest"
command:
- mkdir /usr/etc-system
- test -n "{{ ssh_public_key }}"
- echo 'AuthorizedKeysFile /usr/etc-system/%u.keys' >> /etc/ssh/sshd_config.d/30-auth-system.conf
- "echo {{ ssh_public_key }} > /usr/etc-system/fedora.keys && chmod 0600 /usr/etc-system/fedora.keys"
state: present
recreate: true

- name: Bootc install
ignore_unreachable: true
containers.podman.podman_container:
name: "{{ image_name }}"
image: "quay.io/ai-lab/{{ image_name }}:latest"
image: localhost/temp_image
state: started
auto_remove: yes
cap_add:
Expand All @@ -40,4 +52,4 @@

- name: Restart instance
ansible.builtin.reboot:
test_command: pwd
test_command: which ilab

0 comments on commit 360f280

Please sign in to comment.