Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Waypoint (0.15 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		s.svcXdsName("waypoint-sa2"),
    	)
    	s.assertAddresses(t, "", "pod1", "pod2", "pod3", "pod4", "waypoint-ns", "waypoint-ns-pod", "waypoint-sa2-pod", "waypoint-sa2")
    
    	// We should now see the waypoint service IP
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.3"))[0].Address.GetWorkload().Waypoint.GetAddress().Address,
    		netip.MustParseAddr("10.0.0.2").AsSlice())
    
    	assert.Equal(t,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  2. tests/integration/ambient/baseline_test.go

    			"waypoint",
    			"apply",
    			"--namespace",
    			apps.Namespace.Name(),
    			"--name", "captured-waypoint",
    			"--wait",
    		})
    		t.Cleanup(func() {
    			istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    				"waypoint",
    				"delete",
    				"--namespace",
    				apps.Namespace.Name(),
    				"captured-waypoint",
    			})
    		})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  3. istioctl/pkg/proxyconfig/testdata/config_dump.json

    {
      "configs": [
        {
          "@type": "type.googleapis.com/envoy.admin.v3.BootstrapConfigDump",
          "bootstrap": {
            "node": {
              "id": "waypoint~192.168.252.229~httpbin-istio-waypoint-58f646c5ff-dbfkz.default~default.svc.cluster.local",
              "metadata": {
                "ISTIO_PROXY_SHA": "ee85c5f28702f00621aed895915fca565796b9e4",
                "ISTIO_VERSION": "1.21.0-1226",
                "metadata": {
                  "build.type": "RELEASE",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  4. pkg/workloadapi/workload.pb.go

    	// Waypoint is the waypoint proxy for this service. When set, all incoming requests must go
    	// through the waypoint.
    	Waypoint *GatewayAddress `protobuf:"bytes,7,opt,name=waypoint,proto3" json:"waypoint,omitempty"`
    	// Load balancing policy for selecting endpoints.
    	// Note: this applies only to connecting directly to the workload; when waypoints are used, the waypoint's load_balancing
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/compare/testdata/configdump.json

                                },
                                {
                                  "tag": "istio.canonical_service",
                                  "literal": {
                                    "value": "namespace-istio-waypoint"
                                  }
                                },
                                {
                                  "tag": "istio.cluster_id",
                                  "literal": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    	http3Only bool
    
    	class istionetworking.ListenerClass
    	port  int
    	hbone bool
    
    	// Waypoint-specific modifications in HCM
    	isWaypoint bool
    
    	// allow service attached policy for to-service chains
    	// currently only used for waypoints
    	policySvc *model.Service
    }
    
    // filterChainOpts describes a filter chain: a set of filters with the same TLS context
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    // Used when calculating the workloads which should be configured for a specific waypoint proxy
    func (ps *PushContext) WorkloadsForWaypoint(key WaypointKey) []WorkloadInfo {
    	return ps.ambientIndex.WorkloadsForWaypoint(key)
    }
    
    // ServicesForWaypoint returns all services associated with a given waypoint identified by it's WaypointKey
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                },
                                {
                                  "tag": "istio.canonical_service",
                                  "literal": {
                                    "value": "namespace-istio-waypoint"
                                  }
                                },
                                {
                                  "tag": "istio.cluster_id",
                                  "literal": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/output/sidecar_template.golden.yaml

              imagePullSecrets:
                {{- range .Values.global.imagePullSecrets }}
                - name: {{ . }}
                {{- end }}
              {{- end }}
          waypoint: |
            apiVersion: v1
            kind: ServiceAccount
            metadata:
              name: {{.ServiceAccount | quote}}
              namespace: {{.Namespace | quote}}
              annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 86.9K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/hello.yaml.4.template.gen.yaml

          {{- if .Values.global.imagePullSecrets }}
          imagePullSecrets:
            {{- range .Values.global.imagePullSecrets }}
            - name: {{ . }}
            {{- end }}
          {{- end }}
      waypoint: |
        apiVersion: v1
        kind: ServiceAccount
        metadata:
          name: {{.ServiceAccount | quote}}
          namespace: {{.Namespace | quote}}
          annotations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top