This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" | |
| NETWORK="k3d-vela-multicluster" | |
| echo "==> Creating shared Docker network: $NETWORK" | |
| docker network create "$NETWORK" 2>/dev/null || echo " Network already exists, skipping." | |
| echo "==> Creating hub cluster..." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" | |
| PROJECT_DIR="$SCRIPT_DIR/.." | |
| NETWORK="k3d-vela-multicluster" | |
| echo "==> Creating shared Docker network: $NETWORK" | |
| docker network create "$NETWORK" 2>/dev/null || echo " Network already exists, skipping." |
Branch:
defkit-implementation(anoop2811/kubevela)
KEP: kep-defkit.md
Testing Reference: Defkit Implementation Testing
This gist provides a comprehensive evaluation of the Defkit implementation (branch: defkit-implementation in anoop2811/kubevela) against the original KEP specification. It documents which features from the KEP have been implemented and verified working, which are implemented but untested, and which remain unimplemented. The evaluation is based on hands-on testing and includes known bugs, limitations, workarounds, and enhancement proposals for platform engineers adopting Defkit for authoring KubeVela X-Definitions in Go.
Defkit is a Go SDK that enables pla