-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (29 loc) · 952 Bytes
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: CI
on:
- pull_request
jobs:
job1:
runs-on: ubuntu-latest
name: build example and deploy to minikube
steps:
- uses: actions/checkout@v2
- name: Start minikube
uses: medyagh/setup-minikube@master
- name: Try the cluster !
run: kubectl get pods -A
- name: Build image
run: |
export SHELL=/bin/bash
eval $(minikube -p minikube docker-env)
docker build -f ./3.5_app_development/ex-5-java/Dockerfile.maven -t ghcr.io/takara9/ex5:1.1 3.5_app_development/ex-5-java
echo -n "verifying images:"
docker images
- name: Deploy to minikube
run:
kubectl apply -f ./3.5_app_development/ex-5-java/deployment.yaml
- name: Test service URLs
run: |
minikube service list
minikube service example --url
echo "------------------opening the service------------------"
curl $(minikube service example --url)