Skip to content
This repository was archived by the owner on Dec 4, 2023. It is now read-only.

Commit c0194ff

Browse files
committed
Commit for 3.3.0.0
1 parent 2ed5d4b commit c0194ff

File tree

324 files changed

+70389
-6603
lines changed

Some content is hidden

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

324 files changed

+70389
-6603
lines changed

.github/ISSUE_TEMPLATE.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
## Description
2+
Describe the problem you're having or the enhancement you'd like to request.
3+
4+
5+
6+
## Template
7+
For bugs, enter the template with which you are experiencing issues below.
8+
9+
10+
## Severity Level
11+
For bugs, enter the bug severity level. Do not set any labels.
12+
13+
Severity: <Fill in level: 1 through 5>
14+
15+
Severity level definitions:
16+
1. **Severity 1 (Critical)** : Defect is causing systems to be offline and/or nonfunctional. immediate attention is required.
17+
2. **Severity 2 (High)** : Defect is causing major obstruction of system operations.
18+
3. **Severity 3 (Medium)** : Defect is causing intermittent errors in system operations.
19+
4. **Severity 4 (Low)** : Defect is causing infrequent interuptions in system operations.
20+
5. **Severity 5 (Trival)** : Defect is not causing any interuptions to system operations, but none-the-less is a bug.

.github/PULL_REQUEST_TEMPLATE.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
@<reviewer_id>
2+
3+
#### What issues does this address?
4+
Fixes #<issueid>
5+
WIP #<issueid>
6+
...
7+
8+
#### What's this change do?
9+
10+
#### Where should the reviewer start?
11+
12+
#### Any background context?

.gitlab-ci.yml

+12-20
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11
image: node:4
22

33
stages:
4+
- test
45
- package
56

7+
test:
8+
tags:
9+
- docker-executor
10+
stage: test
11+
only:
12+
- /^build_hash*/
13+
- triggers
14+
script:
15+
- python -B -m unittest discover -s build/test/lib -p "*Tests*.py"
16+
617
package:
718
tags:
819
- docker-executor
@@ -12,26 +23,7 @@ package:
1223
- triggers
1324
script:
1425
- cd supported
15-
- echo "1nic(PAYG, New Stack) Template Hash - `openssl dgst -r -sha512 standalone/1nic/new_stack/PAYG/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
16-
- echo "1nic(BYOL, New Stack) Template Hash - `openssl dgst -r -sha512 standalone/1nic/new_stack/BYOL/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
17-
- echo "1nic(PAYG, Existing Stack) Template Hash - `openssl dgst -r -sha512 standalone/1nic/existing_stack/PAYG/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
18-
- echo "1nic(BYOL, Existing Stack) Template Hash - `openssl dgst -r -sha512 standalone/1nic/existing_stack/BYOL/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
19-
- echo "2nic(PAYG, New Stack) Template Hash - `openssl dgst -r -sha512 standalone/2nic/new_stack/PAYG/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
20-
- echo "2nic(BYOL, New Stack) Template Hash - `openssl dgst -r -sha512 standalone/2nic/new_stack/BYOL/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
21-
- echo "2nic(PAYG, Existing Stack) Template Hash - `openssl dgst -r -sha512 standalone/2nic/existing_stack/PAYG/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
22-
- echo "2nic(BYOL, Existing Stack) Template Hash - `openssl dgst -r -sha512 standalone/2nic/existing_stack/BYOL/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
23-
- echo "3nic(PAYG, New Stack) Template Hash - `openssl dgst -r -sha512 standalone/3nic/new_stack/PAYG/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
24-
- echo "3nic(BYOL, New Stack) Template Hash - `openssl dgst -r -sha512 standalone/3nic/new_stack/BYOL/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
25-
- echo "3nic(PAYG, Existing Stack) Template Hash - `openssl dgst -r -sha512 standalone/3nic/existing_stack/PAYG/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
26-
- echo "3nic(BYOL, Existing Stack) Template Hash - `openssl dgst -r -sha512 standalone/3nic/existing_stack/BYOL/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
27-
- echo "HA-Avset(PAYG, New Stack) Template Hash - `openssl dgst -r -sha512 standalone/ha-avset/new_stack/PAYG/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
28-
- echo "HA-Avset(BYOL, New Stack) Template Hash - `openssl dgst -r -sha512 standalone/ha-avset/new_stack/BYOL/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
29-
- echo "HA-Avset(PAYG, Existing Stack) Template Hash - `openssl dgst -r -sha512 standalone/ha-avset/existing_stack/PAYG/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
30-
- echo "HA-Avset(BYOL, Existing Stack) Template Hash - `openssl dgst -r -sha512 standalone/ha-avset/existing_stack/BYOL/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
31-
- echo "Cluster 1nic(PAYG) Template Hash - `openssl dgst -r -sha512 cluster/1nic/PAYG/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
32-
- echo "Cluster 1nic(BYOL) Template Hash - `openssl dgst -r -sha512 cluster/1nic/BYOL/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
33-
- echo "AutoScale LTM(PAYG) Template Hash - `openssl dgst -r -sha512 solutions/autoscale/ltm/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
34-
- echo "AutoScale WAF(PAYG) Template Hash - `openssl dgst -r -sha512 solutions/autoscale/waf/azuredeploy.json | cut -d ' ' -f 1`" >> supportedTemplateHashes
26+
- for f in `find . -name 'azuredeploy.json'`; do echo "Template File $f Hash - `openssl dgst -r -sha512 $f | cut -d ' ' -f 1`" >> supportedTemplateHashes; done
3527
artifacts:
3628
name: f5-arm-build-$CI_BUILD_REF
3729
paths:

0 commit comments

Comments
 (0)