Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for KubeSettings (0.11 sec)

  1. tests/integration/pilot/mcs/common/common.go

    func IsMCSControllerEnabled(t resource.Context) bool {
    	return KubeSettings(t).MCSControllerEnabled
    }
    
    func KubeSettings(t resource.Context) *kube.Settings {
    	return t.Environment().(*kube.Environment).Settings()
    }
    
    func InstallMCSCRDs(t resource.Context) error {
    	params := struct {
    		Group   string
    		Version string
    	}{
    		Group:   KubeSettings(t).MCSAPIGroup,
    		Version: KubeSettings(t).MCSAPIVersion,
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 27 17:09:00 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. tests/integration/pilot/mcs/autoexport/autoexport_test.go

    	cfg.ControlPlaneValues = fmt.Sprintf(`
    values:
      pilot:
        env:
          ENABLE_MCS_AUTO_EXPORT: "true"
          MCS_API_GROUP: %s
          MCS_API_VERSION: %s`,
    		common.KubeSettings(t).MCSAPIGroup,
    		common.KubeSettings(t).MCSAPIVersion)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. tests/integration/pilot/mcs/discoverability/discoverability_test.go

        env:
          ENABLE_MCS_SERVICE_DISCOVERY: "true"
          ENABLE_MCS_HOST: "true"
          ENABLE_MCS_CLUSTER_LOCAL: "true"
          MCS_API_GROUP: %s
          MCS_API_VERSION: %s`,
    		common.KubeSettings(t).MCSAPIGroup,
    		common.KubeSettings(t).MCSAPIVersion)
    }
    
    func runForAllClusterCombinations(
    	t framework.TestContext,
    	fn func(t framework.TestContext, from echo.Instance, to echo.Target),
    ) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top