File tree 2 files changed +12
-11
lines changed
helm/cnpg-database/templates
2 files changed +12
-11
lines changed Original file line number Diff line number Diff line change
1
+ TEST_CLUSTER_NAME = "test-env"
1
2
CNPG_VERSION ?= "1.24.0"
2
3
PG_HOST ?= "http://127.0.0.1"
3
4
PG_USER_PASSWORD ?= "test_123"
@@ -37,14 +38,13 @@ tests: unit-tests acceptance-tests
37
38
start : codegen
38
39
go run main.go
39
40
40
- minikube-cleanup :
41
- @if minikube status > /dev/null 2>&1 ; then \
42
- minikube stop; \
43
- minikube delete; \
41
+ k3d-cleanup :
42
+ @if k3d cluster list | grep -q " ^$( TEST_CLUSTER_NAME) " ; then \
43
+ k3d cluster delete " $( TEST_CLUSTER_NAME) " ; \
44
44
fi
45
45
46
- minikube -setup : minikube -cleanup
47
- minikube start --cpus 4 --memory 6144
46
+ k3d -setup : k3d -cleanup
47
+ k3d cluster create $( TEST_CLUSTER_NAME ) --servers 1 --agents 1
48
48
@echo -e " \n\n"
49
49
50
50
cnpg-controller-setup :
@@ -61,7 +61,7 @@ pg-setup: cnpg-controller-setup
61
61
sleep 240
62
62
kubectl get pods -l cnpg.io/cluster=cnpg-cluster -n postgres-cluster
63
63
64
- local-pg-setup : minikube -setup pg-setup
64
+ local-pg-setup : k3d -setup pg-setup
65
65
66
66
cloud-k8s-setup :
67
67
chmod 400 configs/civo-kubeconfig
Original file line number Diff line number Diff line change 56
56
containers :
57
57
- name : adminer
58
58
image : adminer:4.8.1
59
- limits :
60
- memory : " 256Mi"
61
- requests :
62
- cpu : " 50m"
59
+ resources :
60
+ limits :
61
+ memory : " 256Mi"
62
+ requests :
63
+ cpu : " 50m"
63
64
ports :
64
65
- containerPort : 8080
You can’t perform that action at this time.
0 commit comments