Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for credscontroller (0.21 sec)

  1. pilot/pkg/xds/sds.go

    	}, nil
    }
    
    func (s *SecretGen) generate(sr SecretResource, configClusterSecrets, proxyClusterSecrets credscontroller.Controller, proxy *model.Proxy) *discovery.Resource {
    	// Fetch the appropriate cluster's secret, based on the credential type
    	var secretController credscontroller.Controller
    	switch sr.ResourceType {
    	case credentials.KubernetesGatewaySecretType:
    		secretController = configClusterSecrets
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. pilot/pkg/xds/ecds.go

    // limitations under the License.
    
    package xds
    
    import (
    	"fmt"
    	"strings"
    
    	discovery "github.com/envoyproxy/go-control-plane/envoy/service/discovery/v3"
    
    	credscontroller "istio.io/istio/pilot/pkg/credentials"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/model/credentials"
    	"istio.io/istio/pilot/pkg/networking/core"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/controller.go

    			if !labels.Instance(oldNs.Labels).Equals(newNs.Labels) {
    				gatewayController.namespaceEvent(oldNs, newNs)
    			}
    		},
    	})
    
    	if credsController != nil {
    		credsController.AddSecretHandler(gatewayController.secretEvent)
    	}
    
    	return gatewayController
    }
    
    func (c *Controller) Schemas() collection.Schemas {
    	return collection.SchemasFor(
    		collections.VirtualService,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top