Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 315 for Mesh (0.03 sec)

  1. pilot/pkg/bootstrap/mesh.go

    				log.Warnf("Using local mesh config file %s, in cluster configs ignored", args.MeshConfigFile)
    			}
    			return
    		}
    	}
    
    	// Config file either didn't exist or failed to load.
    	if s.kubeClient == nil {
    		// Use a default mesh.
    		meshConfig := mesh.DefaultMeshConfig()
    		s.environment.Watcher = mesh.NewFixedWatcher(meshConfig)
    		log.Warnf("Using default mesh - missing file %s and no k8s client", args.MeshConfigFile)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. operator/cmd/mesh.go

    package main
    
    import (
    	"os"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/operator/cmd/mesh"
    	binversion "istio.io/istio/operator/version"
    	"istio.io/istio/pkg/version"
    )
    
    func main() {
    	version.Info.Version = binversion.OperatorVersionString
    	rootCmd := mesh.GetRootCmd(cli.NewCLIContext(nil), os.Args[1:])
    	if err := rootCmd.Execute(); err != nil {
    		os.Exit(1)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 963 bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/mesh.yaml

        kind: Service
        name: echo
      rules:
      - backendRefs:
        - name: echo
          port: 80
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      name: dual # applies to mesh and explicit gateway
      namespace: default
    spec:
      parentRefs:
      - group: ""
        kind: Service
        name: example
      - name: gateway
        namespace: istio-system
      hostnames: ["foo.example.com"]
      rules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. pkg/test/loadbalancersim/mesh/mesh.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 mesh
    
    import (
    	"fmt"
    	"time"
    
    	"istio.io/istio/pkg/test/loadbalancersim/locality"
    	"istio.io/istio/pkg/test/loadbalancersim/network"
    	"istio.io/istio/pkg/test/loadbalancersim/timer"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 27 20:55:37 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/mesh.yaml.golden

        internal.istio.io/route-semantics: gateway
      creationTimestamp: null
      name: consumer-override-0-istio-autogenerated-k8s-gateway
      namespace: default
    spec:
      gateways:
      - mesh
      hosts:
      - httpbin-apple.apple.svc.domain.suffix
      http:
      - match:
        - port: 80
        name: default.consumer-override.0
        route:
        - destination:
            host: httpbin-apple.apple.svc.domain.suffix
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 19 18:39:48 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. releasenotes/notes/mesh-expansion.yaml

    upgradeNotes:
    - title: Avoid use of mesh expansion installation flags
      content: |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  7. istioctl/pkg/workload/testdata/vmconfig/ipv4/mesh.yaml.golden

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 625 bytes
    - Viewed (0)
  8. istioctl/pkg/workload/testdata/vmconfig/ipv6/mesh.yaml.golden

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 625 bytes
    - Viewed (0)
  9. releasenotes/notes/drop-istioctl-mesh.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
    - |
      **Removed** the following experimental `istioctl` commands: `add-to-mesh`, `remove-from-mesh` and `kube-uninject`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 22 17:51:15 UTC 2023
    - 260 bytes
    - Viewed (0)
  10. istioctl/pkg/kubeinject/testdata/mesh-config.yaml

    Xiaopeng Han <******@****.***> 1686841337 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top