File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -32,14 +32,17 @@ jobs:
32
32
- name : Load Image into Kind
33
33
run : kind load docker-image ext-cardano-dbsync:1.0 --name k8scluster
34
34
35
+ - name : Apply manifest
36
+ run : kubectl apply -f test/manifest.yaml
37
+
38
+ - name : Wait containers is ready
39
+ run : sleep 8;
40
+
35
41
- name : Apply manifests
36
- run : |
37
- kubectl apply -f test/manifest.yaml
38
- kubectl apply -f test/dbsyncport.yaml
42
+ run : kubectl apply -f test/dbsyncport.yaml
39
43
40
44
- name : Validate if CRD is working
41
45
run : |
42
- sleep 8;
43
46
# kubectl describe dbsyncports.demeter.run --namespace project useraccess | grep -oP 'Username: \K\S+'
44
47
# kubectl describe dbsyncports.demeter.run --namespace project useraccess | grep -oP 'Password: \K\S+'
45
48
counter=0; while ((counter++ < 6)); do kubectl logs -n project "$(kubectl get pods -n project | grep -oP 'controller-\w+-\w+')"; sleep 2; done;
49
52
# run: |
50
53
# kubectl describe dbsyncports.demeter.run --namespace project useraccess | grep -oP 'Password: \K\S+'
51
54
# kubectl describe dbsyncports.demeter.run --namespace project useraccess | grep -oP 'Username: \K\S+'
52
-
You can’t perform that action at this time.
0 commit comments