Skip to content

Commit 9c1584e

Browse files
fix: release 1.12.2
Signed-off-by: Ilya Kheifets <[email protected]>
1 parent 9cf53ab commit 9c1584e

File tree

68 files changed

+1332
-449
lines changed

Some content is hidden

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

68 files changed

+1332
-449
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
name: Bug / Escalation report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**If your issue is not a bug or a feature request, please raise a support ticket through our support portal (Splunk.com > Support > Support Portal). This will help us resolve your issue more efficiently and provide you with better assistance. For more information on how to work with the Splunk Support, please refer to [this guide](https://splunk.my.site.com/customer/s/article/Working-with-Support-and-the-Support-Portal).**
11+
12+
**Was the issue replicated by support?**
13+
14+
**What is the SC4SNMP version?**
15+
16+
**Which runtime (Docker, MicroK8s) are you using for SC4SNMP?**
17+
18+
**Is the issue related to some error during installation or first connection to device?**
19+
If so share the values.yaml.
20+
21+
**Describe the bug**
22+
A clear and concise description of what the bug is.
23+
24+
**To Reproduce**
25+
Steps to reproduce the behavior:
26+
1. Go to '...'
27+
2. Click on '....'
28+
3. Scroll down to '....'
29+
4. See error
30+
31+
**Screenshots and logs**
32+
If applicable, add screenshots to help explain your problem and collect the logs from SC4SNMP.
33+
34+
**Additional context**
35+
Add any other context about the problem here.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**If your issue is not a bug or a feature request, please raise a support ticket through our support portal (Splunk.com > Support > Support Portal). This will help us resolve your issue more efficiently and provide you with better assistance. For more information on how to work with the Splunk Support, please refer to [this guide](https://splunk.my.site.com/customer/s/article/Working-with-Support-and-the-Support-Portal).**
11+
12+
** What is the SC4SNMP version?**
13+
14+
**Is your feature request related to a problem? Please describe.**
15+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
16+
17+
**Describe the solution you'd like**
18+
A clear and concise description of what you want to happen.
19+
20+
**Describe alternatives you've considered**
21+
A clear and concise description of any alternative solutions or features you've considered.
22+
23+
**Additional context**
24+
Add any other context or screenshots about the feature request here.

.github/workflows/agreements.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
call-workflow-agreements:
10-
uses: splunk/addonfactory-github-workflows/.github/workflows/[email protected].0
10+
uses: splunk/addonfactory-github-workflows/.github/workflows/[email protected].1
1111
permissions:
1212
actions: read
1313
contents: read

.github/workflows/ci-docker-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
python-version:
17-
- 3.9
17+
- 3.10
1818
steps:
1919
- name: Check out code
2020
uses: actions/checkout@v4

.github/workflows/ci-main.yaml

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,30 @@ jobs:
7272
with:
7373
python-version: "3.10"
7474
- uses: pre-commit/[email protected]
75+
76+
trivy-scan:
77+
runs-on: ubuntu-latest
78+
name: "Run trivy scanner to detect CVEs in docker image"
79+
80+
steps:
81+
- name: Checkout code
82+
uses: actions/checkout@v4
83+
84+
- name: Set up Docker Buildx
85+
uses: docker/setup-buildx-action@v3
86+
87+
- name: Build Docker image
88+
run: |
89+
docker build -t snmp_local:ci .
90+
91+
- name: Scan image with Trivy
92+
uses: aquasecurity/trivy-action@master
93+
with:
94+
image-ref: snmp_local:ci
95+
format: table
96+
exit-code: 1
97+
severity: 'CRITICAL,HIGH,MEDIUM,LOW'
98+
7599
test-unit:
76100
name: Test Unit Python ${{ matrix.python-version }}
77101
runs-on: ubuntu-latest
@@ -133,7 +157,7 @@ jobs:
133157
needs:
134158
- integration-tests-check
135159
runs-on: ubuntu-latest
136-
if: "contains(needs.integration-tests-check.outputs.commit_message, '[run-int-tests]')"
160+
if: "contains(needs.integration-tests-check.outputs.commit_message, '[run-int-tests]') || github.ref_name == 'develop'"
137161
timeout-minutes: 120
138162
steps:
139163
- name: Checkout Project
@@ -159,7 +183,7 @@ jobs:
159183
needs:
160184
- integration-tests-check
161185
runs-on: ubuntu-latest
162-
if: "contains(needs.integration-tests-check.outputs.commit_message, '[run-int-tests]')"
186+
if: "contains(needs.integration-tests-check.outputs.commit_message, '[run-int-tests]') || github.ref_name == 'develop'"
163187
timeout-minutes: 120
164188
steps:
165189
- name: Checkout Project

.github/workflows/ci-ui-tests.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
needs:
3838
- ui-tests-check
3939
runs-on: ubuntu-latest
40-
if: "contains(needs.ui-tests-check.outputs.commit_message, '[run-ui-tests]')"
40+
if: "contains(needs.ui-tests-check.outputs.commit_message, '[run-ui-tests]') || github.ref_name == 'develop'"
4141
timeout-minutes: 120
4242
env:
4343
CI_EXECUTION_TYPE: ci
@@ -46,6 +46,7 @@ jobs:
4646
matrix:
4747
execution-type: ["basic", "extended"]
4848

49+
4950
steps:
5051
- name: Checkout Project
5152
uses: actions/checkout@v4

.github/workflows/mike.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ jobs:
3838
- uses: oleksiyrudenko/[email protected]
3939
with:
4040
token: "${{ secrets.PAT_CLATOOL }}"
41-
41+
- uses: actions/setup-python@v5
42+
with:
43+
python-version: "3.10"
4244
- name: Upload Docs
4345
run: |
4446
sudo apt update

.github/workflows/offline-installation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
python-version:
17-
- 3.9
17+
- "3.10"
1818
steps:
1919
- name: Check out code
2020
uses: actions/checkout@v4

.github/workflows/release-notes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
permissions:
1111
contents: write
1212
packages: write
13-
uses: splunk/addonfactory-github-workflows/.github/workflows/[email protected].0
13+
uses: splunk/addonfactory-github-workflows/.github/workflows/[email protected].1
1414
secrets:
1515
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,15 @@
33
## Unreleased
44

55
### Changed
6+
- add IF-MIB.ifOperStatus to baseIF profile
7+
- allow to set subnets for docker network configuration from .env file
8+
- update ipv4 and ipv6 traps to be sent on the same port
69

710
### Fixed
11+
- add communities for v1 traps
12+
- add nodeSelector to worker chart
13+
- upgrade base docker image
14+
- dns resolution if only ipv4 is used
815

916
## [1.12.1]
1017

0 commit comments

Comments
 (0)