We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f10fac6 + 3c11fe2 commit 5b41489Copy full SHA for 5b41489
Tiltfile
@@ -1,4 +1,8 @@
1
# -*- mode: Python -*-
2
+# Anonymous, ephemeral image registry.
3
+default_registry('ttl.sh')
4
+# Allow Tilt to use the local Docker daemon
5
+allow_k8s_contexts('kubernetes-admin@kubernetes')
6
7
BASE_IMAGE_MINIMAL="gcr.io/distroless/base"
8
BASE_IMAGE_FULL="debian:bullseye-slim"
@@ -12,7 +16,6 @@ IMAGE_NAME = os.getenv('IMAGE_NAME', "node-feature-discovery")
12
16
# registry.k8s.io/nfd/node-feature-discovery:master
13
17
IMAGE = "/".join([IMAGE_REGISTRY, IMAGE_NAME])
14
18
TAGGED_IMAGE = ":".join([IMAGE, IMAGE_TAG_NAME])
15
-allow_k8s_contexts('kubernetes-admin@kubernetes')
19
20
# Builds container image
21
def build_image():
0 commit comments