File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -13,5 +13,6 @@ function install_helm_chart() {
1313 yq w -i helm/values.yaml " aws.region" $region
1414
1515 kubectl create namespace $namespace
16- helm install -n $namespace ack-$service -controller helm
16+ kubectl apply -f helm/crds
17+ helm install -n $namespace ack-$service -controller --skip-crds helm
1718}
Original file line number Diff line number Diff line change @@ -47,6 +47,9 @@ function cleanup {
4747 print_controller_logs
4848
4949 helm delete -n $NAMESPACE ack-$SERVICE -controller
50+ pushd $SERVICE_REPO_PATH
51+ kubectl delete -f helm/crds
52+ popd
5053 kubectl delete namespace $NAMESPACE
5154
5255 cd $E2E_DIR
Original file line number Diff line number Diff line change 44# A function to get the OIDC_ID associated with an EKS cluster
55function get_oidc_id() {
66 local cluster_name=" $1 "
7- local region = " $2 "
8- eksctl utils associate-iam-oidc-provider --cluster $cluster_name --region $region --approve
7+ local region= " $2 "
8+ eksctl utils associate-iam-oidc-provider --cluster $cluster_name --region $region --approve > /dev/null
99 local oidc_url=$( aws eks describe-cluster --region $region --name $cluster_name --query " cluster.identity.oidc.issuer" --output text | cut -c9-)
1010 echo " ${oidc_url} "
1111}
You can’t perform that action at this time.
0 commit comments