Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Elias (0.17 sec)

  1. operator/cmd/mesh/shared.go

    		return err
    	}
    	ms := name.Manifest{
    		Name:    componentName,
    		Content: manifestStr,
    	}
    	_, err = reconciler.ApplyManifest(ms)
    	return err
    }
    
    // --manifests is an alias for --set installPackagePath=
    // --revision is an alias for --set revision=
    func applyFlagAliases(flags []string, manifestsPath, revision string) []string {
    	if manifestsPath != "" {
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Mar 29 02:29:02 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  2. istioctl/pkg/precheck/precheck.go

    		}
    	}
    	if minor <= 20 {
    		// VERIFY_CERTIFICATE_AT_CLIENT and ENABLE_AUTO_SNI
    		if err := checkDestinationRuleTLS(cli, &messages); err != nil {
    			return nil, err
    		}
    		// ENABLE_EXTERNAL_NAME_ALIAS
    		if err := checkExternalNameAlias(cli, &messages); err != nil {
    			return nil, err
    		}
    		// PERSIST_OLDEST_FIRST_HEURISTIC_FOR_VIRTUAL_SERVICE_HOST_MATCHING
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Apr 12 02:57:30 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  3. operator/cmd/mesh/manifest-generate_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if gotAlias != gotSet {
    		t.Errorf("Flag aliases not producing same output: with --set: \n\n%s\n\nWith alias:\n\n%s\nDiff:\n\n%s\n",
    			gotSet, gotAlias, util.YAMLDiff(gotSet, gotAlias))
    	}
    }
    
    func TestMultiICPSFiles(t *testing.T) {
    	inPathBase := filepath.Join(testDataDir, "input/all_off.yaml")
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 43.5K bytes
    - Viewed (0)
Back to top