Skip to content

Commit

Permalink
k8s: fix copy and paste errors
Browse files Browse the repository at this point in the history
  • Loading branch information
trehn committed Apr 19, 2018
1 parent 736cc3a commit e3c42e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bundlewrap/items/kubernetes.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ class KubernetesClusterRoleBinding(KubernetesItem):
NAME_REGEX_COMPILED = re.compile(NAME_REGEX)

def get_auto_deps(self, items):
deps = super(KubernetesStatefulSet, self).get_auto_deps(items)
deps = super(KubernetesClusterRoleBinding, self).get_auto_deps(items)
deps.append("k8s_clusterrole:")
return deps

Expand Down Expand Up @@ -415,7 +415,7 @@ class KubernetesRoleBinding(KubernetesItem):
ITEM_TYPE_NAME = "k8s_rolebinding"

def get_auto_deps(self, items):
deps = super(KubernetesStatefulSet, self).get_auto_deps(items)
deps = super(KubernetesRoleBinding, self).get_auto_deps(items)
deps.append("k8s_role:")
return deps

Expand Down

0 comments on commit e3c42e9

Please sign in to comment.