Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 394 for xds (0.02 sec)

  1. releasenotes/notes/38088.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 38082
    releaseNotes:
      - |
        **Fixed** xDS may not be updated when there are multiple destinationRules for a service are merged.
        In this case the merged rule does only record one name/namespace pair of all the destinationRules.
        however this meta is used to record config dependencies of a sidecar.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 01 01:12:29 UTC 2022
    - 556 bytes
    - Viewed (0)
  2. samples/ambient-argo/tag-chart/templates/shimservice.yaml

        operator.istio.io/component: "Pilot"
        app: istiod
        istio: pilot
        release: {{ .Release.Name }}
      name: istiod
      namespace: istio-system
    spec:
      ports:
        - name: grpc-xds
          port: 15010
          protocol: TCP
        - name: https-dns
          port: 15012
          protocol: TCP
        - name: https-webhook
          port: 443
          protocol: TCP
          targetPort: 15017
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 712 bytes
    - Viewed (0)
  3. istioctl/pkg/internaldebug/internal-debug_test.go

    	cmdutil "k8s.io/kubectl/pkg/cmd/util"
    
    	"istio.io/api/label"
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/istioctl/pkg/clioptions"
    	"istio.io/istio/istioctl/pkg/multixds"
    	"istio.io/istio/istioctl/pkg/xds"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    type execTestCase struct {
    	args     []string
    	revision string
    	noIstiod bool
    
    	// Typically use one of the three
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. pkg/adsc/adsc.go

    	JWTPath string
    
    	// XDSSAN is the expected SAN of the XDS server. If not set, the ProxyConfig.DiscoveryAddress is used.
    	XDSSAN string
    
    	// XDSRootCAFile explicitly set the root CA to be used for the XDS connection.
    	// Mirrors Envoy file.
    	XDSRootCAFile string
    
    	// RootCert contains the XDS root certificate. Used mainly for tests, apps will normally use
    	// XDSRootCAFile
    	RootCert []byte
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  5. releasenotes/notes/pilot-discovery-scoped-namespaces.yaml

    # release notes.
    releaseNotes:
    - |
      **Added** Specify `meshConfig.discoverySelectors` to dynamically restrict the set of namespaces for Services, Pods, and Endpoints that istiod processes when pushing xDS updates to improve performance on the data plane.
    
    # upgradeNotes is a markdown listing of any changes that will affect the upgrade
    # process. This will appear in the release notes.
    upgradeNotes:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 09 19:34:37 UTC 2021
    - 904 bytes
    - Viewed (0)
  6. pkg/adsc/adsc_test.go

    				return
    			}
    			tt.inAdsc.cfg.Address = l.Addr().String()
    			xds := grpc.NewServer()
    			discovery.RegisterAggregatedDiscoveryServiceServer(xds, new(testAdscRunServer))
    			go func() {
    				err = xds.Serve(l)
    				if err != nil {
    					log.Println(err)
    				}
    			}()
    			defer xds.GracefulStop()
    			if err != nil {
    				t.Errorf("Could not start serving ads server %v", err)
    				return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/templates/service.yaml

        operator.istio.io/component: "Pilot"
        app: istiod
        istio: pilot
        release: {{ .Release.Name }}
    spec:
      ports:
        - port: 15010
          name: grpc-xds # plaintext
          protocol: TCP
        - port: 15012
          name: https-dns # mTLS with k8s-signed cert
          protocol: TCP
        - port: 443
          name: https-webhook # validation and injection
          targetPort: 15017
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/gateway/secret.go

    package gateway
    
    import (
    	"fmt"
    
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/labels"
    
    	"istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/credentials/kube"
    	"istio.io/istio/pilot/pkg/xds"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/analysis"
    	"istio.io/istio/pkg/config/analysis/analyzers/util"
    	"istio.io/istio/pkg/config/analysis/msg"
    	"istio.io/istio/pkg/config/resource"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 18:29:24 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. pilot/pkg/xds/leak_test.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package xds
    
    import (
    	"testing"
    
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestMain(m *testing.M) {
    	// CheckMain asserts that no goroutines are leaked after a test package exits.
    	leak.CheckMain(m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 14 19:26:09 UTC 2021
    - 788 bytes
    - Viewed (0)
  10. samples/httpbin/sample-client/fortio-deploy.yaml

              proxyStatsMatcher:
                inclusionPrefixes:
                - "cluster.outbound"
                - "cluster_manager"
                - "listener_manager"
                - "server"
                - "cluster.xds-grpc"
          labels:
            app: fortio
        spec:
          containers:
          - name: fortio
            image: fortio/fortio:latest_release
            imagePullPolicy: Always
            ports:
            - containerPort: 8080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 10 02:32:01 UTC 2021
    - 1.1K bytes
    - Viewed (0)
Back to top