Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MCS_API_VERSION (0.67 sec)

  1. tests/integration/pilot/mcs/autoexport/autoexport_test.go

    func enableMCSAutoExport(t resource.Context, cfg *istio.Config) {
    	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)
  2. pilot/pkg/features/experimental.go

    	).Get()
    
    	MCSAPIGroup = env.Register("MCS_API_GROUP", "multicluster.x-k8s.io",
    		"The group to be used for the Kubernetes Multi-Cluster Services (MCS) API.").Get()
    
    	MCSAPIVersion = env.Register("MCS_API_VERSION", "v1alpha1",
    		"The version to be used for the Kubernetes Multi-Cluster Services (MCS) API.").Get()
    
    	EnableMCSAutoExport = env.Register(
    		"ENABLE_MCS_AUTO_EXPORT",
    		false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. tests/integration/pilot/mcs/discoverability/discoverability_test.go

    values:
      pilot:
        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,
    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