You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: manager/install.sh
+12-5
Original file line number
Diff line number
Diff line change
@@ -36,6 +36,7 @@ function cluster_up() {
36
36
create_eks
37
37
38
38
echo -n "○ updating cluster configuration "
39
+
setup_namespaces
39
40
setup_configmap
40
41
echo"✓"
41
42
@@ -195,6 +196,12 @@ function write_kubeconfig() {
195
196
out=$(kubectl get pods 2>&1|| true);if [[ "$out"==*"must be logged in to the server"* ]];thenecho"error: your aws iam user does not have access to this cluster; to grant access, see https://docs.cortex.dev/v/${CORTEX_VERSION_MINOR}/";exit 1;fi
196
197
}
197
198
199
+
functionsetup_namespaces() {
200
+
# doing a patch to prevent getting the kubectl.kubernetes.io/last-applied-configuration annotation warning
0 commit comments