diff --git a/build/build-image.sh b/build/build-image.sh index f910e298df..42e1326e40 100755 --- a/build/build-image.sh +++ b/build/build-image.sh @@ -19,7 +19,7 @@ set -euo pipefail ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. >/dev/null && pwd)" -CORTEX_VERSION=0.14.0 +CORTEX_VERSION=0.14.1 dir=$1 image=$2 diff --git a/build/cli.sh b/build/cli.sh index 8aab757c82..09c9341c90 100755 --- a/build/cli.sh +++ b/build/cli.sh @@ -19,7 +19,7 @@ set -euo pipefail ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. >/dev/null && pwd)" -CORTEX_VERSION=0.14.0 +CORTEX_VERSION=0.14.1 arg1=${1:-""} upload="false" diff --git a/build/push-image.sh b/build/push-image.sh index a6403e8887..99306ed071 100755 --- a/build/push-image.sh +++ b/build/push-image.sh @@ -17,7 +17,7 @@ set -euo pipefail -CORTEX_VERSION=0.14.0 +CORTEX_VERSION=0.14.1 image=$1 diff --git a/manager/check_cortex_version.sh b/manager/check_cortex_version.sh index 7f3a867f8a..c88be87dce 100755 --- a/manager/check_cortex_version.sh +++ b/manager/check_cortex_version.sh @@ -16,7 +16,7 @@ set -e -CORTEX_VERSION=master +CORTEX_VERSION=0.14.1 if [ "$CORTEX_VERSION" != "$CORTEX_CLI_VERSION" ]; then echo "error: your CLI version ($CORTEX_CLI_VERSION) doesn't match your Cortex manager image version ($CORTEX_VERSION); please update your CLI by following the instructions at https://www.cortex.dev/install, or update your Cortex manager image by modifying the value for \`image_manager\` in your cluster configuration file (e.g. cluster.yaml) and running \`cortex cluster update --config cluster.yaml\` (update other image paths in cluster.yaml as well if necessary)" diff --git a/manager/install.sh b/manager/install.sh index 7933e4096c..f48fd6d1a0 100755 --- a/manager/install.sh +++ b/manager/install.sh @@ -16,7 +16,7 @@ set -e -CORTEX_VERSION=0.14.0 +CORTEX_VERSION=0.14.1 EKSCTL_TIMEOUT=45m arg1="$1" diff --git a/pkg/consts/consts.go b/pkg/consts/consts.go index c8e453dad7..480bd4ff53 100644 --- a/pkg/consts/consts.go +++ b/pkg/consts/consts.go @@ -17,7 +17,7 @@ limitations under the License. package consts var ( - CortexVersion = "0.14.0" // CORTEX_VERSION + CortexVersion = "0.14.1" // CORTEX_VERSION CortexVersionMinor = "0.14" // CORTEX_VERSION_MINOR MaxClassesPerTrackerRequest = 20 // cloudwatch.GeMetricData can get up to 100 metrics per request, avoid multiple requests and have room for other stats diff --git a/pkg/workloads/cortex/client/cortex/client.py b/pkg/workloads/cortex/client/cortex/client.py index 1968582b2b..11ba57d35a 100644 --- a/pkg/workloads/cortex/client/cortex/client.py +++ b/pkg/workloads/cortex/client/cortex/client.py @@ -44,7 +44,7 @@ def __init__(self, aws_access_key_id, aws_secret_access_key, operator_url): self.aws_access_key_id = aws_access_key_id self.aws_secret_access_key = aws_secret_access_key self.headers = { - "CortexAPIVersion": "0.14.0", # CORTEX_VERSION + "CortexAPIVersion": "0.14.1", # CORTEX_VERSION "Authorization": "CortexAWS {}|{}".format( self.aws_access_key_id, self.aws_secret_access_key ), diff --git a/pkg/workloads/cortex/client/setup.py b/pkg/workloads/cortex/client/setup.py index 994ccadda7..48642e69f4 100644 --- a/pkg/workloads/cortex/client/setup.py +++ b/pkg/workloads/cortex/client/setup.py @@ -16,7 +16,7 @@ setup( name="cortex", - version="0.14.0", # CORTEX_VERSION + version="0.14.1", # CORTEX_VERSION description="", author="Cortex Labs", author_email="dev@cortexlabs.com", diff --git a/pkg/workloads/cortex/consts.py b/pkg/workloads/cortex/consts.py index d3fef85e7d..0535e6ef7f 100644 --- a/pkg/workloads/cortex/consts.py +++ b/pkg/workloads/cortex/consts.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -CORTEX_VERSION = "0.14.0" +CORTEX_VERSION = "0.14.1"