Skip to content

Commit 202d482

Browse files
committed
Update EKS Kubernetes version to 1.13
1 parent c42c048 commit 202d482

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

cortex.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export CORTEX_BUCKET="${CORTEX_BUCKET:-""}"
110110
export CORTEX_REGION="${CORTEX_REGION:-us-west-2}"
111111

112112
export CORTEX_CLUSTER="${CORTEX_CLUSTER:-cortex}"
113-
export CORTEX_NODE_TYPE="${CORTEX_NODE_TYPE:-t3.medium}"
113+
export CORTEX_NODE_TYPE="${CORTEX_NODE_TYPE:-t3.small}"
114114
export CORTEX_NODES_MIN="${CORTEX_NODES_MIN:-2}"
115115
export CORTEX_NODES_MAX="${CORTEX_NODES_MAX:-5}"
116116
export CORTEX_NAMESPACE="${CORTEX_NAMESPACE:-cortex}"

docs/cluster/config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export CORTEX_REGION="us-west-2"
2424
export CORTEX_CLUSTER="cortex"
2525

2626
# The AWS node type Cortex will use
27-
export CORTEX_NODE_TYPE="t3.medium"
27+
export CORTEX_NODE_TYPE="t3.small"
2828

2929
# Minimum number of nodes in the cluster
3030
export CORTEX_NODES_MIN=2

docs/cluster/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export AWS_SECRET_ACCESS_KEY=***
3131
./cortex.sh install cli
3232

3333
# Get the operator endpoint
34-
./cortex.sh get endpoints
34+
./cortex.sh info
3535

3636
# Configure the CLI
3737
cortex configure

manager/install_eks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ eksctl create cluster --name=$CORTEX_CLUSTER \
2525
--nodes-min=$CORTEX_NODES_MIN \
2626
--nodes-max=$CORTEX_NODES_MAX \
2727
--node-ami=auto \
28-
--version=1.11 \
28+
--version=1.13 \
2929
--asg-access
3030

3131
echo -e "\n✓ Spun up the cluster"

pkg/operator/endpoints/errors.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ func ErrorAuthHeaderMalformed() error {
118118
func ErrorAuthAPIError() error {
119119
return Error{
120120
Kind: ErrAuthAPIError,
121-
message: "the operator is unable to verify user's credentials using AWS STS; export AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY, and run `./cortex.sh update operator` to update the operator's AWS credentials",
121+
message: "the operator is unable to verify user's credentials using AWS STS; export AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY, and run `./cortex.sh update` to update the operator's AWS credentials",
122122
}
123123
}
124124

0 commit comments

Comments
 (0)