Skip to content
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ is" with the default values or can be customised with the parameters below:
| PublicSubnetACidrBlock | The CIDR block to be used by the public subnet in availability zone A. | 10.0.1.0/24 |
| NodesSubnetACidrBlock | The CIDR block to be used by the nodes subnet in availability zone A. | 10.0.11.0/24 |
| NodesSubnetBCidrBlock | The CIDR block to be used by the nodes subnet in availability zone B. | 10.0.12.0/24 |
| KubernetesVersion | The version of Kubernetes to use in the EKS cluster specified as major.minor e.g. 1.29 | 1.29 |
| KubernetesVersion | The version of Kubernetes to use in the EKS cluster specified as major.minor e.g. 1.35 | 1.35 |
| ClusterDiskSize | The disk size for each node in the EKS node group. | 30 |
| ClusterNodeSize | The type of nodes to place in the cluster. | m6i.xlarge |
| NodeGroupMinSize | The minimum size for the EKS node group. | 2 |
Expand Down
4 changes: 2 additions & 2 deletions eks-cluster-config/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ appVersion: 0.1.0

dependencies:
- name: aws-efs-csi-driver
version: "2.1.5"
version: "4.0.0"
repository: https://kubernetes-sigs.github.io/aws-efs-csi-driver/
- name: cluster-autoscaler
version: "9.25.0"
version: "9.55.0"
repository: https://kubernetes.github.io/autoscaler
2 changes: 1 addition & 1 deletion eks-cluster-config/templates/init-burp-enterprise-db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
spec:
containers:
- name: psql-init
image: postgres:16
image: postgres:17
env:
- name: POSTGRES_USER
value: {{ .Values.database.postgresUser }}
Expand Down
8 changes: 4 additions & 4 deletions eks-cluster-config/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ aws-efs-csi-driver:
controller:
resources:
limits:
cpu: 100m
memory: 128Mi
cpu: 200m
memory: 256Mi
requests:
cpu: 100m
memory: 128Mi
node:
resources:
limits:
cpu: 100m
memory: 128Mi
cpu: 200m
memory: 256Mi
requests:
cpu: 100m
memory: 128Mi
4 changes: 2 additions & 2 deletions template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Parameters:
KubernetesVersion:
Type: String
Description: The version of Kubernetes to use in the EKS cluster specified as major.minor e.g. 1.20
Default: 1.29
Default: 1.35

ClusterDiskSize:
Type: Number
Expand Down Expand Up @@ -591,7 +591,7 @@ Resources:
VPCSecurityGroups:
- !Ref DatabaseSecurityGroup
Engine: postgres
EngineVersion: "17.2"
EngineVersion: "17.7"
MasterUsername: !Ref DatabaseAdminUsername
MasterUserPassword: !Ref DatabaseAdminPassword
DBInstanceIdentifier: !Sub ${FriendlyStackName}-db
Expand Down