-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathjustfile
More file actions
33 lines (23 loc) · 929 Bytes
/
justfile
File metadata and controls
33 lines (23 loc) · 929 Bytes
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
default:
@just --list
fresh: stop up
up: start-kind-cluster build-deps integration-tests mock-stream-plugin manifests
start-kind-cluster:
kind create cluster
stop:
kind delete cluster
build-deps:
helm dependency build ./integration_tests/helm/setup
integration-tests:
helm upgrade --install --namespace default integration-tests integration_tests/helm/setup
install-stream:
kubectl apply -f integration_tests/manifests/stream_class.yaml
kubectl apply -f integration_tests/manifests/crd-microsoft-sql-server-stream.yaml
mock-stream-plugin:
helm install arcane-stream-mock oci://ghcr.io/sneaksanddata/helm/arcane-stream-mock \
--namespace default \
--set jobTemplateSettings.podFailurePolicySettings.retryOnExitCodes="{120,121}" \
--set jobTemplateSettings.backoffLimit=1 \
--version v1.0.9
manifests:
kubectl apply -f integration_tests/manifests/*.yaml