Skip to content

Commit 06230b3

Browse files
authored
Merge pull request #1599 from splunk/CSPL-4113-k8s-update
CSPL-4113 k8s update
2 parents a02abb9 + 8453acb commit 06230b3

19 files changed

+36
-20
lines changed

.env

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ GO_VERSION=1.23.0
44
AWSCLI_URL=https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.8.6.zip
55
KUBECTL_VERSION=v1.29.1
66
AZ_CLI_VERSION=2.30.0
7-
EKSCTL_VERSION=v0.191.0
8-
EKS_CLUSTER_K8_VERSION=1.31
7+
EKSCTL_VERSION=v0.215.0
8+
EKS_CLUSTER_K8_VERSION=1.34
99
EKS_INSTANCE_TYPE=m5.2xlarge
1010
EKS_INSTANCE_TYPE_ARM64=c6g.4xlarge
1111
SPLUNK_ENTERPRISE_RELEASE_IMAGE=splunk/splunk:10.0.0

.github/workflows/arm-AL2023-build-test-push-workflow-AL2023.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,8 @@ jobs:
220220
make cluster-up
221221
- name: install metric server
222222
run: |
223-
kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
223+
curl -LO https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
224+
kubectl replace --force -f components.yaml || kubectl apply -f components.yaml
224225
- name: install k8s dashboard
225226
run: |
226227
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.5/aio/deploy/recommended.yaml

.github/workflows/arm-AL2023-int-test-workflow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,8 @@ jobs:
170170
make cluster-up
171171
- name: install metric server
172172
run: |
173-
kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
173+
curl -LO https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
174+
kubectl replace --force -f components.yaml || kubectl apply -f components.yaml
174175
- name: install k8s dashboard
175176
run: |
176177
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.5/aio/deploy/recommended.yaml

.github/workflows/arm-RHEL-build-test-push-workflow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,8 @@ jobs:
170170
make cluster-up
171171
- name: install metric server
172172
run: |
173-
kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
173+
curl -LO https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
174+
kubectl replace --force -f components.yaml || kubectl apply -f components.yaml
174175
- name: install k8s dashboard
175176
run: |
176177
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.5/aio/deploy/recommended.yaml

.github/workflows/arm-RHEL-int-test-workflow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,8 @@ jobs:
170170
make cluster-up
171171
- name: install metric server
172172
run: |
173-
kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
173+
curl -LO https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
174+
kubectl replace --force -f components.yaml || kubectl apply -f components.yaml
174175
- name: install k8s dashboard
175176
run: |
176177
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.5/aio/deploy/recommended.yaml

.github/workflows/arm-Ubuntu-build-test-push-workflow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,8 @@ jobs:
220220
make cluster-up
221221
- name: install metric server
222222
run: |
223-
kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
223+
curl -LO https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
224+
kubectl replace --force -f components.yaml || kubectl apply -f components.yaml
224225
- name: install k8s dashboard
225226
run: |
226227
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.5/aio/deploy/recommended.yaml

.github/workflows/arm-Ubuntu-int-test-workflow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,8 @@ jobs:
170170
make cluster-up
171171
- name: install metric server
172172
run: |
173-
kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
173+
curl -LO https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
174+
kubectl replace --force -f components.yaml || kubectl apply -f components.yaml
174175
- name: install k8s dashboard
175176
run: |
176177
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.5/aio/deploy/recommended.yaml

.github/workflows/build-test-push-workflow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,8 @@ jobs:
267267
make cluster-up
268268
- name: install metric server
269269
run: |
270-
kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
270+
curl -LO https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
271+
kubectl replace --force -f components.yaml || kubectl apply -f components.yaml
271272
- name: install k8s dashboard
272273
run: |
273274
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.5/aio/deploy/recommended.yaml

.github/workflows/distroless-build-test-push-workflow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,8 @@ jobs:
268268
make cluster-up
269269
- name: install metric server
270270
run: |
271-
kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
271+
curl -LO https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
272+
kubectl replace --force -f components.yaml || kubectl apply -f components.yaml
272273
- name: install k8s dashboard
273274
run: |
274275
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.5/aio/deploy/recommended.yaml

.github/workflows/distroless-int-test-workflow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,8 @@ jobs:
163163
make cluster-up
164164
- name: install metric server
165165
run: |
166-
kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
166+
curl -LO https://github.com/kubernetes-sigs/metrics-server/releases/latest/download/components.yaml
167+
kubectl replace --force -f components.yaml || kubectl apply -f components.yaml
167168
- name: install k8s dashboard
168169
run: |
169170
kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.5/aio/deploy/recommended.yaml

0 commit comments

Comments
 (0)