Skip to content

Commit 1e06be8

Browse files
author
Brent Boe
authored
Merge branch 'develop' into docs/kramdown
2 parents b3e2fa6 + 805f945 commit 1e06be8

File tree

5 files changed

+137
-4
lines changed

5 files changed

+137
-4
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ SPLUNK_ANSIBLE_BRANCH ?= develop
77
SPLUNK_COMPOSE ?= cluster_absolute_unit.yaml
88
# Set Splunk version/build parameters here to define downstream URLs and file names
99
SPLUNK_PRODUCT := splunk
10-
SPLUNK_VERSION := 7.3.0
11-
SPLUNK_BUILD := 657388c7a488
10+
SPLUNK_VERSION := 7.3.1
11+
SPLUNK_BUILD := bd63e13aa157
1212
ifeq ($(shell arch), s390x)
1313
SPLUNK_ARCH = s390x
1414
else

base/redhat-8/Dockerfile

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,22 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
# NOTE that since OpenShift Container Platform 3.11
16+
# the container catalog moved from registry.access.redhat.com to registry.redhat.io
17+
# So at some point before they deprecate the old registry we have to make sure that
18+
# we have access to the new registry and change where we pull the ubi image from.
1519
FROM registry.access.redhat.com/ubi8/ubi-minimal
16-
LABEL maintainer="support@splunk.com"
20+
LABEL name="splunk" \
21+
maintainer="support@splunk.com" \
22+
vendor="splunk" \
23+
version="7.3.1" \
24+
release="1" \
25+
summary="UBI 8 Docker image of Splunk Enterprise" \
26+
description="Splunk Enterprise is a platform for operational intelligence. Our software lets you collect, analyze, and act upon the untapped value of big data that your technology infrastructure, security systems, and business applications generate. It gives you insights to drive operational performance and business results."
27+
28+
RUN mkdir /licenses; \
29+
curl -o /licenses/apache-2.0.txt https://www.apache.org/licenses/LICENSE-2.0.txt; \
30+
curl -o /licenses/EULA_Red_Hat_Universal_Base_Image_English_20190422.pdf https://www.redhat.com/licenses/EULA_Red_Hat_Universal_Base_Image_English_20190422.pdf
1731

1832
COPY install.sh /install.sh
19-
COPY EULA_Red_Hat_Universal_Base_Image_English_20190422.pdf /EULA_Red_Hat_Universal_Base_Image_English_20190422.pdf
2033
RUN /install.sh && rm -rf /install.sh
Binary file not shown.

docs/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## Navigation
44

5+
* [7.3.1](#731)
56
* [7.3.0](#730)
67
* [7.2.7](#727)
78
* [7.2.6](#726)
@@ -15,6 +16,24 @@
1516

1617
---
1718

19+
## 7.3.1
20+
21+
#### What's New?
22+
* New Splunk Enterprise release of 7.3.1
23+
24+
#### docker-splunk changes:
25+
* Bumping Splunk version. For details, see: https://docs.splunk.com/Documentation/Splunk/7.3.1/ReleaseNotes/Fixedissues
26+
* Documentation update
27+
* Minor bug fixes
28+
29+
#### splunk-ansible changes:
30+
* Fixed Enterprise Security application installation issues
31+
* Refactored Systemd
32+
* Fixed Ansible formatting issue
33+
* Cleaned up Python files before install
34+
35+
---
36+
1837
## 7.3.0
1938

2039
#### What's New?

test_scenarios/1sh1idx_dfs.yaml

Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
version: "3.6"
2+
3+
networks:
4+
splunknet:
5+
driver: bridge
6+
attachable: true
7+
8+
volumes:
9+
mnt-spark:
10+
mnt-jdk:
11+
12+
services:
13+
init:
14+
image: ${SPARK_IMAGE:-splunk/spark:latest}
15+
entrypoint: [ "sh", "-c" ]
16+
command: [ "cp -r /opt/jdk /mnt && cp -r /opt/spark /mnt" ]
17+
hostname: init
18+
container_name: init
19+
networks:
20+
splunknet:
21+
aliases:
22+
- init
23+
volumes:
24+
- mnt-spark:/mnt/spark
25+
- mnt-jdk:/mnt/jdk
26+
27+
sh1:
28+
networks:
29+
splunknet:
30+
aliases:
31+
- sh1
32+
image: ${SPLUNK_IMAGE:-splunk/splunk:latest}
33+
command: start
34+
hostname: sh1
35+
container_name: sh1
36+
environment:
37+
- SPLUNK_START_ARGS=--accept-license
38+
- SPLUNK_SEARCH_HEAD_URL=sh1
39+
- SPLUNK_INDEXER_URL=idx1
40+
- SPLUNK_ROLE=splunk_search_head
41+
- SPLUNK_LICENSE_URI
42+
- SPLUNK_PASSWORD
43+
- DEBUG=true
44+
- SPLUNK_ENABLE_DFS=true
45+
- SPARK_MASTER_HOST=spark-master
46+
- SPARK_MASTER_WEBUI_PORT=8009
47+
- JAVA_HOME=/mnt/jdk
48+
- SPARK_HOME=/mnt/spark
49+
- SPLUNK_DFW_NUM_SLOTS_ENABLED=false
50+
ports:
51+
- 8000
52+
- 8089
53+
depends_on:
54+
- init
55+
volumes:
56+
- mnt-spark:/mnt/spark
57+
- mnt-jdk:/mnt/jdk
58+
59+
idx1:
60+
networks:
61+
splunknet:
62+
aliases:
63+
- idx1
64+
image: ${SPLUNK_IMAGE:-splunk/splunk:latest}
65+
command: start
66+
hostname: idx1
67+
container_name: idx1
68+
environment:
69+
- SPLUNK_START_ARGS=--accept-license
70+
- SPLUNK_SEARCH_HEAD_URL=sh1
71+
- SPLUNK_INDEXER_URL=idx1
72+
- SPLUNK_ROLE=splunk_indexer
73+
- SPLUNK_LICENSE_URI
74+
- SPLUNK_PASSWORD
75+
- DEBUG=true
76+
ports:
77+
- 8000
78+
- 8089
79+
80+
spark-master:
81+
image: ${SPARK_IMAGE:-splunk/spark:latest}
82+
hostname: spark-master
83+
container_name: spark-master
84+
networks:
85+
splunknet:
86+
aliases:
87+
- spark-master
88+
environment:
89+
- SPLUNK_ROLE=splunk_spark_master
90+
91+
spark-worker:
92+
image: ${SPARK_IMAGE:-splunk/spark:latest}
93+
hostname: spark-worker
94+
container_name: spark-worker
95+
networks:
96+
splunknet:
97+
aliases:
98+
- spark-worker
99+
environment:
100+
- SPLUNK_ROLE=splunk_spark_worker
101+
- SPARK_MASTER_HOSTNAME=spark-master

0 commit comments

Comments
 (0)