-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathk8s_rules.patch
More file actions
14 lines (14 loc) · 977 Bytes
/
k8s_rules.patch
File metadata and controls
14 lines (14 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/k8s/objects.bzl b/k8s/objects.bzl
index dda6dc1..8fa920e 100644
--- a/k8s/objects.bzl
+++ b/k8s/objects.bzl
@@ -106,9 +106,3 @@ def k8s_objects(name, objects, **kwargs):
# TODO(mattmoor): We may have to normalize the labels that come
# in through objects.
_run_all(name = name, objects = _cmd_objects("", objects), delimiter = "echo ---\n", **kwargs)
- _run_all(name = name + ".resolve", objects = _cmd_objects("", objects), delimiter = "echo ---\n", **kwargs)
- _run_all(name = name + ".create", objects = _cmd_objects(".create", objects), **kwargs)
- _run_all(name = name + ".delete", objects = _cmd_objects(".delete", objects, True), **kwargs)
- _run_all(name = name + ".replace", objects = _cmd_objects(".replace", objects), **kwargs)
- _run_all(name = name + ".apply", objects = _cmd_objects(".apply", objects), **kwargs)
- _run_all(name = name + ".diff", objects = _cmd_objects(".diff", objects), wrap_exits = True, **kwargs)