-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[issues-1315] - Fixing the GitHub workflow CI script in order to use …
…a more recent version for the setup-minikube step
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 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 |
---|---|---|
|
@@ -26,8 +26,9 @@ jobs: | |
# failsafe.groups configuration depends on the env setup. | ||
FAILSAFE_GROUPS: '' | ||
steps: | ||
- name: Setup Minikube # add an if for the kubernetes target only? | ||
uses: manusa/[email protected] | ||
- name: Setup Minikube | ||
if: ${{ matrix.target == 'kubernetes' }} | ||
uses: manusa/[email protected] | ||
with: | ||
driver: docker | ||
container runtime: containerd | ||
|
@@ -36,6 +37,7 @@ jobs: | |
github token: ${{ secrets.GITHUB_TOKEN }} | ||
start args: "--memory='4gb' --cpus='2'" | ||
- name: Enable minikube registry | ||
if: ${{ matrix.target == 'kubernetes' }} | ||
run: | | ||
minikube addons enable registry | ||
kubectl port-forward --namespace kube-system service/registry 5000:80 & | ||
|