Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 412 for deploymentID (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. cmd/kube-controller-manager/app/apps.go

    		name:     names.DeploymentController,
    		aliases:  []string{"deployment"},
    		initFunc: startDeploymentController,
    	}
    }
    
    func startDeploymentController(ctx context.Context, controllerContext ControllerContext, controllerName string) (controller.Interface, bool, error) {
    	dc, err := deployment.NewDeploymentController(
    		ctx,
    		controllerContext.InformerFactory.Apps().V1().Deployments(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/admission/v1/generated.proto

      //
      // For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
      // `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
      // an API request to apps/v1beta1 deployments would be converted and sent to the webhook
      // with `resource: {group:"apps", version:"v1", resource:"deployments"}` (matching the resource the webhook registered for),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/admission/v1beta1/generated.proto

      //
      // For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
      // `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
      // an API request to apps/v1beta1 deployments would be converted and sent to the webhook
      // with `resource: {group:"apps", version:"v1", resource:"deployments"}` (matching the resource the webhook registered for),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. tests/integration/ambient/cnirepair/main_test.go

    	"istio.io/istio/tests/integration/security/util/cert"
    )
    
    var (
    	i istio.Instance
    
    	// Below are various preconfigured echo deployments. Whenever possible, tests should utilize these
    	// to avoid excessive creation/tear down of deployments. In general, a test should only deploy echo if
    	// its doing something unique to that specific test.
    	apps = &EchoDeployments{}
    )
    
    type EchoDeployments struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 09 09:12:45 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/openapi/enablement_test.go

    							Default:     "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admission/v1/generated.proto

      //
      // For example, if deployments can be modified via apps/v1 and apps/v1beta1, and a webhook registered a rule of
      // `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]` and `matchPolicy: Equivalent`,
      // an API request to apps/v1beta1 deployments would be converted and sent to the webhook
      // with `resource: {group:"apps", version:"v1", resource:"deployments"}` (matching the resource the webhook registered for),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top