Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
c73e4b1
Your final signed commit message
onelrian Jun 20, 2025
fbed05c
Merge main into feature branch and resolve conflicts
onelrian Jun 20, 2025
cfa6f62
fix: resolve linting errors and improve code style consistency
USHER-PB Jun 20, 2025
9a25608
fix linting issue and improve code style
onelrian Jun 20, 2025
bbdccff
Merge remote-tracking branch 'refs/remotes/origin/37-research-the-bes…
USHER-PB Jun 20, 2025
1d4f0c9
feat(networking): add support for dynamic local_ip and host_ip resolu…
onelrian Jun 23, 2025
732cc05
fix: set TERM environment variable in local.conf to avoid 'tput: unkn…
onelrian Jun 23, 2025
f34e0b0
chore(config): update localrc with enhanced neutron, magnum, and barb…
onelrian Jun 23, 2025
52846ce
chore(config): update localrc with enhanced neutron, magnum, and barb…
onelrian Jun 23, 2025
72e17fa
chore(config): update localrc with enhanced neutron, magnum, and barb…
onelrian Jun 23, 2025
fffae1d
Merge remote-tracking branch 'refs/remotes/origin/37-research-the-bes…
USHER-PB Jun 24, 2025
495edb2
fix: resolve merge conflicts in file
USHER-PB Jun 24, 2025
530c1d4
feat: removed unused features
USHER-PB Jun 24, 2025
c56068a
Merge branch 'main' into 37-research-the-best-openstack-distro-to-ins…
onelrian Jun 30, 2025
2c22293
refactor
onelrian Jul 5, 2025
2754c75
fix(devstack-config): Refactor local.conf template for stability
onelrian Jul 7, 2025
fb49f6c
chore: OVS & OVN timeout config
onelrian Jul 11, 2025
38e39a9
fix: Handled the Resolution Issue
onelrian Jul 16, 2025
a50dc76
chore: Preinstalling and SettingUp RabbitMQ & MySQL before the local.…
onelrian Jul 18, 2025
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
5 changes: 5 additions & 0 deletions .github/.vale.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
StylesPath = styles
MinAlertLevel = suggestion

[*.md]
BasedOnStyles = Vale, Custom
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/1-Bug_report.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Bug report
about: You're having technical issues. 🐞
labels: 'bug'
labels: "bug"
---

<!-- Please use the following issue template or your issue will be closed -->
Expand Down
3 changes: 1 addition & 2 deletions .github/ISSUE_TEMPLATE/2-Question.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
---
name: Question
about: Ask a question.❓
labels: 'question'
labels: "question"
---

## Summary

<!-- What do you need help with? -->

2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/3-Feature_request.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: Feature request
about: You want something added to the boilerplate. 🎉
labels: 'enhancement'
labels: "enhancement"
---
32 changes: 22 additions & 10 deletions .github/styles/config/vocabularies/Ansible/accept.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,27 @@
(?i)SELinux
(?i)bootable
(?i)bootloader
(?i)Ctrl
(?i)Subnet
(?i)Nameservers
(?i)ctrl
(?i)subnet
(?i)nameservers
(?i)ufw
(?i)Ubuntu
(?i)ubuntu
(?i)ntp
(?i)update_cache
(?i)inventory_docs
(?i)Pulumi
(?i)pulumi
(?i)sudo(ers?)?
(?i)linux
(?i)homebrew
(?i)Kubuntu
(?i)Lubuntu
(?i)VPNs
(?i)homebrew
(?i)kubuntu
(?i)lubuntu
(?i)vpn(s)?
(?i)networkd
(?i)virtualized
(?i)systemd
(?i)minimalistic
(?i)netplan
(?i)Libvirts?
(?i)libvirts?
(?i)v?lans?
(?i)v?networks?
(?i)ethernets?
Expand All @@ -34,6 +34,11 @@
(?i)vms?
(?i)macoss?
(?i)oss?
(?i)hostname
(?i)ips
(?i)ryzen
(?i)nvme
(?i)uninstallation
(?i)config
(?i)configs
(?i)Cirros
Expand All @@ -44,3 +49,10 @@
(?i)OAuth
(?i)APIs
(?i)cirros

// Notes:
// - All entries are case-insensitive using `(?i)`
// - Redundant prefixes/suffixes or improper comment syntax removed



6 changes: 6 additions & 0 deletions .github/styles/config/vocabularies/Ansible/custom.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
extends: spelling
message: "Possible spelling error"
level: suggestion
scope: raw
ignorecase: true
word_list: accept.txt
4 changes: 2 additions & 2 deletions .github/workflows/auto-assign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
issues: write
pull-requests: write
steps:
- name: 'Auto-assign issue'
- name: "Auto-assign issue"
uses: pozil/auto-assign-issue@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
assignees: stephane-segning:7, Marcjazz:3, Hermann-Core:1, USHER-PB:10, onelrian:10, Donemmanuelo:10, Jagoum:10
assignees: stephane-segning:7, Marcjazz:3, Hermann-Core:1, USHER-PB:10, onelrian:10, Donemmanuelo:10, Jagoum:10
numOfAssignee: 1
13 changes: 6 additions & 7 deletions .github/workflows/check-md.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@ name: Documentation Review
on:
push:
paths:
- '**/*.md'
- "**/*.md"
pull_request:
paths:
- '**/*.md'
- "**/*.md"

jobs:
lint-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

# - name: Check commit message
# uses: ahmadnassri/action-commit-lint@v2
# - name: Check commit message
# uses: ahmadnassri/action-commit-lint@v2

- name: Vale linting
uses: errata-ai/vale-action@v2
with:
files: 'docs/*.md,*.md'
files: "docs/*.md,*.md"

- name: markdownlint
uses: DavidAnson/markdownlint-cli2-action@v20
Expand All @@ -32,5 +32,4 @@ jobs:
- name: Check for typos
uses: sobolevn/misspell-fixer-action@master
with:
options: '-rsvn docs/'

options: "-rsvn docs/"
6 changes: 3 additions & 3 deletions .github/workflows/doc-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
python-version: "3.x"

# Install dependencies (MkDocs and Material theme)
- name: Install dependencies
Expand All @@ -32,5 +32,5 @@ jobs:
- name: Deploy to GitHub Pages
run: |
git remote set-url origin https://x-access-token:${GH_TOKEN}@github.com/adorsys-gis/openstack.git
mkdocs gh-deploy --force -m "chore: deploy documentation #{sha}" --dirty

mkdocs gh-deploy --force -m "chore: deploy documentation #{sha}" --dirty
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

### JetBrains template
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
Expand Down
3 changes: 3 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"MD013": false
}
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"ansible.python.interpreterPath": "/bin/python3"
}
Loading
Loading