Skip to content

Commit 2bd31e6

Browse files
authored
Feature/mk to k3d (#23)
* chore: switches to k3d from minikiube --------- Signed-off-by: Amit Singh <[email protected]>
1 parent 6eb66e8 commit 2bd31e6

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

Makefile

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
TEST_CLUSTER_NAME = "test-env"
12
CNPG_VERSION ?= "1.24.0"
23
PG_HOST ?= "http://127.0.0.1"
34
PG_USER_PASSWORD ?= "test_123"
@@ -37,14 +38,13 @@ tests: unit-tests acceptance-tests
3738
start: codegen
3839
go run main.go
3940

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)"; \
4444
fi
4545

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
4848
@echo -e "\n\n"
4949

5050
cnpg-controller-setup:
@@ -61,7 +61,7 @@ pg-setup: cnpg-controller-setup
6161
sleep 240
6262
kubectl get pods -l cnpg.io/cluster=cnpg-cluster -n postgres-cluster
6363

64-
local-pg-setup: minikube-setup pg-setup
64+
local-pg-setup: k3d-setup pg-setup
6565

6666
cloud-k8s-setup:
6767
chmod 400 configs/civo-kubeconfig

helm/cnpg-database/templates/cnpg-all.yaml

+5-4
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,10 @@ spec:
5656
containers:
5757
- name: adminer
5858
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"
6364
ports:
6465
- containerPort: 8080

0 commit comments

Comments
 (0)