Skip to content

Commit a990890

Browse files
committed
change kind-init to init
1 parent 3725770 commit a990890

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ An aggregator using uma: https://github.com/SolidLabResearch/user-managed-access
1616

1717
```bash
1818
# Full setup: Create cluster, build containers, deploy everything
19-
make kind-init
19+
make init
2020
make deploy
2121

2222
# Access at http://aggregator.local
@@ -49,7 +49,7 @@ curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
4949

5050
```bash
5151
# Create Kind cluster and load containers
52-
make kind-init
52+
make init
5353

5454
# Deploy aggregator with Traefik
5555
make deploy
@@ -68,7 +68,7 @@ make clean # Delete everything including cluster
6868

6969
### Cluster Management
7070
```bash
71-
make kind-init # Create cluster, build & load containers, start cleaner
71+
make init # Create cluster, build & load containers, start cleaner
7272
make kind-start # Create/start Kind cluster only
7373
make kind-stop # Delete Kind cluster
7474
make kind-dashboard # Deploy Kubernetes dashboard
@@ -160,11 +160,11 @@ Automated tests run on GitHub Actions for Linux and Windows on every push and pu
160160

161161
### Run Locally
162162

163-
Integration tests use the existing Kind cluster and deployment created by `make kind-init` and `make deploy`.
163+
Integration tests use the existing Kind cluster and deployment created by `make init` and `make deploy`.
164164

165165
```bash
166166
# First-time setup
167-
make kind-init
167+
make init
168168
make deploy
169169

170170
# Run tests (uses existing cluster)
@@ -193,7 +193,7 @@ The GitHub Actions workflow automatically:
193193
```bash
194194
# Recreate cluster
195195
make clean
196-
make kind-init
196+
make init
197197
make deploy
198198
```
199199

integration-test/utils/test_environment.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ func SetupTestEnvironment(ctx context.Context) (*TestEnvironment, error) {
5050
cmd := exec.CommandContext(ctx, "kind", "get", "clusters")
5151
output, err := cmd.CombinedOutput()
5252
if err != nil || !strings.Contains(string(output), env.ClusterName) {
53-
return nil, fmt.Errorf("kind cluster '%s' not found. Please run 'make kind-init' first", env.ClusterName)
53+
return nil, fmt.Errorf("kind cluster '%s' not found. Please run 'make init' first", env.ClusterName)
5454
}
5555

5656
if err := env.setupKubeClient(); err != nil {

makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: kind-init kind-start kind-stop kind-dashboard \
1+
.PHONY: init kind-start kind-stop kind-dashboard \
22
containers-build containers-load containers-all \
33
kind-generate-key-pair \
44
kind-deploy kind-start-traefik kind-start-cleaner \
@@ -13,7 +13,7 @@
1313
# ------------------------
1414

1515
# Initialize kind cluster, build/load containers, generate keys, start cleaner
16-
kind-init: kind-start containers-all kind-generate-key-pair kind-start-cleaner
16+
init: kind-start containers-all kind-generate-key-pair kind-start-cleaner
1717

1818
# Start kind cluster
1919
kind-start:

0 commit comments

Comments
 (0)