-
Notifications
You must be signed in to change notification settings - Fork 19
55 lines (43 loc) · 1.21 KB
/
minikube.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Minikube integration
"on":
push:
branches:
- "tickets/**"
workflow_dispatch: {}
jobs:
minikube:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install httpie
run: brew install httpie
- name: Set up Minikube
uses: medyagh/[email protected]
with:
minikube-version: "latest"
kubernetes-version: "v1.22.8"
driver: ""
- name: Test interaction with the cluster
run: kubectl get nodes
- name: Set up Kafka
shell: bash
working-directory: "minikube"
run: "./setupkafka.sh 0.29.0"
- name: Build image in Minikube
shell: bash
working-directory: "minikube"
run: "./buildimage.sh"
- name: Deploy strimzi-registry-operator
shell: bash
working-directory: "minikube"
run: "./deploysro.sh"
- name: Deploy a StrimziSchemaRegistry
shell: bash
working-directory: "minikube"
run: "./deployregistry.sh"
- name: Test Registry API
shell: bash
working-directory: "minikube"
run: "./testregistryapi.sh confluent-schema-registry"