Use latest Version of Operator for Testing (#2650)

This commit is contained in:
Daniel Valdivia
2023-02-08 17:08:20 -08:00
committed by GitHub
parent 8346fe4bd6
commit e8f27228a2
2 changed files with 11 additions and 9 deletions

View File

@@ -48,14 +48,9 @@ const inspectScreenUrl = `${testDomainUrl}${IAM_PAGES.SUPPORT_INSPECT}`;
const loginSubmitBtn = Selector("form button");
export const supportSidebarEl = Selector(".MuiPaper-root")
export const inspectEl = Selector(".MuiPaper-root")
.find("ul")
.child("#support");
export const supportChildren = Selector("#support-children");
export const inspectEl = supportChildren
.find("a")
.withAttribute("href", IAM_PAGES.SUPPORT_INSPECT);
.child("#inspect");
export const inspect_volume_input = Selector('[data-test-id="inspect_volume"]');
export const inspect_path_input = Selector('[data-test-id="inspect_path"]');

View File

@@ -37,10 +37,17 @@ function setup_kind() {
try kubectl get nodes
}
function get_latest_release() {
curl --silent "https://api.github.com/repos/$1/releases/latest" |
grep '"tag_name":' |
sed -E 's/.*"([^"]+)".*/\1/'
}
function install_operator() {
echo " Load minio/operator image to the cluster"
try kubectl apply -k github.com/minio/operator/
OPR_LATEST=$(get_latest_release minio/operator)
echo " Load minio/operator image ($OPR_LATEST) to the cluster"
try kubectl apply -k github.com/minio/operator/\?ref\=$OPR_LATEST
echo "Waiting for k8s api"
sleep 10
echo "Waiting for Operator Pods to come online (2m timeout)"