Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 232 for podB (0.06 sec)

  1. manifests/addons/dashboards/lib/queries.libsonnet

    local q = g.query.prometheus;
    
    local variables = import './variables.libsonnet';
    
    {
      queries(names):
        local containerLabels = 'container="%(container)s", pod=~"%(pod)s"' % names;
        local appLabels = 'app="%(app)s"' % names;
        local podLabels = 'pod=~"%(pod)s"' % names;
        {
          query(legend, query):
            q.new(
              '$' + variables.datasource.name,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. cni/pkg/nodeagent/cni-watcher_test.go

    	client.RunAndWait(ctx.Done())
    
    	t.Run("found pod", func(t *testing.T) {
    		p, err := pluginServer.getPodWithRetry(log, pod.Name, pod.Namespace)
    		assert.NoError(t, err)
    		assert.Equal(t, p, pod)
    	})
    	t.Run("no pod", func(t *testing.T) {
    		p, err := pluginServer.getPodWithRetry(log, "fake", pod.Namespace)
    		assert.Error(t, err)
    		assert.Equal(t, p, nil)
    	})
    	t.Run("pod out of ambient", func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. hack/testdata/multi-resource-3.yaml

    # Test failures do not block the apply for valid resources.
    # pod-a and pod-c should apply, while POD-B is invalid
    # because of the capitialization.
    apiVersion: v1
    kind: Pod
    metadata:
      name: pod-a
    spec:
      containers:
      - name: kubernetes-pause
        image: registry.k8s.io/pause:3.10
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      name: POD-B
    spec:
      containers:
      - name: kubernetes-pause
        image: registry.k8s.io/pause:3.10
    ---
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 560 bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/labels.go

    func newPodAnnotations(pod *v1.Pod) map[string]string {
    	return pod.Annotations
    }
    
    // newContainerLabels creates container labels from v1.Container and v1.Pod.
    func newContainerLabels(container *v1.Container, pod *v1.Pod) map[string]string {
    	labels := map[string]string{}
    	labels[types.KubernetesPodNameLabel] = pod.Name
    	labels[types.KubernetesPodNamespaceLabel] = pod.Namespace
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. pkg/volume/downwardapi/downwardapi.go

    	if err != nil {
    		klog.Errorf("Error preparing data for downwardAPI volume %v for pod %v/%v: %s", b.volName, b.pod.Namespace, b.pod.Name, err.Error())
    		return err
    	}
    
    	setupSuccess := false
    	if err := wrapped.SetUpAt(dir, mounterArgs); err != nil {
    		klog.Errorf("Unable to setup downwardAPI volume %v for pod %v/%v: %s", b.volName, b.pod.Namespace, b.pod.Name, err.Error())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. docs/pt/docs/fastapi-cli.md

    Em muitos casos você pode ter (e deveria ter) um "proxy de saída" tratando HTTPS no topo, isso dependerá de como você fará o deploy da sua aplicação, seu provedor pode fazer isso pra você ou talvez seja necessário fazer você mesmo.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jun 11 23:49:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. cni/pkg/config/config.go

    	// The node name that the CNI DaemonSet runs on
    	NodeName string
    
    	// Key and value for broken pod label
    	LabelKey   string
    	LabelValue string
    
    	// Whether to fix race condition by repairing them
    	RepairPods bool
    
    	// Whether to fix race condition by delete broken pods
    	DeletePods bool
    
    	// Whether to label broken pods
    	LabelPods bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. pkg/volume/nfs/nfs.go

    		v1.ReadWriteMany,
    	}
    }
    
    func (plugin *nfsPlugin) NewMounter(spec *volume.Spec, pod *v1.Pod, _ volume.VolumeOptions) (volume.Mounter, error) {
    	return plugin.newMounterInternal(spec, pod, plugin.host.GetMounter(plugin.GetPluginName()))
    }
    
    func (plugin *nfsPlugin) newMounterInternal(spec *volume.Spec, pod *v1.Pod, mounter mount.Interface) (volume.Mounter, error) {
    	source, readOnly, err := getVolumeSource(spec)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. pkg/volume/secret/secret.go

    	return false, nil
    }
    
    func (plugin *secretPlugin) NewMounter(spec *volume.Spec, pod *v1.Pod, opts volume.VolumeOptions) (volume.Mounter, error) {
    	return &secretVolumeMounter{
    		secretVolume: &secretVolume{
    			spec.Name(),
    			pod.UID,
    			plugin,
    			plugin.host.GetMounter(plugin.GetPluginName()),
    			volume.NewCachedMetrics(volume.NewMetricsDu(getPath(pod.UID, spec.Name(), plugin.host))),
    		},
    		source:    *spec.Volume.Secret,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. cni/pkg/cmd/root.go

    	registerBooleanParameter(constants.RepairLabelPods, false, "Controller will label pods when detecting pod broken by race condition")
    	registerStringParameter(constants.RepairLabelKey, "cni.istio.io/uninitialized",
    		"The key portion of the label which will be set by the race repair if label pods is true")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top