Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 377 for cluster0 (0.1 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    // ClusterConfiguration contains cluster-wide configuration for a kubeadm cluster
    type ClusterConfiguration struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Etcd holds configuration for etcd.
    	// +optional
    	Etcd Etcd `json:"etcd,omitempty"`
    
    	// Networking holds configuration for the networking topology of the cluster.
    	// +optional
    	Networking Networking `json:"networking,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/upgrade/apply.go

    //   - Uploads the newly used configuration to the cluster ConfigMap
    //   - Creating the RBAC rules for the bootstrap tokens and the cluster-info ConfigMap
    //   - Applying new CoreDNS and kube-proxy manifests
    func runApply(flagSet *pflag.FlagSet, flags *applyFlags, args []string) error {
    
    	// Start with the basics, verify that the cluster is healthy and get the configuration from the cluster (using the ConfigMap)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. cmd/metrics-v3.go

    	clusterHealthCollectorPath       collectorPath = "/cluster/health"
    	clusterUsageObjectsCollectorPath collectorPath = "/cluster/usage/objects"
    	clusterUsageBucketsCollectorPath collectorPath = "/cluster/usage/buckets"
    	clusterErasureSetCollectorPath   collectorPath = "/cluster/erasure-set"
    	clusterIAMCollectorPath          collectorPath = "/cluster/iam"
    	clusterConfigCollectorPath       collectorPath = "/cluster/config"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. cluster/gce/upgrade.sh

        exit 1
      else
        upgrade-nodes
      fi
    fi
    
    if [[ "${CLUSTER_DNS_CORE_DNS:-}" == "true" ]]; then
      update-coredns-config
    fi
    
    echo "== Validating cluster post-upgrade =="
    "${KUBE_ROOT}/cluster/validate-cluster.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: fix a regression where the KubeletConfiguration is not properly downloaded during "kubeadm upgrade" commands from the kube-system/kubelet-config ConfigMap, resulting in the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/controller.go

    	meshWatcher mesh.Watcher
    
    	model.NoopAmbientIndexes
    	model.NetworkGatewaysHandler
    }
    
    type Option func(*Controller)
    
    func WithClusterID(clusterID cluster.ID) Option {
    	return func(o *Controller) {
    		o.clusterID = clusterID
    	}
    }
    
    func WithNetworkIDCb(cb func(endpointIP string, labels labels.Instance) network.ID) Option {
    	return func(o *Controller) {
    		o.networkIDCallback = cb
    	}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  7. cluster/gce/upgrade-aliases.sh

      exit 1
    fi
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/hack/lib/util.sh"
    source "${KUBE_ROOT}/cluster/kube-util.sh"
    
    # Print the number of routes used for K8s cluster node connectivity.
    #
    # Assumed vars:
    #   PROJECT
    function get-k8s-node-routes-count() {
      local k8s_node_routes_count
      k8s_node_routes_count=$(gcloud compute routes list \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. cmd/admin-handlers-site-replication.go

    	opts.ReplicateILMExpiry = r.Form.Get("replicateILMExpiry") == "true"
    	return
    }
    
    // SRPeerJoin - PUT /minio/admin/v3/site-replication/join
    //
    // used internally to tell current cluster to enable SR with
    // the provided peer clusters and service account.
    func (a adminAPIHandlers) SRPeerJoin(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	objectAPI, cred := validateAdminReq(ctx, w, r, policy.SiteReplicationAddAction)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. pkg/spiffe/spiffe_test.go

    				"spiffe://foo/ns/def/sa/def":           {},
    			},
    		},
    		{
    			name:      "TwoIentities",
    			spiffeURI: []string{"spiffe://cluster.local/ns/def/sa/def", "spiffe://cluster.local/ns/a/sa/a"},
    			trustDomains: []string{
    				"foo",
    			},
    			want: map[string]struct{}{
    				"spiffe://cluster.local/ns/def/sa/def": {},
    				"spiffe://foo/ns/def/sa/def":           {},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    						"security.istio.io/tlsMode": "disabled",
    						"topology.istio.io/cluster": clusterID,
    					},
    					Address:        "1.1.1.1",
    					ServiceAccount: "spiffe://cluster.local/ns/ns1/sa/scooby",
    					TLSMode:        "disabled",
    					Namespace:      "ns1",
    					Locality: model.Locality{
    						ClusterID: cluster.ID(clusterID),
    					},
    				},
    				PortMap: map[string]uint32{
    					"http": 80,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
Back to top