Skip to content

Commit d901e0b

Browse files
cwadhwani-splunkmstopa-splunkrenovate[bot]ikheifets-splunksbylica-splunk
authored
feat: Release v3.35.0 (#2733)
* docs: Updating the vendor documentation with the correct port number (5425) for TLS framed logs. (#2664) * feat: Add a health check endpoint (#2670) * docs: Updated the dead links on create-parser page (#2665) * chore(deps): update splunk/addonfactory-test-matrix-action action to v3 (#2667) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> * docs: add "Architecture and Load Balancers" (#2574) * fix: CVE (#2660) Signed-off-by: Ilya Kheifets <[email protected]> * docs: update NGINX health_check command usage * docs: update NGINX health_check command usage * fix: poetry export after 2.0 (#2678) Signed-off-by: Ilya Kheifets <[email protected]> * fix: rebuild docker image after alpine security fixes (#2687) Signed-off-by: Ilya Kheifets <[email protected]> * docs: Describe load balancing with F5 (#2677) * fix: resolve sonarqube reported issues (#2690) * Refactoring and fixing sonarqube issues * Added custom marks to pytest.ini * Excluded tests from sonarqube scan * Changed rhel version in docs (#2699) * Added support for multiple destinations in healthcheck (#2704) * docs: remove experimental status for EP (#2714) Signed-off-by: Ilya Kheifets <[email protected]> * docs: Updated the splunk add-on link in the panos documentation (#2695) * docs: Updated the splunk add-on link in the PaloaltoNetworks panos documentation * Empty commit for triggering workflow * feat: Added support for vectra json logs (#2694) * feat: Added support for vectra json logs * Empty commit for triggering workflow * chore: add netapp tests (#2705) * chore: add netapp test * chore: update netapp config * chore: fix typo * fix: vuln fix alpine (#2726) * vuln fix alpine * Updated the content-hash for the latest poetry.lock file * Updated the packages * Upgrading xz-libs to the latest version --------- Co-authored-by: cwadhwani-splunk <[email protected]> * fix: Added a couple of parsers in the enterprise version. (#2734) * fix: Added a couple of parsers in the enterprise version. (#2734) --------- Signed-off-by: Ilya Kheifets <[email protected]> Co-authored-by: mstopa-splunk <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ilya Kheifets <[email protected]> Co-authored-by: mstopa-splunk <[email protected]> Co-authored-by: sbylica-splunk <[email protected]> Co-authored-by: Szymon Bylica <[email protected]> Co-authored-by: ajasnosz <[email protected]> Co-authored-by: Rahul Jha <[email protected]>
1 parent f371f1d commit d901e0b

File tree

135 files changed

+1735
-517
lines changed

Some content is hidden

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

135 files changed

+1735
-517
lines changed

.github/workflows/ci-main.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ jobs:
6363
semantic_version: 18
6464
extra_plugins: |
6565
@semantic-release/[email protected]
66-
6766
@semantic-release/git
6867
semantic-release-helm
6968

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,6 @@ tags
304304
# Persistent undo
305305
[._]*.un~
306306

307-
<<<<<<< HEAD
308307
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
309308
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
310309

ansible/Dockerfile

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
# install requirements in venv
22
FROM python:3.10 AS venv_builder
3-
RUN pip install ansible~=6.1.0 --no-cache-dir
4-
RUN pip install pywinrm>=0.4.2 --no-cache-dir
5-
RUN pip install ansible-lint>=6.0.0 --no-cache-dir
3+
RUN pip install ansible~=6.1.0 --no-cache-dir \
4+
&& pip install pywinrm>=0.4.2 --no-cache-dir \
5+
&& pip install ansible-lint>=6.0.0 --no-cache-dir
66

77
WORKDIR /opt
88
COPY ./ansible .
99
COPY ./charts .
1010

11-
RUN apt-get update -y
12-
RUN apt-get install parallel -y
13-
RUN apt-get install sshpass
11+
RUN apt update -y \
12+
&& apt install --no-install-recommends -y build-essential parallel \
13+
&& apt install --no-install-recommends -y sshpass \
14+
&& apt clean
1415

1516
ENV ANSIBLE_CONFIG /opt/ansible.cfg
1617
ENV ANSIBLE_HOST_KEY_CHECKING False

ansible/app/docker-compose.yml

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
version: "3.7"
23
services:
34
sc4s:
@@ -7,18 +8,18 @@ services:
78
condition: on-failure
89
image: ghcr.io/splunk/splunk-connect-for-syslog/container3:latest
910
ports:
10-
- target: 514
11-
published: 514
12-
protocol: tcp
13-
- target: 514
14-
published: 514
15-
protocol: udp
16-
- target: 601
17-
published: 601
18-
protocol: tcp
19-
- target: 6514
20-
published: 6514
21-
protocol: tcp
11+
- target: 514
12+
published: 514
13+
protocol: tcp
14+
- target: 514
15+
published: 514
16+
protocol: udp
17+
- target: 601
18+
published: 601
19+
protocol: tcp
20+
- target: 6514
21+
published: 6514
22+
protocol: tcp
2223
env_file:
2324
- /opt/sc4s/env_file
2425
volumes:
@@ -30,4 +31,4 @@ services:
3031
# - /opt/sc4s/tls:/etc/syslog-ng/tls:z
3132

3233
volumes:
33-
splunk-sc4s-var:
34+
splunk-sc4s-var:

ansible/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
## SPDX-License-Identifier: LicenseRef-Splunk-8-2021
44
##
55
##
6+
---
67
version: "3.7"
78
services:
8-
99
ansible_sc4s:
1010
build:
1111
context: ../

ansible/inventory/inventory.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1+
---
12
all:
23
hosts:
34
children:
45
node:
56
hosts:
67
node_1:
7-
ansible_host:
8+
ansible_host:

ansible/inventory/inventory_microk8s.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
all:
23
hosts:
34
children:

ansible/inventory/inventory_microk8s_ha.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
all:
23
hosts:
34
children:

ansible/inventory/inventory_swarm.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
all:
23
hosts:
34
children:

ansible/playbooks/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
- hosts: node_1
3-
become: yes
3+
become: true
44
vars:
55
iface: "{{ swarm_iface | default('eth0') }}"
66
tasks:

0 commit comments

Comments
 (0)