Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 98 for Lesh (0.17 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    will be written referencing one mesh from the other # # If an administrator expects that any of these conditions may become true in # the future, they should ensure their meshes have different Mesh IDs # assigned. # # Within a multicluster mesh, each cluster must be (manually or auto) # configured to have the same Mesh ID value. If an existing cluster 'joins' a # multicluster mesh, it will need to be migrated to the new mesh ID. Details # of migration TBD, and it may be a disruptive operation to change...
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 05:10:03 GMT 2024
    - 198.1K bytes
    - Viewed (1)
  2. manifests/charts/README.md

    stable version in place and gradually migrate apps to the new version.
    
    - More flexibility: the new installer allows multiple 'environments', allowing applications to select
    a set of control plane settings and components. While the entire mesh respects the same APIs and config,
    apps may target different 'environments' which contain different instances and variants of Istio.
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Feb 07 17:53:24 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  3. operator/cmd/mesh/root.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 (
    	"flag"
    
    	"github.com/spf13/cobra"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	binversion "istio.io/istio/operator/version"
    	"istio.io/istio/pkg/url"
    	"istio.io/istio/pkg/version"
    )
    
    var (
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 01:18:49 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/templates/role.yaml

    - apiGroups: ["networking.istio.io"]
      verbs: ["create"]
      resources: ["gateways"]
    
    # For storing CA secret
    - apiGroups: [""]
      resources: ["secrets"]
      # TODO lock this down to istio-ca-cert if not using the DNS cert mesh config
      verbs: ["create", "get", "watch", "list", "update", "delete"]
    
    # For status controller, so it can delete the distribution report configmap
    - apiGroups: [""]
      resources: ["configmaps"]
      verbs: ["delete"]
    
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu May 04 16:21:31 GMT 2023
    - 1021 bytes
    - Viewed (0)
  5. manifests/profiles/remote.yaml

    # The remote profile is used to configure a mesh cluster without a locally deployed control plane.
    # Only the injector mutating webhook configuration is installed.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        base:
          enabled: false
        pilot:
          enabled: false
        ingressGateways:
        - name: istio-ingressgateway
          enabled: false
        istiodRemote:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Jan 18 16:33:33 GMT 2024
    - 418 bytes
    - Viewed (0)
  6. istioctl/pkg/workload/testdata/vmconfig-nil-proxy-metadata/cluster.env.golden

    ISTIO_LOCAL_EXCLUDE_PORTS='22,15090,15021,15020'
    ISTIO_METAJSON_LABELS='{"service.istio.io/canonical-name":"foo","service.istio.io/canonical-revision":"latest"}'
    ISTIO_META_CLUSTER_ID='Kubernetes'
    ISTIO_META_DNS_CAPTURE='true'
    ISTIO_META_MESH_ID=''
    ISTIO_META_NETWORK=''
    ISTIO_META_WORKLOAD_NAME='foo'
    ISTIO_NAMESPACE='bar'
    ISTIO_SERVICE='foo.bar'
    ISTIO_SERVICE_CIDR='*'
    ISTIO_SVC_IP='10.10.10.10'
    POD_NAMESPACE='bar'
    SERVICE_ACCOUNT='vm-serviceaccount'
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 546 bytes
    - Viewed (0)
  7. manifests/charts/istio-control/istio-discovery/files/grpc-agent.yaml

        {{- end}}
        {{- if .Values.global.meshID }}
        - name: ISTIO_META_MESH_ID
          value: "{{ .Values.global.meshID }}"
        {{- else if (valueOrDefault .MeshConfig.TrustDomain .Values.global.trustDomain) }}
        - name: ISTIO_META_MESH_ID
          value: "{{ (valueOrDefault .MeshConfig.TrustDomain .Values.global.trustDomain) }}"
        {{- end }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 12.1K bytes
    - Viewed (0)
  8. manifests/charts/base/crds/crd-all.gen.yaml

                  location:
                    description: |-
                      Specify whether the service should be considered external to the mesh or part of the mesh.
    
                      Valid Options: MESH_EXTERNAL, MESH_INTERNAL
                    enum:
                    - MESH_EXTERNAL
                    - MESH_INTERNAL
                    type: string
                  ports:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:47 GMT 2024
    - 606.1K bytes
    - Viewed (0)
  9. istioctl/pkg/analyze/analyze.go

    					k := kube.EnableCrdWatcher(c.client)
    					sa.AddRunningKubeSourceWithRevision(k, revisionSpecified, c.remote)
    				}
    			}
    
    			// If we explicitly specify mesh config, use it.
    			// This takes precedence over default mesh config or mesh config from a running Kube instance.
    			if meshCfgFile != "" {
    				_ = sa.AddFileKubeMeshConfig(meshCfgFile)
    			}
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 02 08:32:06 GMT 2024
    - 17K bytes
    - Viewed (0)
  10. istioctl/pkg/authz/analyzer.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    // The auth package provides support for checking the authentication and authorization policy applied
    // in the mesh. It aims to increase the debuggability and observability of auth policies.
    // Note: this is still under active development and is not ready for real use.
    package authz
    
    import (
    	"fmt"
    	"io"
    
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jul 13 01:59:17 GMT 2022
    - 2.1K bytes
    - Viewed (0)
Back to top