Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/cmd/cluster_gcp.go
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ func createGKECluster(clusterConfig *clusterconfig.GCPConfig, gcpClient *gcp.Cli

gkeClusterConfig := containerpb.Cluster{
Name: clusterConfig.ClusterName,
InitialClusterVersion: "1.17",
InitialClusterVersion: "1.18",
LoggingService: "none",
NodePools: []*containerpb.NodePool{
{
Expand Down
2 changes: 1 addition & 1 deletion images/cluster-autoscaler/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM k8s.gcr.io/autoscaling/cluster-autoscaler:v1.17.3
FROM k8s.gcr.io/autoscaling/cluster-autoscaler:v1.18.3
2 changes: 1 addition & 1 deletion images/manager/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN pip install --upgrade pip && \

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

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

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 && \
Expand Down
2 changes: 1 addition & 1 deletion manager/generate_eks.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def generate_eks(cluster_config_path):
"metadata": {
"name": cluster_config["cluster_name"],
"region": cluster_config["region"],
"version": "1.17",
"version": "1.18",
"tags": cluster_config["tags"],
},
"vpc": {"nat": {"gateway": nat_gateway}},
Expand Down