github.com/verrazzano/verrazzano@v1.7.1/ci/generic/README.md (about)

     1  In order to run these make targets locally, copy env-template.sh someplace and customize it to your liking.
     2  The template file describes what minimum variables are needed to be able to run the targets.
     3  
     4  To create a single KIND cluster and install a platform operator:
     5  
     6  $ make setup
     7  
     8  To install verrazzano run
     9  
    10  $ make install
    11  
    12  To run a test, you can run any test suite using the TEST_SUITES variable and the "test" target:
    13  
    14  $ TEST_SUITES="verify-install/..." make test 
    15  
    16  There are some convenience targets for some common acceptance tests, e.g.:
    17  
    18  $ make verify-install
    19  $ make verify-infra
    20  $ make verify-infra-all
    21  
    22  See acceptance-tests.mk for a full list.
    23