Skip to content

Commit e47b23d

Browse files
authored
Release/9.0 (#550)
* Updating for Release/9.0 * Security patches * Update CI excecutor images
1 parent 071c8ac commit e47b23d

File tree

5 files changed

+27
-10
lines changed

5 files changed

+27
-10
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ executors:
66
- image: cimg/python:3.7
77
circleci_large:
88
machine:
9-
image: ubuntu-1604:202007-01
9+
image: ubuntu-2004:202201-02
1010
resource_class: large
1111
circleci_xlarge:
1212
machine:
13-
image: ubuntu-1604:202007-01
13+
image: ubuntu-2004:202201-02
1414
resource_class: xlarge
1515

1616
orbs:
@@ -122,7 +122,7 @@ jobs:
122122
- run:
123123
name: Setup python3
124124
command: |
125-
pyenv global 2.7.18 3.7.8
125+
pyenv global 2.7.18 3.10.2
126126
python --version
127127
pip --version
128128
python3 --version
@@ -154,7 +154,7 @@ jobs:
154154
- run:
155155
name: Setup python3
156156
command: |
157-
pyenv global 2.7.18 3.7.8
157+
pyenv global 2.7.18 3.10.2
158158
python --version
159159
pip --version
160160
python3 --version
@@ -186,7 +186,7 @@ jobs:
186186
- run:
187187
name: Setup python3
188188
command: |
189-
pyenv global 2.7.18 3.7.8
189+
pyenv global 2.7.18 3.10.2
190190
python --version
191191
pip --version
192192
python3 --version
@@ -221,7 +221,7 @@ jobs:
221221
- run:
222222
name: Setup python3
223223
command: |
224-
pyenv global 2.7.18 3.7.8
224+
pyenv global 2.7.18 3.10.2
225225
python --version
226226
pip --version
227227
python3 --version

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.2.6
11-
SPLUNK_BUILD := a6fe1ee8894b
10+
SPLUNK_VERSION := 9.0.0
11+
SPLUNK_BUILD := 6818ac46f2ec
1212
ifeq ($(shell arch), s390x)
1313
SPLUNK_ARCH = s390x
1414
else

base/redhat-8/install.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ microdnf -y --nodocs install wget sudo shadow-utils procps tar make gcc \
3131
# Patch security updates
3232
microdnf -y --nodocs update gnutls kernel-headers librepo libnghttp2 nettle \
3333
libpwquality libxml2 systemd-libs glib2 lz4-libs \
34-
rpm rpm-libs sqlite-libs cyrus-sasl-lib vim
34+
rpm rpm-libs sqlite-libs cyrus-sasl-lib vim expat \
35+
openssl-libs xz-libs zlib
3536

3637
# Reinstall tzdata (originally stripped from minimal image): https://bugzilla.redhat.com/show_bug.cgi?id=1903219
3738
microdnf -y --nodocs reinstall tzdata || microdnf -y --nodocs update tzdata

docs/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Red Hat images will continue to be published.
1010

1111
## Navigation
1212

13+
* [9.0.0](#900)
1314
* [8.2.6](#826)
1415
* [8.2.5](#825)
1516
* [8.2.4](#824)
@@ -72,6 +73,21 @@ Red Hat images will continue to be published.
7273

7374
---
7475

76+
## 9.0.0
77+
78+
#### What's New?
79+
* Releasing new images to support Splunk Enterprise release.
80+
81+
#### docker-splunk changes:
82+
* Bumping Splunk version. For details, see [Release notes for 9.0.0](https://docs.splunk.com/Documentation/Splunk/9.0.0/ReleaseNotes/)
83+
* Security patches & errata fixes
84+
85+
#### splunk-ansible changes:
86+
* Patch support for new major Splunk release
87+
* Documentation updates + bugfixes
88+
89+
---
90+
7591
## 8.2.6
7692

7793
#### What's New?

splunk/common-files/make-minimal-exclude.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
print("*/etc/apps/gettingstarted*")
4242
else:
4343
print("*/etc/apps/splunk_metrics_workspace*")
44-
elif int(m.group(1)) > 7:
44+
elif 7 < int(m.group(1)) < 9:
4545
print("*/etc/apps/splunk_metrics_workspace*")
4646
if int(m.group(2)) < 1:
4747
print("*/bin/parsetest*")

0 commit comments

Comments
 (0)