Skip to content

Commit db632c1

Browse files
authored
Merge pull request #292 from splunk/release/801
Updating for 8.0.1
2 parents 38a300e + b0dd94f commit db632c1

16 files changed

+189
-30
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 := 8.0.0
11-
SPLUNK_BUILD := 1357bef0a7f6
10+
SPLUNK_VERSION := 8.0.1
11+
SPLUNK_BUILD := 6db836e2fb9e
1212
ifeq ($(shell arch), s390x)
1313
SPLUNK_ARCH = s390x
1414
else

docs/ADVANCED.md

Lines changed: 26 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -209,17 +209,35 @@ Here's an overview of what this looks like if you want to persist *all* your ind
209209
---
210210
splunk:
211211
smartstore:
212-
- indexName: default
213-
remoteName: remote_store
214-
scheme: s3
215-
remoteLocation: <bucket-name>
216-
s3:
217-
access_key: <access_key>
218-
secret_key: <secret_key>
219-
endpoint: http://s3-us-west-2.amazonaws.com
212+
index:
213+
- indexName: default
214+
remoteName: remote_store
215+
scheme: s3
216+
remoteLocation: <bucket-name>
217+
s3:
218+
access_key: <access_key>
219+
secret_key: <secret_key>
220+
endpoint: http://s3-us-west-2.amazonaws.com
220221
...
221222
```
222223

224+
Some cache management options are also available. Options defined under the index stanza correspond to options in `indexes.conf` https://docs.splunk.com/Documentation/Splunk/latest/admin/Indexesconf. While options defined outside the index correspond to options in `server.conf` https://docs.splunk.com/Documentation/Splunk/latest/admin/Serverconf, note that currently only `[cachemanager]` stanza is supported. This is an example config that defines cache settings and retention policy:
225+
```
226+
smartstore:
227+
cachemanager:
228+
max_cache_size: 500
229+
max_concurrent_uploads: 7
230+
index:
231+
- indexName: custom_index
232+
remoteName: my_storage
233+
scheme: http
234+
remoteLocation: my_storage.net
235+
maxGlobalDataSizeMB: 500
236+
maxGlobalRawDataSizeMB: 200
237+
hotlist_recency_secs: 30
238+
hotlist_bloom_filter_recency_hours: 1
239+
```
240+
223241
## Using deployment servers
224242
Briefly, deployment servers can be used to manage otherwise unclustered/disjoint Splunk instances. A primary use-case would be to stand up a deployment server to manage app or configuration distribution to a fleet of 100 universal forwarders.
225243

docs/CHANGELOG.md

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

33
## Navigation
44

5+
* [8.0.1](#801)
56
* [8.0.0](#800)
67
* [7.3.3](#733)
78
* [7.3.2](#732)
@@ -21,6 +22,23 @@
2122

2223
---
2324

25+
## 8.0.1
26+
27+
#### What's New?
28+
* New Splunk Enterprise release of 8.0.1
29+
30+
#### docker-splunk changes:
31+
* Bumping Splunk version. For details, see: https://docs.splunk.com/Documentation/Splunk/8.0.1/ReleaseNotes/Fixedissues
32+
* Bugfixes and increasing test coverage for new features
33+
34+
#### splunk-ansible changes:
35+
* Service name fixes for AWS
36+
* Bugfixes around forwarding and SHC-readiness
37+
* Additional options to control SmartStore configuration
38+
**NOTE** If you are currently using SmartStore, this change does break backwards-compatibility with former versions of the `default.yml` schema. This was necessary to expose the additional features asked for by the community. Please regenerate the `default.yml` if you plan on upgrading to this version.
39+
40+
---
41+
2442
## 8.0.0
2543

2644
#### What's New?

test_scenarios/kubernetes/3idx1sh1cm-pvc/splunk-master-deploy-persistent.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
apiVersion: extensions/v1beta1
2+
apiVersion: apps/v1
33
kind: Deployment
44
metadata:
55
name: master
@@ -9,6 +9,11 @@ metadata:
99
tier: management
1010
spec:
1111
replicas: 1
12+
selector:
13+
matchLabels:
14+
app: splunk
15+
role: splunk_cluster_master
16+
tier: management
1217
template:
1318
metadata:
1419
labels:

test_scenarios/kubernetes/3idx1sh1cm-pvc/splunk-search-deploy-persistent.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
apiVersion: extensions/v1beta1
2+
apiVersion: apps/v1
33
kind: Deployment
44
metadata:
55
name: search
@@ -9,6 +9,11 @@ metadata:
99
tier: search
1010
spec:
1111
replicas: 1
12+
selector:
13+
matchLabels:
14+
app: splunk
15+
role: splunk_search_head
16+
tier: search
1217
template:
1318
metadata:
1419
labels:

test_scenarios/kubernetes/3idx1sh1cm/splunk-master-deploy-emptydir.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
apiVersion: extensions/v1beta1
2+
apiVersion: apps/v1
33
kind: Deployment
44
metadata:
55
name: master
@@ -9,6 +9,11 @@ metadata:
99
tier: management
1010
spec:
1111
replicas: 1
12+
selector:
13+
matchLabels:
14+
app: splunk
15+
role: splunk_cluster_master
16+
tier: management
1217
template:
1318
metadata:
1419
labels:

test_scenarios/kubernetes/3idx1sh1cm/splunk-search-deploy-emptydir.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
apiVersion: extensions/v1beta1
2+
apiVersion: apps/v1
33
kind: Deployment
44
metadata:
55
name: search
@@ -9,6 +9,11 @@ metadata:
99
tier: search
1010
spec:
1111
replicas: 1
12+
selector:
13+
matchLabels:
14+
app: splunk
15+
role: splunk_search_head
16+
tier: search
1217
template:
1318
metadata:
1419
labels:

test_scenarios/kubernetes/3idxc3shc1cm1lm1dep-pvc/splunk-deployer-deploy-persistent.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
apiVersion: extensions/v1beta1
2+
apiVersion: apps/v1
33
kind: Deployment
44
metadata:
55
name: deployer
@@ -9,6 +9,11 @@ metadata:
99
tier: management
1010
spec:
1111
replicas: 1
12+
selector:
13+
matchLabels:
14+
app: splunk
15+
role: splunk_deployer
16+
tier: management
1217
template:
1318
metadata:
1419
labels:

test_scenarios/kubernetes/3idxc3shc1cm1lm1dep-pvc/splunk-license-deploy-persistent.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
apiVersion: extensions/v1beta1
2+
apiVersion: apps/v1
33
kind: Deployment
44
metadata:
55
name: license-master
@@ -9,6 +9,11 @@ metadata:
99
tier: management
1010
spec:
1111
replicas: 1
12+
selector:
13+
matchLabels:
14+
app: splunk
15+
role: splunk_license_master
16+
tier: management
1217
template:
1318
metadata:
1419
labels:

test_scenarios/kubernetes/3idxc3shc1cm1lm1dep-pvc/splunk-master-deploy-persistent.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
apiVersion: extensions/v1beta1
2+
apiVersion: apps/v1
33
kind: Deployment
44
metadata:
55
name: master
@@ -9,6 +9,11 @@ metadata:
99
tier: management
1010
spec:
1111
replicas: 1
12+
selector:
13+
matchLabels:
14+
app: splunk
15+
role: splunk_cluster_master
16+
tier: management
1217
template:
1318
metadata:
1419
labels:

0 commit comments

Comments
 (0)