Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 186 for Next (0.15 sec)

  1. manifests/charts/gateway/templates/NOTES.txt

    "{{ include "gateway.name" . }}" successfully installed!
    
    To learn more about the release, try:
      $ helm status {{ .Release.Name }} -n {{ .Release.Namespace }}
      $ helm get all {{ .Release.Name }} -n {{ .Release.Namespace }}
    
    Next steps:
      * Deploy an HTTP Gateway: https://istio.io/latest/docs/tasks/traffic-management/ingress/ingress-control/
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Apr 17 02:27:41 GMT 2024
    - 452 bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/NOTES.txt

    "istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}" successfully installed!
    
    To learn more about the release, try:
      $ helm status {{ .Release.Name }}
      $ helm get all {{ .Release.Name }}
    
    Next steps:
      * Deploy a Gateway: https://istio.io/latest/docs/setup/additional-setup/gateway/
      * Try out our tasks to get started on common configurations:
        * https://istio.io/latest/docs/tasks/traffic-management
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Dec 13 03:23:36 GMT 2023
    - 4K bytes
    - Viewed (0)
  3. RELEASE_BRANCHES.md

            * How many users are affected by this change?
    
    ## Feature implementation
    
    Release managers will continue to have a final say in what gets merged or not, unless directed by the TOC. See the next
    section if the implementation is done, but a bug is being addressed.
    
    * Any code that changes feature functionality must be done within 2 weeks of the release branch cutting. Even then it is
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Nov 12 23:27:43 GMT 2021
    - 3.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/batch/v1beta1/generated.proto

      // Specifies how to treat concurrent executions of a Job.
      // Valid values are:
      //
      // - "Allow" (default): allows CronJobs to run concurrently;
      // - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet;
      // - "Replace": cancels currently running job and replaces it with a new one
      // +optional
      optional string concurrencyPolicy = 3;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 5.7K bytes
    - Viewed (0)
  5. architecture/environments/operator.md

    and the Helm values (Istio behavior configuration).
    
    1. The fields defined in the user CR override any values defined in the configuration profile CR.  The
    resulting CR is converted to Helm values.yaml format and passed to the next step.
    1. Part of the configuration profile contains settings in the Helm values.yaml schema format. User overrides of
    these fields are applied and merged with the output of this step. The result of this step is a merge of configuration
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Aug 09 22:09:18 GMT 2023
    - 13.4K bytes
    - Viewed (0)
  6. operator/cmd/mesh/manifest-generate_test.go

    	if err != nil {
    		return fmt.Errorf("create gzip reader: %v", err)
    	}
    
    	tarReader := tar.NewReader(uncompressedStream)
    
    	for {
    		header, err := tarReader.Next()
    		if err == io.EOF {
    			break
    		}
    		if err != nil {
    			return fmt.Errorf("next: %v", err)
    		}
    
    		dest := filepath.Join(destination, header.Name)
    		switch header.Typeflag {
    		case tar.TypeDir:
    			if _, err := os.Stat(dest); err != nil {
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Feb 22 08:32:23 GMT 2024
    - 42K bytes
    - Viewed (0)
  7. architecture/ambient/ztunnel.md

    As discussed in [HBONE](#hbone), this is based on the destination IP.
    Additionally, we enforce the peer has a valid mesh identity (but do not assert _which_ identity, yet).
    
    Next, we terminate the CONNECT.
    From the [headers](#headers), we know the target destination.
    If the target destination has a waypoint, we enforce that the request is coming from that waypoint. Otherwise, the request is rejected.
    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)
  8. common-protos/k8s.io/api/batch/v1/generated.proto

      // Specifies how to treat concurrent executions of a Job.
      // Valid values are:
      //
      // - "Allow" (default): allows CronJobs to run concurrently;
      // - "Forbid": forbids concurrent runs, skipping next run if previous run hasn't finished yet;
      // - "Replace": cancels currently running job and replaces it with a new one
      // +optional
      optional string concurrencyPolicy = 3;
    
    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)
  9. common/scripts/kind_provisioner.sh

    }
    
    function cidr_to_ips() {
        CIDR="$1"
        # cidr_to_ips returns a list of single IPs from a CIDR. We skip 1000 (since they are likely to be allocated
        # already to other services), then pick the next 100.
        python3 - <<EOF
    from ipaddress import ip_network, IPv6Network;
    from itertools import islice;
    
    net = ip_network('$CIDR')
    net_bits = 128 if type(net) == IPv6Network else 32;
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 08 19:12:55 GMT 2024
    - 17.3K bytes
    - Viewed (1)
  10. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                                          type: string
                                        subFilter:
                                          description: The next level filter within this
                                            filter to match upon.
                                          properties:
                                            name:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Mar 15 18:46:49 GMT 2024
    - 570.3K bytes
    - Viewed (0)
Back to top