Skip to content

Commit 3f750bf

Browse files
authored
Merge pull request #625 from sassoftware/staging
8.2.0 - April 16, 2025
2 parents 38954ab + fbda0d7 commit 3f750bf

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.github/workflows/linter-analysis.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout Repo
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414

1515
- name: Run Hadolint Action
16-
uses: jbergstroem/hadolint-gh-action@v1.11.0
16+
uses: jbergstroem/hadolint-gh-action@v1.12.2
1717
with:
1818
dockerfile: ./Dockerfile
1919
config_file: linting-configs/.hadolint.yaml
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout Repo
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2929

3030
# .shellcheckrc is read from the current dir
3131
- name: Copy Config to Parent Level Directory
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: ubuntu-latest
4343
steps:
4444
- name: Checkout Repo
45-
uses: actions/checkout@v3
45+
uses: actions/checkout@v4
4646

4747
# The latest ansible/ansible-lint-action removed the
4848
# ability to specify configs from other dirs

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update && apt-get upgrade -y \
99
&& update-alternatives --install /usr/bin/pip pip /usr/bin/pip3 1
1010

1111
FROM baseline AS tool_builder
12-
ARG kubectl_version=1.30.10
12+
ARG kubectl_version=1.31.7
1313

1414
WORKDIR /build
1515

docs/user/Dependencies.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ The following list details our dependencies and versions (~ indicates multiple p
1313
| ~ | docker | >=25.0.3 |
1414
| ~ | git | any |
1515
| ~ | rsync | any |
16-
| ~ | kubectl | 1.29 - 1.31 |
16+
| ~ | kubectl | 1.30 - 1.32 |
1717
| ~ | Helm | 3.16.2 |
1818
| pip3 | ansible | 10.5.0 |
1919
| pip3 | openshift | 0.13.2 |
20-
| pip3 | kubernetes | 29.0.0 |
20+
| pip3 | kubernetes | 32.0.1 |
2121
| pip3 | dnspython | 2.7.0 |
2222
| pip3 | docker | 7.1.0 |
23-
| pip3 | urllib3 | 2.2.3 |
23+
| pip3 | urllib3 | 2.3.0 |
2424
| ansible-galaxy | community.docker | 3.13.0 |
2525
| ansible-galaxy | ansible.utils | 5.1.2 |
2626
| ansible-galaxy | kubernetes.core | 5.0.0 |
@@ -49,7 +49,7 @@ As described in the [Docker Installation](./DockerUsage.md) section add addition
4949
```bash
5050
# Override kubectl version
5151
docker build \
52-
--build-arg kubectl_version=1.30.6 \
52+
--build-arg kubectl_version=1.31.7 \
5353
-t viya4-deployment .
5454
```
5555

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
ansible==10.5.0 # 9.6.0 # 9.2.0 # 9.1.0 # 8.6.0 # 2.10.7
1+
ansible~=10.5.0 # 9.6.0 # 9.2.0 # 9.1.0 # 8.6.0 # 2.10.7
22
openshift==0.13.2 # 0.13.1 # 0.12.0
3-
kubernetes==29.0.0 # 27.2.0 # 26.1.0 # 12.0.1
3+
kubernetes~=32.0.1 # 27.2.0 # 26.1.0 # 12.0.1
44
dnspython==2.7.0 # 2.6.1 # 2.3.0 # 2.1.0
55
docker==7.1.0 # 7.0.0 # 5.0.3
6-
urllib3==2.2.3 # 1.26.18
6+
urllib3~=2.3.0 # 1.26.18
77
wheel>=0.44.0 # 0.38.1
88
setuptools>=75.1.0 # 65.5.1

roles/baseline/defaults/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ CERT_MANAGER_CONFIG:
2525
METRICS_SERVER_ENABLED: true
2626
METRICS_SERVER_NAME: metrics-server
2727
METRICS_SERVER_CHART_NAME: metrics-server
28-
METRICS_SERVER_CHART_URL: https://charts.bitnami.com/bitnami/
29-
METRICS_SERVER_CHART_VERSION: 6.6.5
28+
METRICS_SERVER_CHART_URL: https://kubernetes-sigs.github.io/metrics-server/
29+
METRICS_SERVER_CHART_VERSION: 3.12.2
3030
METRICS_SERVER_CONFIG:
3131
apiService:
3232
create: true
@@ -178,7 +178,7 @@ CLUSTER_AUTOSCALER_NAME: cluster-autoscaler
178178
CLUSTER_AUTOSCALER_NAMESPACE: kube-system
179179
CLUSTER_AUTOSCALER_CHART_NAME: cluster-autoscaler
180180
CLUSTER_AUTOSCALER_CHART_URL: https://kubernetes.github.io/autoscaler
181-
CLUSTER_AUTOSCALER_CHART_VERSION: 9.36.0
181+
CLUSTER_AUTOSCALER_CHART_VERSION: 9.46.6
182182
CLUSTER_AUTOSCALER_ACCOUNT: null
183183
CLUSTER_AUTOSCALER_LOCATION: us-east-1
184184
CLUSTER_AUTOSCALER_CONFIG:

0 commit comments

Comments
 (0)