Skip to content

Commit

Permalink
Merge pull request #222 from thehejik/rancher-namespace-creation
Browse files Browse the repository at this point in the history
Fix epinio namespace creation in rancher
  • Loading branch information
thehejik authored Sep 27, 2022
2 parents f73eb8a + dcfd548 commit 713bd7e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cypress/support/functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,10 @@ Cypress.Commands.add('epinioInstall', ({s3, extRegistry}) => {

// Namespace where installation will happen
cy.typeValue({label: 'Name', value: 'epinio-install'});
cy.contains('default').type('epinio{enter}');
// Typing just a new namespace name is not enough, select 'Create a New Namespace' first
cy.get('div.vs__selected-options').eq(0).click();
cy.get('li.vs__dropdown-option').contains('Create a New Namespace').click({force: true});
cy.get(':nth-child(1) > .labeled-input').type('epinio');
cy.clickButton('Next');

// Configure custom domain
Expand Down

0 comments on commit 713bd7e

Please sign in to comment.