Create Loft preview project #4
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: Create Loft preview project | |
on: | |
workflow_dispatch: | |
inputs: | |
vcluster-name: | |
description: 'Name of vcluster to create' | |
default: "my-vcluster" | |
env: | |
VCLUSTER_NAME: ${{ inputs.vcluster-name || 'my-vcluster' }} | |
# define a job that creates a vcluster using the Loft CLI. | |
jobs: | |
create-preview-project: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: Install Loft CLI | |
uses: loft-sh/setup-loft@v2 | |
with: | |
version: v3.2.4 | |
url: ${{ secrets.LOFT_URL }} | |
# Specify your Loft access key here | |
access-key: ${{ secrets.LOFT_DEV_CLUSTER_ACCESS_KEY }} | |
- name: Create Preview Project | |
run: | | |
loft use management | |
kubectl apply -f ./loft/echo-dev-team.yaml | |
kubectl apply -f ./loft/preview-vcluster-template.yaml | |
kubectl apply -f ./loft/preview-project.yaml |