diff --git a/.gitignore b/.gitignore index dc877d6..d0566b5 100644 --- a/.gitignore +++ b/.gitignore @@ -24,6 +24,9 @@ bin *~ .vscode +# Tilt files. +.tiltbuild + **/*.kubeconfig **/*.crt **/*.key diff --git a/config/metadata.yaml b/config/metadata.yaml new file mode 100644 index 0000000..ffb9edd --- /dev/null +++ b/config/metadata.yaml @@ -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 \ No newline at end of file diff --git a/tilt-provider.yaml b/tilt-provider.yaml new file mode 100644 index 0000000..34e667d --- /dev/null +++ b/tilt-provider.yaml @@ -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" + } +} \ No newline at end of file