-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7c29dc3
commit 44db01e
Showing
1 changed file
with
0 additions
and
44 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -124,50 +124,6 @@ jobs: | |
working-directory: front | ||
run: yarn build | ||
|
||
test_kube: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: "3.9" | ||
|
||
- name: Install skaffold | ||
run: | | ||
curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/v1.19.0/skaffold-linux-amd64 | ||
chmod +x skaffold | ||
sudo mv skaffold /usr/local/bin | ||
- name: Setup Minikube | ||
uses: manusa/[email protected] | ||
with: | ||
minikube version: "v1.17.1" | ||
kubernetes version: "v1.19.3" | ||
github token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Install cli requirements | ||
run: pip install -r cli/requirements.txt | ||
|
||
- name: Copy test config | ||
run: python tests/setup_forcad.py | ||
|
||
- name: Setup configuration | ||
run: ./control.py kube setup | ||
|
||
- name: Kustomize build | ||
uses: karancode/kustomize-github-action@master | ||
with: | ||
kustomize_version: "3.9.2" | ||
kustomize_build_dir: "deploy" | ||
env: | ||
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Skaffold build | ||
run: ./control.py kube build | ||
|
||
terraform_checks: | ||
runs-on: ubuntu-22.04 | ||
defaults: | ||
|