Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 733 for deploymentID (0.19 sec)

  1. samples/helloworld/README.md

    containers in `helloworld.yaml` are configured with the request.
    The injected istio-proxy containers also include cpu requests,
    making the helloworld service ready for autoscaling.
    
    Enable autoscaling on both versions of the service:
    
    ```bash
    kubectl autoscale deployment helloworld-v1 --cpu-percent=50 --min=1 --max=10
    kubectl autoscale deployment helloworld-v2 --cpu-percent=50 --min=1 --max=10
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. samples/bookinfo/platform/kube/bookinfo.yaml

    ##################################################################################################
    # This file defines the services, service accounts, and deployments for the Bookinfo sample.
    #
    # To apply all 4 Bookinfo services, their corresponding service accounts, and deployments:
    #
    #   kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml
    #
    # Alternatively, you can deploy any resource separately:
    #
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/injection/image-auto.go

    	return analysis.Metadata{
    		Name:        "injection.ImageAutoAnalyzer",
    		Description: "Makes sure that Pods and Deployments with `image: auto` are going to be injected",
    		Inputs: []config.GroupVersionKind{
    			gvk.Namespace,
    			gvk.Pod,
    			gvk.Deployment,
    			gvk.MutatingWebhookConfiguration,
    		},
    	}
    }
    
    // Analyze implements Analyzer.
    func (a *ImageAutoAnalyzer) Analyze(c analysis.Context) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. samples/addons/README.md

    # Telemetry Addons
    
    This directory contains sample deployments of various addons that integrate with Istio. While these applications
    are not a part of Istio, they are essential to making the most of Istio's observability features.
    
    The deployments here are meant to quickly get up and running, and are optimized for this case. As a result,
    they may not be suitable for production. See below for more info on integrating a production grade version of each
    addon.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. tools/bug-report/pkg/filter/filter_test.go

    			config: `
    include:
      - bad*`,
    			want: nil,
    		},
    		{
    			name: "glob deployments",
    			config: `
    include:
      - ns1/d*`,
    			want: ns1,
    		},
    		{
    			name: "glob deployments no match",
    			config: `
    include:
      - ns1/bad*`,
    			want: nil,
    		},
    		{
    			name: "glob deployments some",
    			config: `
    include:
      - ns1/d1*`,
    			want: d1,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. releasenotes/notes/gateway-infra-gep.yaml

    area: traffic-management
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
    - |
      **Added** support for [In-Cluster Gateway Deployments](https://gateway-api.sigs.k8s.io/geps/gep-1762/).
      Deployment also now has both `istio.io/gateway-name` and `gateway.networking.k8s.io/gateway-name` labels
      just like the Pods and Services.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/deploymentcontroller.go

    func (o *DeploymentControllerOptions) AddFlags(fs *pflag.FlagSet) {
    	if o == nil {
    		return
    	}
    
    	fs.Int32Var(&o.ConcurrentDeploymentSyncs, "concurrent-deployment-syncs", o.ConcurrentDeploymentSyncs, "The number of deployment objects that are allowed to sync concurrently. Larger number = more responsive deployments, but more CPU (and network) load")
    }
    
    // ApplyTo fills up DeploymentController config with options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 30 12:00:53 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  8. samples/bookinfo/platform/kube/bookinfo-dualstack.yaml

    ##################################################################################################
    # This file defines the services, service accounts, and deployments for the Bookinfo sample.
    #
    # To apply all 4 Bookinfo services, their corresponding service accounts, and deployments:
    #
    #   kubectl apply -f samples/bookinfo/platform/kube/bookinfo.yaml
    #
    # Alternatively, you can deploy any resource separately:
    #
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/config/config.go

    	for _, ss := range s {
    		st := ""
    		if !defaultListSetting(ss.Namespaces) {
    			st += fmt.Sprintf("Namespaces: %s", strings.Join(ss.Namespaces, ","))
    		}
    		if !defaultListSetting(ss.Deployments) {
    			st += fmt.Sprintf("/Deployments: %s", strings.Join(ss.Deployments, ","))
    		}
    		if !defaultListSetting(ss.Pods) {
    			st += fmt.Sprintf("/Pods:%s", strings.Join(ss.Pods, ","))
    		}
    		if !defaultListSetting(ss.Containers) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 12:07:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. istioctl/pkg/util/handlers/handlers_test.go

    			switch p, m := req.URL.Path, req.Method; {
    			case p == "/namespaces/istio-system/deployments/foo" && m == "GET":
    				body := cmdtesting.ObjBody(codec, attachDeploy("istio-system"))
    				return &http.Response{StatusCode: http.StatusOK, Header: cmdtesting.DefaultHeader(), Body: body}, nil
    			case p == "/namespaces/test/deployments/foo" && m == "GET":
    				body := cmdtesting.ObjBody(codec, attachDeploy("test"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 18:17:49 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top