feat: scaffolding tilt development environment

This commit is contained in:
daseul cho
2023-08-25 23:17:38 +09:00
committed by Dario Tranchitella
parent 6ce83c551e
commit 33709005b1
3 changed files with 28 additions and 0 deletions

3
.gitignore vendored
View File

@@ -24,6 +24,9 @@ bin
*~
.vscode
# Tilt files.
.tiltbuild
**/*.kubeconfig
**/*.crt
**/*.key

10
config/metadata.yaml Normal file
View File

@@ -0,0 +1,10 @@
# maps release series of major.minor to cluster-api contract version
# the contract version may change between minor or major versions, but *not*
# between patch versions.
#
# update this file only when a new major or minor version is released
apiVersion: clusterctl.cluster.x-k8s.io/v1alpha3
releaseSeries:
- major: 0
minor: 3
contract: v1beta1

15
tilt-provider.yaml Normal file
View File

@@ -0,0 +1,15 @@
{
"name": "kamaji-core",
"config": {
"image": "docker.io/clastix/kamaji",
"live_reload_deps": [
"main.go",
"go.mod",
"go.sum",
"api",
"config",
"controllers"
],
"label": "CACPCK"
}
}