You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.build.image_name }} # to branch/PR + OS
22
+
cancel-in-progress: true
23
+
runs-on: ubuntu-22.04
24
+
strategy:
25
+
fail-fast: false # allow other matrix jobs to continue even if one fails
26
+
matrix: # build RL8, RL9
27
+
build:
28
+
- image_name: openhpc-doca-RL8
29
+
source_image_name_key: RL8 # key into environments/.stackhpc/terraform/cluster_image.auto.tfvars.json
30
+
inventory_groups: doca
31
+
- image_name: openhpc-doca-RL9
32
+
source_image_name_key: RL9
33
+
inventory_groups: doca
34
+
env:
35
+
ANSIBLE_FORCE_COLOR: True
36
+
OS_CLOUD: openstack
37
+
CI_CLOUD: ${{ vars.CI_CLOUD }} # default from repo settings
38
+
ARK_PASSWORD: ${{ secrets.ARK_PASSWORD }}
39
+
40
+
steps:
41
+
- uses: actions/checkout@v2
42
+
43
+
- name: Load current fat images into GITHUB_ENV
44
+
# see https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/workflow-commands-for-github-actions#example-of-a-multiline-string
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ It requires an OpenStack cloud, and an Ansible "deploy host" with access to that
32
32
Before starting ensure that:
33
33
- You have root access on the deploy host.
34
34
- You can create instances using a Rocky 9 GenericCloud image (or an image based on that).
35
-
-**NB**: In general it is recommended to use the [latest released image](https://github.com/stackhpc/ansible-slurm-appliance/releases) which already contains the required packages. This is built and tested in StackHPC's CI. However the appliance will install the necessary packages if a GenericCloud image is used.
35
+
-**NB**: In general it is recommended to use the [latest released image](https://github.com/stackhpc/ansible-slurm-appliance/releases) which already contains the required packages. This is built and tested in StackHPC's CI.
36
36
- You have a SSH keypair defined in OpenStack, with the private key available on the deploy host.
37
37
- Created instances have access to internet (note proxies can be setup through the appliance if necessary).
38
38
- Created instances have accurate/synchronised time (for VM instances this is usually provided by the hypervisor; if not or for bare metal instances it may be necessary to configure a time service via the appliance).
0 commit comments