Autogenerate basic helm readme's for app umbrella charts #570
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: E2E | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
create-cluster: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Create k8s Kind Cluster | |
uses: helm/[email protected] | |
with: | |
install_only: true | |
- run: | | |
wget -O- https://apt.releases.hashicorp.com/gpg | gpg --dearmor | sudo tee /usr/share/keyrings/hashicorp-archive-keyring.gpg | |
echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list | |
sudo apt-get update | |
sudo apt-get install -y terraform | |
- run: | | |
GOBIN="$HOME"/bin make build-cli | |
chmod 755 plural.o | |
mv plural.o /usr/local/bin/plural | |
- run: hack/e2e/setup-plural.sh | |
env: | |
CLI_E2E_CONF: ${{ secrets.CLI_E2E_CONF }} | |
CLI_E2E_IDENTITY_FILE: ${{ secrets.CLI_E2E_IDENTITY_FILE }} | |
CLI_E2E_KEY_FILE: ${{ secrets.CLI_E2E_KEY_FILE }} | |
CLI_E2E_PUBLIC_KEY: ${{ secrets.CLI_E2E_PUBLIC_KEY }} | |
CLI_E2E_PRIVATE_KEY: ${{ secrets.CLI_E2E_PRIVATE_KEY }} | |
CLI_E2E_SHARING_PRIVATE_KEY: ${{ secrets.CLI_E2E_SHARING_PRIVATE_KEY }} | |
CLI_E2E_SHARING_PUBLIC_KEY: ${{ secrets.CLI_E2E_SHARING_PUBLIC_KEY }} | |
- run: go test -v -race ./pkg/test/e2e/... -tags="e2e" | |
- run: | | |
cd $HOME/test | |
plural destroy --force --all --commit="" | |
env: | |
PLURAL_DESTROY_CONFIRM: true | |
PLURAL_DESTROY_AFFIRM_UNINSTALL_APPS: true |