Skip to content

Commit

Permalink
Merge pull request #8 from everettraven/k8s-allow-dups
Browse files Browse the repository at this point in the history
allow duplicates in k8s_yaml
  • Loading branch information
everettraven authored Jun 13, 2024
2 parents 823d6ae + de69d93 commit 255e8f7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,11 @@ def process_yaml(yaml):
c['image'] = '{}:{}'.format(image_without_tag, command)

# Now apply all the yaml
k8s_yaml(encode_yaml_stream(objects))
# We are using allow_duplicates=True here as both
# operator-controller and catalogd will be installed in the same
# namespace "olmv1-system" as of https://github.com/operator-framework/operator-controller/pull/888
# and https://github.com/operator-framework/catalogd/pull/283
k8s_yaml(encode_yaml_stream(objects), allow_duplicates=True)


# data format:
Expand Down

0 comments on commit 255e8f7

Please sign in to comment.