Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 252 for deploymentID (0.17 sec)

  1. docs/de/docs/deployment/docker.md

    ## Deployment-Konzepte
    
    Lassen Sie uns noch einmal über einige der gleichen [Deployment-Konzepte](concepts.md){.internal-link target=_blank} in Bezug auf Container sprechen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:19:17 UTC 2024
    - 38.9K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/config.go

    // SubsetConfig is the config for a group of Subsets (e.g. Kubernetes deployment).
    type SubsetConfig struct {
    	// The version of the deployment.
    	Version string
    	// Annotations provides metadata hints for deployment of the instance.
    	Annotations map[string]string
    	// Labels provides metadata hints for deployment of the instance.
    	Labels map[string]string
    	// Replicas of this deployment
    	Replicas int
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. docs/zh/docs/deployment/https.md

    接下来,客户端发送一个 **HTTPS 请求**。 这其实只是一个通过 TLS 加密连接的 HTTP 请求。
    
    <img src="/img/deployment/https/https04.svg">
    
    ### 解密请求
    
    TLS 终止代理将使用协商好的加密算法**解密请求**,并将**(解密的)HTTP 请求**传输到运行应用程序的进程(例如运行 FastAPI 应用的 Uvicorn 进程)。
    
    <img src="/img/deployment/https/https05.svg">
    
    ### HTTP 响应
    
    应用程序将处理请求并向 TLS 终止代理发送**(未加密)HTTP 响应**。
    
    <img src="/img/deployment/https/https06.svg">
    
    ### HTTPS 响应
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 09 15:38:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/etcd_test.go

    			cacheSizes: []string{"deployments.apps#65536", "replicasets.extensions#-65536"},
    			expectErr:  "watch cache size cannot be negative",
    		},
    		{
    			name:       "test when parse watch cache size success",
    			cacheSizes: []string{"deployments.apps#65536", "replicasets.extensions#65536"},
    			expectWatchCacheSizes: map[schema.GroupResource]int{
    				{Group: "apps", Resource: "deployments"}:       65536,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. pkg/config/schema/gvk/resources.gen.go

    	DaemonSet                      = config.GroupVersionKind{Group: "apps", Version: "v1", Kind: "DaemonSet"}
    	Deployment                     = config.GroupVersionKind{Group: "apps", Version: "v1", Kind: "Deployment"}
    	DestinationRule                = config.GroupVersionKind{Group: "networking.istio.io", Version: "v1alpha3", Kind: "DestinationRule"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      //
      // - Exact: match a request only if it exactly matches a specified rule.
      // For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1,
      // but "rules" only included `apiGroups:["apps"], apiVersions:["v1"], resources: ["deployments"]`,
      // a request to apps/v1beta1 or extensions/v1beta1 would not be sent to the webhook.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  7. tests/integration/pilot/gateway_test.go

    			return fmt.Errorf("stale GWC generation: %+v", cond)
    		}
    		return nil
    	}
    	retry.UntilSuccessOrFail(t, check)
    
    	// Make sure we did not overwrite our deployment or service
    	dep, err := t.Clusters().Default().Kube().AppsV1().Deployments(apps.Namespace.Name()).
    		Get(context.Background(), "managed-owner-istio", metav1.GetOptions{})
    	assert.NoError(t, err)
    	assert.Equal(t, dep.Labels[constants.ManagedGatewayLabel], "")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  8. cmd/globals.go

    	// global console system to send console logs to
    	// registered listeners
    	globalConsoleSys *HTTPConsoleLoggerSys
    
    	// All unique drives for this deployment
    	globalEndpoints EndpointServerPools
    	// All unique nodes for this deployment
    	globalNodes []Node
    
    	// The name of this local node, fetched from arguments
    	globalLocalNodeName    string
    	globalLocalNodeNameHex string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. pkg/config/schema/metadata.yaml

        builtin: true
        specless: true
        proto: "k8s.io.api.admissionregistration.v1.ValidatingWebhookConfiguration"
        protoPackage: "k8s.io/api/admissionregistration/v1"
    
      - kind: "Deployment"
        plural: "deployments"
        group: "apps"
        version: "v1"
        builtin: true
        proto: "k8s.io.api.apps.v1.DeploymentSpec"
        protoPackage: "k8s.io/api/apps/v1"
    
      - kind: "Endpoints"
        plural: "endpoints"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. pkg/apis/apps/validation/validation.go

    	}
    	return allErrs
    }
    
    // ValidateDeploymentUpdate tests if an update to a Deployment is valid.
    func ValidateDeploymentUpdate(update, old *apps.Deployment, opts apivalidation.PodValidationOptions) field.ErrorList {
    	allErrs := apivalidation.ValidateObjectMetaUpdate(&update.ObjectMeta, &old.ObjectMeta, field.NewPath("metadata"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 06 22:11:20 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top