Contains build files shared by many Istio repos.
Go to file
zirain c86fa2ea9b
[release-1.27] Automated branching step 5 (#1200)
2025-07-07 22:13:29 -04:00
.github [CNCF graduation] Add security tab for Istio repos (#830) 2023-05-11 07:26:16 -07:00
bin Fix update_build_image to insert correct image (#855) 2023-06-15 09:18:36 -07:00
common-protos protos: bump k8s protos (#1007) 2024-03-11 11:47:23 -07:00
files [release-1.27] Automated branching step 5 (#1200) 2025-07-07 22:13:29 -04:00
protos/istio.io/extensions
.gitignore
CODEOWNERS [release-1.27] Automated branching step 5 (#1200) 2025-07-07 22:13:29 -04:00
LICENSE
Makefile
README.md Fix README.md for markdown lint (#778) 2023-02-07 14:23:35 -08:00
get_protos.sh protos: bump k8s protos (#1007) 2024-03-11 11:47:23 -07:00

README.md

Common Files

This repository contains build-related files used by several Istio repos.

Within repos that use files from this repo, just run make update-common or make update-common-protos to grab the latest versions of the files from the files/common or common-protos directories, respectively. In addition to copying the latest versions of the files from this repo, the make commands will also update the .commonfiles.sha file within their respective directories to contain the SHA representing the exact set of common files copied into the repo.

Makefile Tab Completion

The default bash-completion for make does not look for files called anything other than Makefile. Add the following to your bash profile to see all make targets provided by this repo and the repos that use it.

complete -W "\`find . -iname \"?akefil*\" | xargs -I {} grep -hoE '^[a-zA-Z0-9_.-]+:([^=]|$)' {} | sed 's/[^a-zA-Z0-9_.-]*$//' | sort -u\`" make