Skip to content

Commit bbbf8f8

Browse files
authored
Merge branch 'main' into service_offering_category_feature
2 parents 4ff6cf3 + 04b58ac commit bbbf8f8

File tree

1,546 files changed

+23032
-11483
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,546 files changed

+23032
-11483
lines changed

.github/CODEOWNERS

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
18+
/plugins/storage/volume/linstor @rp-
19+
/plugins/storage/volume/storpool @slavkap
20+
21+
.pre-commit-config.yaml @jbampton
22+
/.github/linters/ @jbampton

.github/dependabot.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
18+
# To get started with Dependabot version updates, you'll need to specify which
19+
# package ecosystems to update and where the package manifests are located.
20+
# Please see the documentation for all configuration options:
21+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
22+
23+
version: 2
24+
updates:
25+
- package-ecosystem: "maven" # See documentation for possible values
26+
directory: "/" # Location of package manifests
27+
schedule:
28+
interval: "daily"
29+
cooldown:
30+
default-days: 7

.github/linters/.yamllint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@
1515
# specific language governing permissions and limitations
1616
# under the License.
1717
---
18-
extends: relaxed
18+
extends: default
1919

2020
rules:
2121
line-length:
2222
max: 400 # Very forgiving for GitHub Actions and infrastructure files
2323
indentation: disable # Disable indentation checking for existing files
2424
comments: disable # Disable comment formatting checks
25+
braces: disable
2526
brackets: disable # Disable bracket spacing checks
2627
colons:
2728
max-spaces-after: -1 # Allow any number of spaces after colon

.github/linters/codespell.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,6 @@ ingore
255255
initalize
256256
initator
257257
inspite
258-
instace
259258
instal
260259
instnace
261260
intefaces
@@ -376,7 +375,6 @@ renabling
376375
reponse
377376
reqest
378377
reqiured
379-
requried
380378
reserv
381379
reserverd
382380
reseted

.github/workflows/main-sonar-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ jobs:
4444
cache: 'maven'
4545

4646
- name: Cache SonarCloud packages
47-
uses: actions/cache@v4
47+
uses: actions/cache@v5
4848
with:
4949
path: ~/.sonar/cache
5050
key: ${{ runner.os }}-sonar
5151
restore-keys: ${{ runner.os }}-sonar
5252

5353
- name: Cache local Maven repository
54-
uses: actions/cache@v4
54+
uses: actions/cache@v5
5555
with:
5656
path: ~/.m2/repository
5757
key: ${{ runner.os }}-m2-${{ hashFiles('pom.xml', '*/pom.xml', '*/*/pom.xml', '*/*/*/pom.xml') }}

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
pip install pre-commit
4040
- name: Set PY
4141
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
42-
- uses: actions/cache@v4
42+
- uses: actions/cache@v5
4343
with:
4444
path: ~/.cache/pre-commit
4545
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}

.github/workflows/sonar-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,14 +46,14 @@ jobs:
4646
cache: 'maven'
4747

4848
- name: Cache SonarCloud packages
49-
uses: actions/cache@v4
49+
uses: actions/cache@v5
5050
with:
5151
path: ~/.sonar/cache
5252
key: ${{ runner.os }}-sonar
5353
restore-keys: ${{ runner.os }}-sonar
5454

5555
- name: Cache local Maven repository
56-
uses: actions/cache@v4
56+
uses: actions/cache@v5
5757
with:
5858
path: ~/.m2/repository
5959
key: ${{ runner.os }}-m2-${{ hashFiles('pom.xml', '*/pom.xml', '*/*/pom.xml', '*/*/*/pom.xml') }}

.github/workflows/stale.yml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
18+
name: 'Close stale issues and PRs'
19+
on:
20+
schedule:
21+
- cron: '30 1 * * *'
22+
23+
jobs:
24+
stale:
25+
runs-on: ubuntu-latest
26+
permissions:
27+
actions: write
28+
issues: write
29+
pull-requests: write
30+
steps:
31+
- uses: actions/stale@v10
32+
with:
33+
stale-issue-message: 'This issue is stale because it has been open for 120 days with no activity. It may be removed by administrators of this project at any time. Remove the stale label or comment to request for removal of it to prevent this.'
34+
stale-pr-message: 'This PR is stale because it has been open for 120 days with no activity. It may be removed by administrators of this project at any time. Remove the stale label or comment to request for removal of it to prevent this.'
35+
close-issue-message: 'This issue was closed because it has been stale for 120 days with no activity.'
36+
close-pr-message: 'This PR was closed because it has been stale for 240 days with no activity.'
37+
stale-issue-label: 'no-issue-activity'
38+
stale-pr-label: 'no-pr-activity'
39+
days-before-stale: 120
40+
days-before-close: -1
41+
days-before-pr-close: 240
42+
exempt-issue-labels: 'gsoc,good-first-issue,long-term-plan'
43+
exempt-pr-labels: 'status:ready-for-merge,status:needs-testing,status:on-hold'

.pre-commit-config.yaml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,16 @@ repos:
6262
- .github/workflows/license-templates/LICENSE.txt
6363
- --fuzzy-match-generates-todo
6464
exclude: ^(CHANGES|ISSUE_TEMPLATE|PULL_REQUEST_TEMPLATE)\.md$|^ui/docs/(full|smoke)-test-plan\.template\.md$
65+
- id: insert-license
66+
name: add license for all properties files
67+
description: automatically adds a licence header to all properties files that don't have a license header
68+
files: \.properties$
69+
args:
70+
- --comment-style
71+
- '|#|'
72+
- --license-filepath
73+
- .github/workflows/license-templates/LICENSE.txt
74+
- --fuzzy-match-generates-todo
6575
- id: insert-license
6676
name: add license for all Shell files
6777
description: automatically adds a licence header to all Shell files that don't have a license header
@@ -81,6 +91,15 @@ repos:
8191
- --license-filepath
8292
- .github/workflows/license-templates/LICENSE.txt
8393
- --fuzzy-match-generates-todo
94+
- id: insert-license
95+
name: add license for all Vue files
96+
files: \.vue$
97+
args:
98+
- --comment-style
99+
- '|//|'
100+
- --license-filepath
101+
- .github/workflows/license-templates/LICENSE.txt
102+
- --fuzzy-match-generates-todo
84103
- id: insert-license
85104
name: add license for all YAML files
86105
description: automatically adds a licence header to all YAML files that don't have a license header
@@ -132,7 +151,7 @@ repos:
132151
- id: forbid-submodules
133152
- id: mixed-line-ending
134153
- id: trailing-whitespace
135-
files: \.(bat|cfg|cs|css|gitignore|header|in|install|java|md|properties|py|rb|rc|sh|sql|te|template|txt|ucls|vue|xml|xsl|yaml|yml)$|^cloud-cli/bindir/cloud-tool$|^debian/changelog$
154+
files: ^(LICENSE|NOTICE)$|\.(bat|cfg|cs|css|gitignore|header|in|install|java|md|properties|py|rb|rc|sh|sql|te|template|txt|ucls|vue|xml|xsl|yaml|yml)$|^cloud-cli/bindir/cloud-tool$|^debian/changelog$
136155
args: [--markdown-linebreak-ext=md]
137156
exclude: ^services/console-proxy/rdpconsole/src/test/doc/freerdp-debug-log\.txt$
138157
- repo: https://github.com/codespell-project/codespell

0 commit comments

Comments
 (0)