Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for deploymentID (0.14 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/gci/configure-helper.sh

      readonly UUID_MNT_PREFIX="/mnt/disks/by-uuid/google-local-ssds"
      readonly UUID_BLOCK_PREFIX="/dev/disk/by-uuid/google-local-ssds"
      readonly COREDNS_AUTOSCALER="Deployment/coredns"
      readonly KUBEDNS_AUTOSCALER="Deployment/kube-dns"
    
      # Resource requests of master components.
      CLOUD_CONTROLLER_MANAGER_CPU_REQUEST="${KUBE_CONTROLLER_MANAGER_CPU_REQUEST:-50m}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    }
    
    // Returns a minio-go Client configured to access remote host described by destDNSRecord
    // Applicable only in a federated deployment
    var getRemoteInstanceClient = func(r *http.Request, host string) (*miniogo.Core, error) {
    	cred := getReqAccessCred(r, globalSite.Region())
    	// In a federated deployment, all the instances share config files
    	// and hence expected to have same credentials.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. cmd/bucket-replication.go

    		return false, toAPIError(ctx, BucketRemoteTargetNotFound{Bucket: bucket})
    	}
    	return sameTarget, toAPIError(ctx, nil)
    }
    
    // performs a http request to remote endpoint to check if deployment id of remote endpoint is same as
    // local cluster deployment id. This is to prevent replication to self, especially in case of a loadbalancer
    // in front of MinIO.
    func checkRemoteEndpoint(ctx context.Context, epURL *url.URL) error {
    	reqURL := &url.URL{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  5. samples/addons/grafana.yaml

          port: 3000
          protocol: TCP
          targetPort: 3000
      selector:
        app.kubernetes.io/name: grafana
        app.kubernetes.io/instance: grafana
    ---
    # Source: grafana/templates/deployment.yaml
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: grafana
      namespace: istio-system
      labels:
        helm.sh/chart: grafana-8.0.1
        app.kubernetes.io/name: grafana
        app.kubernetes.io/instance: grafana
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    		r, err := printComponentStatus(&list.Items[i], options)
    		if err != nil {
    			return nil, err
    		}
    		rows = append(rows, r...)
    	}
    	return rows, nil
    }
    
    func printDeployment(obj *apps.Deployment, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	row := metav1.TableRow{
    		Object: runtime.RawExtension{Object: obj},
    	}
    	desiredReplicas := obj.Spec.Replicas
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
Back to top