Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for minimale (0.2 sec)

  1. manifests/profiles/minimal.yaml

    # The minimal profile will install just the core control plane
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        ingressGateways:
        - name: istio-ingressgateway
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Fri Sep 11 05:41:16 GMT 2020
    - 216 bytes
    - Viewed (0)
  2. manifests/charts/UPDATING-CHARTS.md

    However, that doesn't necessarily mean a PR to add a value will be accepted.
    The `values.yaml` API is intended to maintain a *minimal core set of configuration* that most users will use.
    For bespoke use cases, [Helm Chart Customization](https://istio.io/latest/docs/setup/additional-setup/customize-installation-helm/#advanced-helm-chart-customization) can be used
    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)
  3. manifests/charts/istio-control/istio-discovery/values.yaml

        defaultPodDisruptionBudget:
          enabled: true
          # The values aren't mutable due to a current PodDisruptionBudget limitation
          # minAvailable: 1
    
        # A minimal set of requested resources to applied to all deployments so that
        # Horizontal Pod Autoscaler will be able to function (if set).
        # Each component can overwrite these default values by adding its own resources
    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)
  4. manifests/charts/gateways/istio-egress/values.yaml

        # enable pod disruption budget for the control plane, which is used to
        # ensure Istio control plane components are gradually upgraded or recovered.
        defaultPodDisruptionBudget:
          enabled: true
    
        # A minimal set of requested resources to applied to all deployments so that
        # Horizontal Pod Autoscaler will be able to function (if set).
        # Each component can overwrite these default values by adding its own resources
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  5. manifests/charts/gateways/istio-ingress/values.yaml

        # enable pod disruption budget for the control plane, which is used to
        # ensure Istio control plane components are gradually upgraded or recovered.
        defaultPodDisruptionBudget:
          enabled: true
    
        # A minimal set of requested resources to applied to all deployments so that
        # Horizontal Pod Autoscaler will be able to function (if set).
        # Each component can overwrite these default values by adding its own resources
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Tue Feb 27 16:55:16 GMT 2024
    - 13K bytes
    - Viewed (0)
  6. operator/cmd/mesh/profile-list_test.go

    	rootCmd.SetErr(&out)
    
    	err := rootCmd.Execute()
    	if err != nil {
    		t.Fatalf("failed to execute istioctl profile command: %v", err)
    	}
    	output := out.String()
    	expectedProfiles := []string{"default", "demo", "empty", "minimal", "openshift", "preview", "remote", "external"}
    	for _, prof := range expectedProfiles {
    		g.Expect(output).To(ContainSubstring(prof))
    	}
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Tue Oct 31 14:48:28 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  7. operator/cmd/mesh/manifest-generate_test.go

    	assert.NoError(t, err)
    
    	// Install a default revision should not cause any error
    	minimal := "minimal"
    	_, err = fakeControllerReconcile(minimal, tmpCharts, &helmreconciler.Options{Force: false, SkipPrune: true})
    	assert.NoError(t, err)
    }
    
    func TestManifestGenerateIstiodRemote(t *testing.T) {
    	g := NewWithT(t)
    
    Go
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Feb 22 08:32:23 GMT 2024
    - 42K bytes
    - Viewed (0)
  8. architecture/ambient/peer-authentication.md

    ## PeerAuthentication and ztunnel
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Aug 09 22:09:18 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  9. manifests/charts/istio-cni/templates/daemonset.yaml

            - key: CriticalAddonsOnly
              operator: Exists
            - effect: NoExecute
              operator: Exists
          priorityClassName: system-node-critical
          serviceAccountName: istio-cni
          # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a "force
          # deletion": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.
          terminationGracePeriodSeconds: 5
          containers:
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  10. istioctl/pkg/workload/workload_test.go

    			args:              strings.Split("group create --name foo", " "),
    			expectedException: true,
    			expectedOutput:    "Error: expecting a workload namespace\n",
    		},
    		{
    			description:       "valid case - minimal flags, infer defaults",
    			args:              strings.Split("group create --name foo --namespace bar", " "),
    			expectedException: false,
    			expectedOutput:    defaultYAML,
    		},
    		{
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Wed Mar 27 16:59:05 GMT 2024
    - 14.6K bytes
    - Viewed (0)
Back to top