Skip to content

Commit a2dd367

Browse files
authored
Merge pull request #6 from EmilienM/local
use local repo for self testing
2 parents 186294a + e0dbbbb commit a2dd367

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

.github/workflows/main.yml renamed to .github/workflows/with-defaults.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ on:
33
- push
44

55
jobs:
6-
devstack_action_defaults:
6+
with_defaults:
77
runs-on: ubuntu-latest
88
name: A job to deploy devstack with defaults
99
steps:
1010
- uses: actions/checkout@v2
1111
- id: devstack-action
12-
uses: EmilienM/[email protected]
12+
uses: ./
1313
- name: Upload logs artifacts on failure
1414
if: failure()
1515
uses: actions/upload-artifact@v2

README.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
[![.github/workflows/with-defaults.yml](https://github.com/EmilienM/devstack-action/actions/workflows/with-defaults.yml/badge.svg)](https://github.com/EmilienM/devstack-action/actions/workflows/with-defaults.yml)
2+
13
# devstack-actions
2-
Github actions for Devstack
4+
Github actions which will install OpenStack with devstack.
5+
6+
Example of Github Action step:
7+
8+
With defaults:
9+
```
10+
steps:
11+
- name: Deploy devstack
12+
uses: EmilienM/[email protected]
13+
```
314

15+
With overrides:
16+
```
17+
steps:
18+
- name: Deploy devstack
19+
uses: EmilienM/[email protected]
20+
with:
21+
branch: stable/xena
22+
conf_overrides:
23+
CINDER_ISCSI_HELPER=tgtadm
24+
enabled_services: 's-account,s-container,s-object,s-proxy'
25+
```

0 commit comments

Comments
 (0)