Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FindFiles (0.09 sec)

  1. common/Makefile.common.mk

    	@${FINDFILES} -name '*.sh' -print0 | ${XARGS} -n 256 shellcheck
    
    lint-yaml:
    	@${FINDFILES} \( -name '*.yml' -o -name '*.yaml' \) -not -exec grep -q -e "{{" {} \; -print0 | ${XARGS} yamllint -c ./common/config/.yamllint.yml
    
    lint-helm:
    	@${FINDFILES} -name 'Chart.yaml' -print0 | ${XARGS} -L 1 dirname | xargs -r helm lint --strict
    
    lint-copyright-banner:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. operator/pkg/validate/validate_values_test.go

    	manifestDir := filepath.Join(repoRootDir, "manifests/charts")
    	for _, sd := range []string{"base", "gateways", "istio-cni", "istio-control"} {
    		dir := filepath.Join(manifestDir, sd)
    		files, err := util.FindFiles(dir, yamlFileFilter)
    		if err != nil {
    			t.Fatalf(err.Error())
    		}
    		allFiles = append(allFiles, files...)
    	}
    	for _, f := range allFiles {
    		b, err := os.ReadFile(f)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 13:43:12 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top