Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 62 for deploymentID (0.28 sec)

  1. pkg/printers/internalversion/printers_test.go

    			AvailableReplicas:   1,
    			UnavailableReplicas: 4,
    		},
    	}
    
    	tests := []struct {
    		deployment apps.Deployment
    		options    printers.GenerateOptions
    		expected   []metav1.TableRow
    	}{
    		// Test Deployment with no generate options.
    		{
    			deployment: testDeployment,
    			options:    printers.GenerateOptions{},
    			// Columns: Name, ReadyReplicas, UpdatedReplicas, AvailableReplicas, Age
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. cluster/gce/upgrade.sh

      local -r endtime=$(date -ud "3 minute" +%s)
      until [[ $("${KUBE_ROOT}"/cluster/kubectl.sh -n kube-system get deployment coredns -o=jsonpath='{$.metadata.resourceVersion}') -ne ${COREDNS_DEPLOY_RESOURCE_VERSION} ]] || [[ $(date -u +%s) -gt $endtime ]]; do
         sleep 1
      done
    
      if [[ $("${KUBE_ROOT}"/cluster/kubectl.sh -n kube-system get deployment coredns -o=jsonpath='{$.metadata.resourceVersion}') -ne ${COREDNS_DEPLOY_RESOURCE_VERSION} ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    * 🌐 Add German translation for `docs/de/docs/deployment/index.md`. PR [#10733](https://github.com/tiangolo/fastapi/pull/10733) by [@nilslindemann](https://github.com/nilslindemann).
    * 🌐 Add German translation for `docs/de/docs/deployment/https.md`. PR [#10737](https://github.com/tiangolo/fastapi/pull/10737) by [@nilslindemann](https://github.com/nilslindemann).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  4. pkg/test/framework/components/istio/cleanup.go

    		}
    		return errG.Wait().ErrorOrNil()
    	}
    	for _, f := range i.istiod {
    		f.Close()
    	}
    	return nil
    }
    
    func (i *istioImpl) Dump(ctx resource.Context) {
    	scopes.Framework.Errorf("=== Dumping Istio Deployment State for %v...", ctx.ID())
    	ns := i.cfg.SystemNamespace
    	d, err := ctx.CreateTmpDirectory("istio-state")
    	if err != nil {
    		scopes.Framework.Errorf("Unable to create directory for dumping Istio contents: %v", err)
    		return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/LauncherServices.java

    import org.gradle.api.internal.tasks.userinput.UserInputHandler;
    import org.gradle.api.internal.tasks.userinput.UserInputReader;
    import org.gradle.api.problems.internal.InternalProblems;
    import org.gradle.deployment.internal.DeploymentRegistryInternal;
    import org.gradle.execution.WorkValidationWarningReporter;
    import org.gradle.initialization.BuildCancellationToken;
    import org.gradle.initialization.BuildEventConsumer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 13:01:53 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. pkg/test/framework/components/ambient/waypoint.go

    }
    
    func (k kubeComponent) Close() error {
    	if k.inbound != nil {
    		k.inbound.Close()
    	}
    	if k.outbound != nil {
    		k.outbound.Close()
    	}
    	return nil
    }
    
    // WaypointProxy describes a waypoint proxy deployment
    type WaypointProxy interface {
    	Namespace() namespace.Instance
    	Inbound() string
    	Outbound() string
    	PodIP() string
    }
    
    // NewWaypointProxy creates a new WaypointProxy.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    							Description: "progressDeadlineSeconds is the maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.",
    							Type:        []string{"integer"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  8. tests/integration/pilot/ingress_test.go

    					c.call.Retry.Options = []retry.Option{retry.Timeout(time.Minute)}
    					defaultIngress.CallOrFail(t, c.call)
    				})
    			}
    		})
    }
    
    // TestCustomGateway deploys a simple gateway deployment, that is fully injected, and verifies it can startup and send traffic
    func TestCustomGateway(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(t framework.TestContext) {
    			inject := false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/kube.go

    	scopes.Framework.Infof("\n%s", cfg.String())
    	scopes.Framework.Infof("================================")
    
    	// Top-level work dir for Istio deployment.
    	workDir, err := ctx.CreateTmpDirectory("istio-deployment")
    	if err != nil {
    		return nil, err
    	}
    
    	// Generate common IstioOperator yamls for different cluster types (primary, remote, remote-config)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. samples/addons/prometheus.yaml

        app.kubernetes.io/name: prometheus
        app.kubernetes.io/instance: prometheus
      sessionAffinity: None
      type: "ClusterIP"
    ---
    # Source: prometheus/templates/deploy.yaml
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      labels:
        app.kubernetes.io/component: server
        app.kubernetes.io/name: prometheus
        app.kubernetes.io/instance: prometheus
        app.kubernetes.io/version: v2.52.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
Back to top