Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 308 for once (0.16 sec)

  1. manifests/charts/UPDATING-CHARTS.md

    ## Step 3. Update istioctl schema
    
    Istioctl uses a [schema](../../operator/pkg/apis/istio/v1alpha1/values_types.proto) to validate the values. Any changes to
    the schema must be added here, otherwise istioctl users will see errors.
    Once the schema file is updated, run:
    
    ```bash
    $ make operator-proto
    ```
    
    This will regenerate the Go structs used for schema validation.
    
    ## Step 4. Update the generated manifests
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jul 27 18:28:55 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/apps/v1beta2/generated.proto

    message DaemonSetCondition {
      // Type of DaemonSet condition.
      optional string type = 1;
    
      // Status of the condition, one of True, False, Unknown.
      optional string status = 2;
    
      // Last time the condition transitioned from one status to another.
      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.Time lastTransitionTime = 3;
    
      // The reason for the condition's last transition.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 36.4K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                          "inline_string": "%REQ(:AUTHORITY)%"
                                        }
                                      },
                                      "shared_with_upstream": "ONCE"
                                    },
                                    {
                                      "object_key": "envoy.filters.listener.original_dst.remote_ip",
                                      "format_string": {
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (0)
  4. cni/pkg/repair/repaircontroller.go

    	key := types.NamespacedName{Name: pod.Name, Namespace: pod.Namespace}
    	// We will get an event every time the pod changes. The repair is not instantaneous, though -- it will only recover
    	// once the pod restarts (in CrashLoopBackoff), which can take some time.
    	// We don't want to constantly try to apply the iptables rules, which is unneeded and will fail.
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Feb 10 00:31:55 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  5. istioctl/pkg/validate/validate.go

    }
    
    func handleNamespace(istioNamespace string) string {
    	if istioNamespace == "" {
    		istioNamespace = constants.IstioSystemNamespace
    	}
    	return istioNamespace
    }
    
    // TODO(nmittler): Remove this once Pilot migrates to galley schema.
    func convertObjectFromUnstructured(schema resource.Schema, un *unstructured.Unstructured, domain string) (*config.Config, error) {
    	data, err := fromSchemaAndJSONMap(schema, un.Object["spec"])
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Jan 22 17:58:52 GMT 2024
    - 15K bytes
    - Viewed (0)
  6. istioctl/pkg/proxyconfig/testdata/config_dump.json

                                  }
                                },
                                "shared_with_upstream": "ONCE"
                              }
                            ]
                          }
                        },
                        {
                          "name": "istio.metadata_exchange",
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 54.8K bytes
    - Viewed (1)
  7. manifests/charts/istio-control/istio-discovery/values.yaml

        # with the exception of namespaces with "istio-injection:disabled" annotation
        # Only one environment should have this enabled.
        enableNamespacesByDefault: false
    
        # Mutations that occur after the sidecar injector are not handled by default, as the Istio sidecar injector is only run
        # once. For example, an OPA sidecar injected after the Istio sidecar will not have it's liveness/readiness probes rewritten.
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/informers_test.go

    	assertPodAnnotated(t, client, pod)
    
    	// Assert expected calls actually made
    	fs.AssertExpectations(t)
    
    	// unlabelling the namespace should cause only one RemovePodFromMesh to happen
    	fs.On("RemovePodFromMesh",
    		ctx,
    		mock.Anything,
    	).Once().Return(nil)
    
    	// unlabel the namespace
    	labelsPatch := []byte(fmt.Sprintf(`{"metadata":{"labels":{"%s":null}}}`,
    		constants.DataplaneMode))
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Feb 08 01:03:24 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  9. architecture/ambient/ztunnel.md

    If all checks pass, ztunnel will open a connection to the target. This will spoof the source IP (from `Forwarded` for waypoints, or the incoming IP otherwise).
    Once the connection is established we return a 200 HTTP code, and bi-directionally copy data to/from the tunnel to the destination.
    
    ## Certificates
    
    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)
  10. operator/README.md

    ```bash
    HUB=docker.io/<your-account> TAG=latest make docker.operator
    ```
    
    This builds the controller binary and docker file, and pushes the image to the specified hub with the `latest` tag.
    Once the images are pushed, configure kubectl to point to your cluster and install the controller.
    
    Install the controller manifest:
    
    ```bash
    istioctl operator init --hub docker.io/<your-account> --tag latest
    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)
Back to top