Skip to content

Commit 3d30478

Browse files
authored
Update k8s from 1.17 to 1.18 (#1842)
1 parent a64eb9f commit 3d30478

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

cli/cmd/cluster_gcp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ func createGKECluster(clusterConfig *clusterconfig.GCPConfig, gcpClient *gcp.Cli
454454

455455
gkeClusterConfig := containerpb.Cluster{
456456
Name: clusterConfig.ClusterName,
457-
InitialClusterVersion: "1.17",
457+
InitialClusterVersion: "1.18",
458458
LoggingService: "none",
459459
NodePools: []*containerpb.NodePool{
460460
{

images/cluster-autoscaler/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
FROM k8s.gcr.io/autoscaling/cluster-autoscaler:v1.17.3
1+
FROM k8s.gcr.io/autoscaling/cluster-autoscaler:v1.18.3

images/manager/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN pip install --upgrade pip && \
1515

1616
RUN apk add --no-cache bash curl gettext jq openssl
1717

18-
RUN curl --location "https://github.com/weaveworks/eksctl/releases/download/0.27.0/eksctl_$(uname -s)_amd64.tar.gz" | tar xz -C /tmp && \
18+
RUN curl --location "https://github.com/weaveworks/eksctl/releases/download/0.36.2/eksctl_$(uname -s)_amd64.tar.gz" | tar xz -C /tmp && \
1919
mv /tmp/eksctl /usr/local/bin
2020

2121
RUN curl -o aws-iam-authenticator https://amazon-eks.s3.us-west-2.amazonaws.com/1.17.9/2020-08-04/bin/linux/amd64/aws-iam-authenticator && \

manager/generate_eks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def generate_eks(cluster_config_path):
192192
"metadata": {
193193
"name": cluster_config["cluster_name"],
194194
"region": cluster_config["region"],
195-
"version": "1.17",
195+
"version": "1.18",
196196
"tags": cluster_config["tags"],
197197
},
198198
"vpc": {"nat": {"gateway": nat_gateway}},

0 commit comments

Comments
 (0)