Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 366 for deploymentID (0.17 sec)

  1. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    		{"Values.grafana.enabled", "the samples/addons/ deployments", false},
    		{"Values.tracing.enabled", "the samples/addons/ deployments", false},
    		{"Values.kiali.enabled", "the samples/addons/ deployments", false},
    		{"Values.prometheus.enabled", "the samples/addons/ deployments", false},
    		{"AddonComponents.grafana.Enabled", "the samples/addons/ deployments", false},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. istioctl/pkg/validate/validate_test.go

      name: productpage
    unexpected_junk:
       still_more_junk:
    spec:
      host: productpage`
    	versionLabelMissingDeployment = `
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello
    spec:`
    	skippedDeployment = `
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: hello
      namespace: istio-system
    spec: ~`
    	invalidIstioConfig = `
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 08:08:36 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  3. docs/de/docs/deployment/https.md

    <img src="/img/deployment/https/https01.svg">
    
    ### TLS-Handshake-Start
    
    Der Browser kommuniziert dann mit dieser IP-Adresse über **Port 443** (den HTTPS-Port).
    
    Der erste Teil der Kommunikation besteht lediglich darin, die Verbindung zwischen dem Client und dem Server herzustellen und die zu verwendenden kryptografischen Schlüssel usw. zu vereinbaren.
    
    <img src="/img/deployment/https/https02.svg">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:46 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/authz.go

    //
    // Examples:
    //
    //	authorizer.group('apps').resource('deployments').namespace('test').name('backend') // returns a ResourceCheck for the 'backend' 'deployments' resource in the 'test' namespace
    //	authorizer.group('apps').resource('deployments').namespace('test').name('') // returns a ResourceCheck for the 'deployments' resource in the 'test' namespace
    //
    // check
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  5. pkg/kube/inject/inject_test.go

    	// Generate the patch.  At runtime, the webhook would actually generate the patch against the
    	// pod configuration. But since our input files are deployments, rather than actual pod instances,
    	// we have to apply the patch to the template portion of the deployment only.
    	templateJSON := convertToJSON(inputPod, t)
    	got := webhook.inject(&kube.AdmissionReview{
    		Request: &kube.AdmissionRequest{
    			Object: runtime.RawExtension{
    				Raw: templateJSON,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. tests/integration/security/reachability_test.go

    			// if dual stack is enabled, a dual stack echo config should be added
    			if !t.Settings().EnableDualStack {
    				// Create a custom echo deployment in NS1 with subsets that allows us to test the
    				// migration of a workload to istio (from no sidecar to sidecar).
    				migrationApp = deployment.New(t).
    					WithClusters(t.Clusters()...).WithConfig(echo.Config{
    					Namespace:      echo1NS,
    					Service:        migrationServiceName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. 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)
  8. operator/pkg/object/objects_test.go

    		namespace string
    		name      string
    		want      string
    	}{
    		{"CalculateHashForObjectWithNormalCharacter", "Service", "default", "ingressgateway", "Service:default:ingressgateway"},
    		{"CalculateHashForObjectWithDash", "Deployment", "istio-system", "istio-pilot", "Deployment:istio-system:istio-pilot"},
    		{"CalculateHashForObjectWithDot", "ConfigMap", "istio-system", "my.config", "ConfigMap:istio-system:my.config"},
    	}
    
    	for _, tt := range hashTests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/api/apps/v1beta1/zz_generated.deepcopy.go

    func (in *Deployment) DeepCopyInto(out *Deployment) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	in.Spec.DeepCopyInto(&out.Spec)
    	in.Status.DeepCopyInto(&out.Status)
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Deployment.
    func (in *Deployment) DeepCopy() *Deployment {
    	if in == nil {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:00 UTC 2022
    - 18.5K bytes
    - Viewed (0)
Back to top