Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for deploymentID (0.18 sec)

  1. cmd/utils.go

    	reqID := w.Header().Get(xhttp.AmzRequestID)
    
    	vars := mux.Vars(r)
    	bucket := vars["bucket"]
    	object := likelyUnescapeGeneric(vars["object"], url.PathUnescape)
    	reqInfo := &logger.ReqInfo{
    		DeploymentID: globalDeploymentID(),
    		RequestID:    reqID,
    		RemoteHost:   handlers.GetSourceIP(r),
    		Host:         getHostName(r),
    		UserAgent:    r.UserAgent(),
    		API:          api,
    		BucketName:   bucket,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  2. cmd/erasure-healing.go

    	reqInfo := logger.GetReqInfo(ctx)
    	var newReqInfo *logger.ReqInfo
    	if reqInfo != nil {
    		newReqInfo = logger.NewReqInfo(reqInfo.RemoteHost, reqInfo.UserAgent, reqInfo.DeploymentID, reqInfo.RequestID, reqInfo.API, bucket, object)
    	} else {
    		newReqInfo = logger.NewReqInfo("", "", globalDeploymentID(), "", "Heal", bucket, object)
    	}
    	healCtx := logger.SetReqInfo(GlobalContext, newReqInfo)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  3. pkg/kube/kclient/client_test.go

    	c := kube.NewFakeClient()
    	deployments := kclient.New[*appsv1.Deployment](c)
    	obj1 := &appsv1.Deployment{
    		ObjectMeta: metav1.ObjectMeta{Name: "1", Namespace: "default"},
    		Spec:       appsv1.DeploymentSpec{MinReadySeconds: 1},
    	}
    	clienttest.Wrap(t, deployments).Create(obj1)
    	deployments.AddEventHandler(controllers.EventHandler[*appsv1.Deployment]{
    		AddFunc: func(obj *appsv1.Deployment) {
    			handled.Inc()
    		},
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. pkg/kube/util.go

    				// Openshift platform, set the deploy name to the deployment config's name, and the kind to 'DeploymentConfig'.
    				//
    				// nolint: lll
    				// For DeploymentConfig details, refer to
    				// https://docs.openshift.com/container-platform/4.1/applications/deployments/what-deployments-are.html#deployments-and-deploymentconfigs_what-deployments-are
    				//
    				// For the reference to the pod label 'deploymentconfig', refer to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. tests/integration/ambient/main_test.go

    	"istio.io/istio/pkg/test/scopes"
    	"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{}
    
    	// used to validate telemetry in-cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/list.md

    ## Cluster Replication Metrics
    
    Metrics marked as ``Site Replication Only`` only populate on deployments with [Site Replication](https://min.io/docs/minio/linux/operations/install-deploy-manage/multi-site-replication.html) configurations.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  7. samples/addons/kiali.yaml

        protocol: TCP
        port: 9090
      selector:
        app.kubernetes.io/name: kiali
        app.kubernetes.io/instance: kiali
    ...
    ---
    # Source: kiali-server/templates/deployment.yaml
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: kiali
      namespace: istio-system
      labels:
        helm.sh/chart: kiali-server-1.85.0
        app: kiali
        app.kubernetes.io/name: kiali
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. pkg/test/kube/dump.go

    		deps, err := c.Kube().AppsV1().Deployments(namespace).List(context.TODO(), metav1.ListOptions{})
    		if err != nil {
    			scopes.Framework.Warnf("Error getting deployments for cluster %s: %v", c.Name(), err)
    			return
    		}
    		for _, deployment := range deps.Items {
    			deployment := deployment
    			errG.Go(func() error {
    				out, err := yaml.Marshal(deployment)
    				if err != nil {
    					return err
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  9. operator/cmd/mesh/manifest-generate_test.go

    			flags:      "-o " + flagOutputDir,
    			diffSelect: "Deployment:*:istiod",
    			fileSelect: []string{"templates/deployment.yaml"},
    			outputDir:  flagOutputDir,
    		},
    		{
    			desc:       "flag_output_set_values",
    			diffSelect: "Deployment:*:istio-ingressgateway",
    			flags:      "-s values.global.proxy.image=mynewproxy -o " + flagOutputValuesDir,
    			fileSelect: []string{"templates/deployment.yaml"},
    			outputDir:  flagOutputValuesDir,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  10. pkg/config/analysis/analyzers/analyzers_test.go

    		inputFiles: []string{"testdata/deployment-multi-service.yaml"},
    		analyzer:   &deployment.ServiceAssociationAnalyzer{},
    		expected: []message{
    			{msg.DeploymentAssociatedToMultipleServices, "Deployment bookinfo/multiple-svc-multiple-prot"},
    			{msg.DeploymentAssociatedToMultipleServices, "Deployment bookinfo/multiple-without-port"},
    			{msg.DeploymentConflictingPorts, "Deployment bookinfo/conflicting-ports"},
    		},
    	},
    	{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top