Skip to content

Commit

Permalink
1.15.7 rebuild
Browse files Browse the repository at this point in the history
Signed-off-by: psbrar99 <[email protected]>
  • Loading branch information
psbrar99 committed Jul 24, 2023
1 parent f9b47be commit 80071dc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tetrateci/gen_release_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,14 @@
manifest["version"] = tag
manifest["dependencies"]["istio"] = {"localpath" : "./istio"}
manifest["dependencies"]["client-go"]["branch"] = branch
del manifest["dependencies"]["proxy"]["auto"]
manifest["dependencies"]["proxy"]["branch"] = branch
manifest["dependencies"]["tools"]["branch"] = branch
# genproto has been removed from 1.14
# added check for "gogo-genproto" dependenciy if it present then assign branch
if "gogo-genproto" in manifest["dependencies"]:
manifest["dependencies"]["gogo-genproto"]["branch"] = branch
manifest["dependencies"]["envoy"]["git"] = "https://github.com/istio/envoy"
manifest["dependencies"]["envoy"]["git"] = "https://github.com/envoyproxy/envoy"
manifest['outputs'] = ["docker"]
f = open(os.path.join(destination_folder, "manifest.docker.yaml"), 'w')
yaml.dump(manifest, f)
Expand All @@ -41,4 +43,3 @@
print(manifest)
f = open(os.path.join(destination_folder, "manifest.archive.yaml"), 'w')
yaml.dump(manifest, f)

0 comments on commit 80071dc

Please sign in to comment.