Skip to content

Commit 588aebd

Browse files
1.4.12 (#714)
* 1.4.12 * fixed limit/request test Co-authored-by: harshit-splunk <[email protected]>
1 parent 2b0cccf commit 588aebd

File tree

13 files changed

+54
-32
lines changed

13 files changed

+54
-32
lines changed

.github/workflows/ci_build_test.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,12 @@ jobs:
131131
run: |
132132
kubectl apply -f test/test_setup.yaml
133133
sleep 80
134+
echo "logging pod logs"
135+
kubectl logs -l app=splunk-kubernetes-logging
136+
echo "metrics pod logs"
137+
kubectl logs -l app=splunk-kubernetes-metrics
138+
echo "objects pod logs"
139+
kubectl logs -l app=splunk-kubernetes-objects
134140
135141
- uses: actions/setup-python@v2
136142
with:

PLUGIN_VERSIONS.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
FLUENTD_HEC_VERSION=1.2.9
2+
FLUENTD_HEC_VERSION=1.2.10
33
K8S_METRICS_VERISION=1.1.9
44
K8S_METRICS_AGGR_VERSION=1.1.9
55
KUBE_OBJECT_VERSION=1.1.9

ci_scripts/deploy_connector.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ helm install ci-sck --set global.splunk.hec.token=$CI_SPLUNK_HEC_TOKEN \
1414
--set kubelet.serviceMonitor.https=true \
1515
-f ci_scripts/sck_values.yml helm-artifacts/splunk-connect-for-kubernetes*.tgz
1616
#wait for deployment to finish
17-
until kubectl get pod | grep Running | [[ $(wc -l) == 4 ]]; do
18-
sleep 1;
17+
# 2 logging, 2 metrics, 1 aggregator, 1 object
18+
until kubectl get pod | grep Running | [[ $(wc -l) == 7 ]]; do
19+
sleep 5;
1920
done

helm-chart/splunk-connect-for-kubernetes/charts/splunk-kubernetes-logging/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ image:
305305
# The name of the image to pull
306306
name: splunk/fluentd-hec
307307
# The tag of the image to pull
308-
tag: 1.2.9
308+
tag: 1.2.10
309309
# The policy that specifies when the user wants the images to be pulled
310310
pullPolicy: IfNotPresent
311311
# Indicates if the image should be pulled using authentication from a secret

helm-chart/splunk-connect-for-kubernetes/charts/splunk-kubernetes-metrics/templates/daemonset.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ spec:
1515
selector:
1616
matchLabels:
1717
name: {{ template "splunk-kubernetes-metrics.fullname" . }}
18+
component: collector
1819
template:
1920
metadata:
2021
name: {{ template "splunk-kubernetes-metrics.fullname" . }}

helm-chart/splunk-connect-for-kubernetes/charts/splunk-kubernetes-metrics/templates/deploymentMetricsAggregator.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ spec:
1616
matchLabels:
1717
app: {{ template "splunk-kubernetes-metrics.name" . }}
1818
release: {{ .Release.Name }}
19+
component: aggregator
1920
template:
2021
metadata:
2122
labels:

helm-chart/splunk-connect-for-kubernetes/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ splunk-kubernetes-logging:
372372
# The name of the image to pull
373373
name: splunk/fluentd-hec
374374
# The tag of the image to pull
375-
tag: 1.2.9
375+
tag: 1.2.10
376376
# The policy that specifies when the user wants the images to be pulled
377377
pullPolicy: IfNotPresent
378378
# Indicates if the image should be pulled using authentication from a secret

manifests/splunk-kubernetes-logging/daemonset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ spec:
2828
key: node-role.kubernetes.io/master
2929
containers:
3030
- name: splunk-fluentd-k8s-logs
31-
image: docker.io/splunk/fluentd-hec:1.2.9
31+
image: docker.io/splunk/fluentd-hec:1.2.10
3232
imagePullPolicy: IfNotPresent
3333
securityContext:
3434
runAsUser: 0

manifests/splunk-kubernetes-metrics/daemonset.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ spec:
1414
selector:
1515
matchLabels:
1616
name: splunk-kubernetes-metrics
17+
component: collector
1718
template:
1819
metadata:
1920
name: splunk-kubernetes-metrics

manifests/splunk-kubernetes-metrics/deploymentMetricsAggregator.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ spec:
1414
selector:
1515
matchLabels:
1616
app: splunk-kubernetes-metrics
17+
component: aggregator
1718
template:
1819
metadata:
1920
labels:

0 commit comments

Comments
 (0)