Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for role (0.04 sec)

  1. pilot/cmd/pilot-agent/app/cmd.go

    	// K8S
    	proxyArgs.DNSDomain = getDNSDomain(proxyArgs.PodNamespace, proxyArgs.DNSDomain)
    	log.WithLabels("ips", proxyArgs.IPAddresses, "type", proxyArgs.Type, "id", proxyArgs.ID, "domain", proxyArgs.DNSDomain).Info("Proxy role")
    
    	return nil
    }
    
    func getExcludeInterfaces() sets.String {
    	excludeAddrs := sets.New[string]()
    
    	// Get list of excluded interfaces from pod annotation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/values.yaml

      experimental:
        stableValidationPolicy: false
    
      global:
        # Used to locate istiod.
        istioNamespace: istio-system
        # List of cert-signers to allow "approve" action in the istio cluster role
        #
        # certSigners:
        #   - clusterissuers.cert-manager.io/istio-ca
        certSigners: []
        # enable pod disruption budget for the control plane, which is used to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. architecture/networking/pilot.md

    Istiod is structured as a modular monolith, housing a wide range of functionality from certificate signing, proxy configuration (XDS), traditional Kubernetes controllers, and more.
    
    ## Proxy Configuration
    
    Istiod's primary role - and most code - is to dynamically configure proxies (Envoy sidecars and ingress, gRPC, ztunnel, and more). This roughly consists of 3 parts:
    1. Config ingestion (inputs to the system)
    1. Config translation
    1. Config serving (XDS)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. common/scripts/kind_provisioner.sh

        return 9
      fi
      # Workaround kind issue causing taints to not be removed in 1.24
      kubectl taint nodes "${NAME}"-control-plane node-role.kubernetes.io/control-plane- 2>/dev/null || true
    
      # Determine what CNI to install
      case "${KUBERNETES_CNI:-}" in 
    
        "calico")
          echo "Installing Calico CNI"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-out.yaml

    name: envoy.filters.http.rbac
    typedConfig:
      '@type': type.googleapis.com/envoy.extensions.filters.http.rbac.v3.RBAC
      rules:
        policies:
          ns[foo]-policy[httpbin-1]-rule[0]:
            permissions:
            - andRules:
                rules:
                - orRules:
                    rules:
                    - header:
                        name: :authority
                        stringMatch:
                          exact: exact.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/values.yaml

      experimental:
        stableValidationPolicy: false
      global:
        # Used to locate istiod.
        istioNamespace: istio-system
        # List of cert-signers to allow "approve" action in the istio cluster role
        #
        # certSigners:
        #   - clusterissuers.cert-manager.io/istio-ca
        certSigners: []
        # enable pod disruption budget for the control plane, which is used to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. istioctl/pkg/multicluster/remote_secret.go

    	}
    
    	values := fmt.Sprintf(`
    global:
      istioNamespace: %s
    `, opt.Namespace)
    
    	// Render the templates required for the service account and role bindings.
    	baseContent, err := baseRenderer.RenderManifestFiltered(values, func(template string) bool {
    		for _, t := range baseTemplates {
    			if strings.Contains(template, t) {
    				return true
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 01:43:17 UTC 2023
    - 24K bytes
    - Viewed (0)
  8. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-out.yaml

    name: envoy.filters.http.rbac
    typedConfig:
      '@type': type.googleapis.com/envoy.extensions.filters.http.rbac.v3.RBAC
      rules:
        policies:
          ns[foo]-policy[httpbin-1]-rule[0]:
            permissions:
            - andRules:
                rules:
                - orRules:
                    rules:
                    - header:
                        name: :authority
                        stringMatch:
                          exact: exact.com
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/accesslog_test.go

    							if err := filter.GetTypedConfig().UnmarshalTo(tcpConfig); err != nil {
    								t.Fatal(err)
    							}
    							if tcpConfig.GetCluster() == util.BlackHoleCluster {
    								// Ignore the tcp_proxy filter with black hole cluster that just doesn't have access log.
    								continue
    							}
    							if len(tcpConfig.AccessLog) < 1 {
    								t.Fatalf("tcp_proxy want at least 1 access log, got 0")
    							}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top