Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,618 for layers (0.24 sec)

  1. samples/bookinfo/platform/kube/bookinfo-dualstack.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: details
      labels:
        app: details
        service: details
    spec:
      ipFamilyPolicy: RequireDualStack
      ipFamilies: [IPv6, IPv4]
      ports:
      - port: 9080
        name: http
      selector:
        app: details
    ---
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: bookinfo-details
      labels:
        account: details
    ---
    apiVersion: apps/v1
    kind: Deployment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    	}
    
    	// in case pod is not found when init EndpointBuilder.
    	networkID := network.ID(b.labels[label.TopologyNetwork.Name])
    	if networkID == "" {
    		networkID = b.endpointNetwork(endpointAddress)
    		b.labels[label.TopologyNetwork.Name] = string(networkID)
    	}
    
    	return &model.IstioEndpoint{
    		Labels:                b.labels,
    		ServiceAccount:        b.serviceAccount,
    		Locality:              b.locality,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/podtopologyspread/common.go

    					tsc.NodeTaintsPolicy = *c.NodeTaintsPolicy
    				}
    			}
    			result = append(result, tsc)
    		}
    	}
    	return result, nil
    }
    
    func mergeLabelSetWithSelector(matchLabels labels.Set, s labels.Selector) labels.Selector {
    	mergedSelector := labels.SelectorFromSet(matchLabels)
    
    	requirements, ok := s.Requirements()
    	if !ok {
    		return s
    	}
    
    	for _, r := range requirements {
    		mergedSelector = mergedSelector.Add(r)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-role-bindings.yaml

    apiVersion: v1
    items:
    - apiVersion: rbac.authorization.k8s.io/v1
      kind: ClusterRoleBinding
      metadata:
        annotations:
          rbac.authorization.kubernetes.io/autoupdate: "true"
        creationTimestamp: null
        labels:
          kubernetes.io/bootstrapping: rbac-defaults
        name: system:controller:attachdetach-controller
      roleRef:
        apiGroup: rbac.authorization.k8s.io
        kind: ClusterRole
        name: system:controller:attachdetach-controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. src/runtime/pprof/label.go

    	value string
    }
    
    // LabelSet is a set of labels.
    type LabelSet struct {
    	list []label
    }
    
    // labelContextKey is the type of contextKeys used for profiler labels.
    type labelContextKey struct{}
    
    func labelValue(ctx context.Context) labelMap {
    	labels, _ := ctx.Value(labelContextKey{}).(*labelMap)
    	if labels == nil {
    		return labelMap(nil)
    	}
    	return *labels
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. samples/addons/extras/skywalking.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: skywalking-oap
      namespace: istio-system
      labels:
        app: skywalking-oap
    spec:
      selector:
        matchLabels:
          app: skywalking-oap
      template:
        metadata:
          labels:
            app: skywalking-oap
            sidecar.istio.io/inject: "false"
        spec:
          containers:
            - name: skywalking-oap
              image: apache/skywalking-oap-server:9.7.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 21:40:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. pkg/kubelet/kubeletconfig/configfiles/configfiles.go

    )
    
    // Loader loads configuration from a storage layer
    type Loader interface {
    	// Load loads and returns the KubeletConfiguration from the storage layer, or an error if a configuration could not be loaded
    	Load() (*kubeletconfig.KubeletConfiguration, error)
    	// LoadIntoJSON loads and returns the KubeletConfiguration from the storage layer, or an error if a configuration could not be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    		},
    	}
    
    	if external && features.CanonicalServiceForMeshExternalServiceEntry {
    		if svc.Attributes.Labels == nil {
    			svc.Attributes.Labels = make(map[string]string)
    		}
    		svc.Attributes.Labels["service.istio.io/canonical-name"] = configNamespace
    		svc.Attributes.Labels["service.istio.io/canonical-revision"] = "latest"
    	}
    
    	svcPorts := make(model.PortList, 0, len(ports))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  9. src/runtime/proflabel.go

    	// is important because profBuf.read will observe different
    	// labels set by different setProfLabel operations on
    	// different goroutines, so it needs to synchronize with all
    	// of them (this wouldn't be an issue if we could synchronize
    	// on &getg().labels since we would synchronize with each
    	// most-recent labels write separately.)
    	//
    	// racereleasemerge is like a full read-modify-write on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. samples/bookinfo/platform/kube/bookinfo-psa.yaml

    kind: Service
    metadata:
      name: details
      labels:
        app: details
        service: details
    spec:
      ports:
      - port: 9080
        name: http
      selector:
        app: details
    ---
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: bookinfo-details
      labels:
        account: details
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: details-v1
      labels:
        app: details
        version: v1
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top