Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kubernetes Components Update and Code Cleanup #89

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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 deployment/dev_environment_cloud9/cfn/cloud9-htc-grid.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Parameters:
C9KubectlVersion:
Description: kubectl version to install on Cloud9
Type: String
Default: 1.25.12
Default: 1.31.4
ConstraintDescription: Must be a valid kubectl version.
C9TerraformVersion:
Description: Terraform version to install on Cloud9
Expand Down
4 changes: 2 additions & 2 deletions deployment/grid/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ variable "lambda_runtime" {
variable "kubernetes_version" {
description = "Name of EKS cluster in AWS"
type = string
default = "1.25"
default = "1.31"
}

variable "k8s_ca_version" {
description = "Cluster autoscaler version"
type = string
default = "v1.21.0"
default = "v1.31.0"
}

variable "k8s_keda_version" {
Expand Down
3 changes: 1 addition & 2 deletions source/compute_plane/python/agent/agent.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2024 Amazon.com, Inc. or its affiliates.
# Copyright 2024 Amazon.com, Inc. or its affiliates.
# SPDX-License-Identifier: Apache-2.0
# Licensed under the Apache License, Version 2.0 https://aws.amazon.com/apache-2-0/

Expand Down Expand Up @@ -638,7 +638,6 @@ async def run_task(task, sqs_msg):
task_def = json.loads(tast_str)

submit_pre_agent_measurements(task)
task_id = task["task_id"]

xray_recorder.end_subsegment()
execution_is_completed_flag = 0
Expand Down
Loading