-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
rfaircloth-splunk
committed
Feb 7, 2020
1 parent
dcf48d6
commit 0ee7ebb
Showing
9 changed files
with
112 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,8 @@ | ||
| [pytest] | ||
| testpaths = tests | ||
| #addopts = --tb=long | ||
| # --force-flaky --max-runs=3 --min-passes=1 | ||
| addopts = | ||
| -v --tb=long | ||
| --splunk_type=docker | ||
| filterwarnings = | ||
| ignore::DeprecationWarning | ||
| #[pytest] | ||
| #junit_family = xunit2 | ||
| junit_family = xunit1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,69 @@ | ||
| #Splunk Connect for Syslog (SC4S) by Splunk, Inc. | ||
| # | ||
| #To the extent possible under law, the person who associated CC0 with | ||
| #Splunk Connect for Syslog (SC4S) has waived all copyright and related or neighboring rights | ||
| #to Splunk Connect for Syslog (SC4S). | ||
| # | ||
| #You should have received a copy of the CC0 legalcode along with this | ||
| #work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>. | ||
| version: "3.7" | ||
|
|
||
|
|
||
| services: | ||
| test: | ||
| build: . | ||
| image: docker.pkg.github.com/splunk/splunk-connect-for-syslog/stg-splunk-connect-for-syslog:tests-${CIRCLE_SHA1} | ||
| links: | ||
| - splunk | ||
| - sc4s | ||
| volumes: | ||
| - results:/work/test-results | ||
|
|
||
| sc4s: | ||
| build: | ||
| context: ../package | ||
| image: docker.pkg.github.com/splunk/splunk-connect-for-syslog/stg-splunk-connect-for-syslog:sc4s-${SYSLOG}-${CIRCLE_SHA1} | ||
| hostname: sc4s | ||
| #When this is enabled test_common will fail | ||
| # command: -det | ||
| ports: | ||
| - "514" | ||
| - "601" | ||
| - "514/udp" | ||
| - "5000-5050" | ||
| - "5000-5050/udp" | ||
| - "6514" | ||
| stdin_open: true | ||
| tty: true | ||
| links: | ||
| - splunk | ||
| environment: | ||
| - SPLUNK_HEC_URL=https://splunk:8088 | ||
| - SPLUNK_HEC_TOKEN=70b6ae71-76b3-4c38-9597-0c5b37ad9630 | ||
| - SC4S_SOURCE_TLS_ENABLE=no | ||
| - SC4S_DEST_SPLUNK_HEC_TLS_VERIFY=no | ||
| - SC4S_LISTEN_JUNIPER_NETSCREEN_TCP_PORT=5000 | ||
| - SC4S_LISTEN_CISCO_ASA_TCP_PORT=5001 | ||
| - SC4S_LISTEN_CISCO_IOS_TCP_PORT=5002 | ||
| - SC4S_LISTEN_CISCO_MERAKI_TCP_PORT=5003 | ||
| - SC4S_LISTEN_JUNIPER_IDP_TCP_PORT=5004 | ||
| - SC4S_LISTEN_PALOALTO_PANOS_TCP_PORT=5005 | ||
| - SC4S_LISTEN_PFSENSE_TCP_PORT=5006 | ||
| - SC4S_ARCHIVE_GLOBAL=no | ||
| splunk: | ||
| build: | ||
| context: ../splunk | ||
| image: docker.pkg.github.com/splunk/splunk-connect-for-syslog/stg-splunk-connect-for-syslog:splunk-${SPLUNK}-${CIRCLE_SHA1} | ||
| hostname: splunk | ||
| ports: | ||
| - "8000" | ||
| - "8088" | ||
| - "8089" | ||
| environment: | ||
| - SPLUNK_HEC_TOKEN=70b6ae71-76b3-4c38-9597-0c5b37ad9630 | ||
| - SPLUNK_PASSWORD=Changed@11 | ||
| - SPLUNK_START_ARGS=--accept-license | ||
|
|
||
| volumes: | ||
| results: | ||
| external: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| [pytest] | ||
| addopts = -v | ||
| --splunk_type=external | ||
| --splunk_password=Changed@11 | ||
| --splunk_hec_token=70b6ae71-76b3-4c38-9597-0c5b37ad9630 | ||
| --splunk_host=splunk | ||
| --sc4s_host=sc4s | ||
| --maxfail=5 | ||
| -n 4 | ||
| filterwarnings = | ||
| ignore::DeprecationWarning |
This file was deleted.
Oops, something went wrong.