Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for react (0.18 sec)

  1. common-protos/k8s.io/api/batch/v1/generated.proto

      //   by the 'containerName' field) is not in the set of specified values.
      // Additional values are considered to be added in the future. Clients should
      // react to an unknown operator by assuming the requirement is not satisfied.
      optional string operator = 2;
    
      // Specifies the set of values. Each returned container exit code (might be
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  2. operator/README.md

    ## Interaction with controller
    
    The controller shares the same API as the operator CLI, so it's possible to install any of the above examples as a CR
    in the cluster in the istio-system namespace and the controller will react to it with the same outcome as running
    `istioctl install -f <path-to-custom-resource-file>`.
    
    ## Architecture
    
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sun Sep 17 08:27:52 GMT 2023
    - 17.5K bytes
    - Viewed (0)
  3. manifests/charts/base/templates/services.yaml

    apiVersion: v1
    kind: Service
    metadata:
      {{- if .Values.pilot.enabled }}
      # when local istiod is enabled, we can't use istiod service name to reach the remote control plane
      name: istiod{{- if .Values.revision }}-{{ .Values.revision}}{{- end }}-remote
      {{- else }}
      # when local istiod isn't enabled, we can use istiod service name to reach the remote control plane
      name: istiod{{- if .Values.revision }}-{{ .Values.revision}}{{- end }}
      {{- end }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 02 17:36:40 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/ztunnel/configdump/workload.go

    		return svc.Name
    	}
    
    	return "NA" // Shouldn't normally reach here
    }
    
    func serviceWaypointName(svc *ZtunnelService, services map[string]*ZtunnelService) string {
    	if svc.Waypoint == nil {
    		return "None"
    	}
    
    	if svc, ok := services[svc.Waypoint.Destination]; ok {
    		return svc.Name
    	}
    
    	return "NA" // Shouldn't normally reach here
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Apr 23 21:30:30 GMT 2024
    - 4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      //   - Expression accessing a property named "x-prop": {"Expression": "object.x__dash__prop > 0"}
      //   - Expression accessing a property named "redact__d": {"Expression": "object.redact__underscores__d > 0"}
      //
      // Equality on arrays with list type of 'set' or 'map' ignores element order, i.e. [1, 2] == [2, 1].
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 25.7K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    // or '#'.
    message HTTPIngressRuleValue {
      // paths is a collection of paths that map requests to backends.
      repeated HTTPIngressPath paths = 1;
    }
    
    // Ingress is a collection of rules that allow inbound connections to reach the
    // endpoints defined by a backend. An Ingress can be configured to give services
    // externally-reachable urls, load balance traffic, terminate SSL, offer name
    // based virtual hosting etc.
    message Ingress {
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 14.9K bytes
    - Viewed (0)
  7. istioctl/pkg/workload/workload.go

    		hosts = fmt.Sprintf("%s %s\n", ingressIP, IstiodHost(istioNamespace, revision))
    	} else {
    		log.Warnf("Could not auto-detect IP for %s/%s. Use --ingressIP to manually specify the Gateway address to reach istiod from the VM.",
    			IstiodHost(istioNamespace, revision), istioNamespace)
    	}
    	return os.WriteFile(filepath.Join(dir, "hosts"), []byte(hosts), filePerms)
    }
    
    func isRevisioned(revision string) bool {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Apr 17 20:06:41 GMT 2024
    - 25.5K bytes
    - Viewed (0)
  8. architecture/ambient/ztunnel.md

    If it is allowed, we will forward to the target destination.
    
    #### Hairpin
    
    In the case that the destination has a waypoint, that waypoint must have been bypassed to reach the inbound passthrough codepath.
    How we handle this is [under discussion](https://docs.google.com/document/d/1uM1c3zzoehiijh1ZpZuJ1-SzuVVupenv8r5yuCaFshs/edit#heading=h.dwbqvwmg6ud3).
    
    ### Inbound
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Sep 13 02:17:30 GMT 2023
    - 16.6K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/networking/v1/generated.proto

      // Except values will be rejected if they are outside the cidr range
      // +optional
      repeated string except = 2;
    }
    
    // Ingress is a collection of rules that allow inbound connections to reach the
    // endpoints defined by a backend. An Ingress can be configured to give services
    // externally-reachable urls, load balance traffic, terminate SSL, offer name
    // based virtual hosting etc.
    message Ingress {
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    {{- if .Values.global.remotePilotAddress }} apiVersion: v1 kind: Service metadata: {{- if .Values.pilot.enabled }} # when local istiod is enabled, we can't use istiod service name to reach the remote control plane name: istiod-remote {{- else }} # when local istiod isn't enabled, we can use istiod service name to reach the remote control plane name: istiod {{- end }} namespace: {{ .Release.Namespace }} spec: ports: - port: 15012 name: tcp-istiod protocol: TCP - port: 443 targetPort: 15017 name: tcp-webhook...
    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)
Back to top