Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for galley_ (0.14 sec)

  1. tests/integration/telemetry/api/dashboard_test.go

    		},
    		// Pilot is installed only on Primary cluster, hence validate for primary clusters only.
    		true,
    	},
    	{
    		"istio-services-grafana-dashboards",
    		"istio-mesh-dashboard.json",
    		[]string{
    			"galley_",
    			"istio_tcp_",
    			"max(pilot_k8s_cfg_events{",
    		},
    		false,
    	},
    	{
    		"istio-services-grafana-dashboards",
    		"istio-service-dashboard.json",
    		[]string{
    			"istio_tcp_",
    		},
    		false,
    	},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. tests/integration/README.md

    For example, the following code creates and then interacts with a Galley and Pilot component:
    
    ```go
    func TestMyLogic(t *testing.T) {
        framework.
            NewTest(t).
            Run(func(ctx framework.TestContext) {
                // Create the components.
                g := galley.NewOrFail(ctx, ctx, galley.Config{})
                p := pilot.NewOrFail(ctx, ctx, pilot.Config {})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/server.go

    	}
    	caOpts.Authenticators = authenticators
    
    	// Start CA or RA server. This should be called after CA and Istiod certs have been created.
    	s.startCA(caOpts)
    
    	// TODO: don't run this if galley is started, one ctlz is enough
    	if args.CtrlZOptions != nil {
    		_, _ = ctrlz.Run(args.CtrlZOptions, nil)
    	}
    
    	// This must be last, otherwise we will not know which informers to register
    	if s.kubeClient != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.BoolValue configMap = 18;
    
      // Controls whether Pilot is configured through the Mesh Control Protocol (MCP).
      //
      // If set to true, Pilot requires an MCP server (like Galley) to be installed.
      google.protobuf.BoolValue useMCP = 20;
    
      // Environment variables passed to the Pilot container.
      //
      // Examples:
      // env:
      //   ENV_VAR_1: value1
      //   ENV_VAR_2: value2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  5. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// Controls whether Pilot is configured through the Mesh Control Protocol (MCP).
    	//
    	// If set to true, Pilot requires an MCP server (like Galley) to be installed.
    	UseMCP *wrapperspb.BoolValue `protobuf:"bytes,20,opt,name=useMCP,proto3" json:"useMCP,omitempty"`
    	// Environment variables passed to the Pilot container.
    	//
    	// Examples:
    	// env:
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top