Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 229 for cri (0.04 sec)

  1. pkg/kubelet/metrics/collectors/cri_metrics.go

    	if !ok {
    		err := fmt.Errorf("error converting CRI Metric to prometheus format")
    		klog.V(5).ErrorS(err, "Descriptor not present in pre-populated list of descriptors", "name", m.Name)
    		return nil, err
    	}
    
    	typ := criTypeToProm[m.MetricType]
    
    	pm, err := metrics.NewConstMetric(desc, typ, float64(m.GetValue().Value), m.LabelValues...)
    	if err != nil {
    		klog.ErrorS(err, "Error getting CRI prometheus metric", "descriptor", desc.String())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 13:24:29 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. staging/README.md

    - [`k8s.io/component-helpers`](https://github.com/kubernetes/component-helpers)
    - [`k8s.io/controller-manager`](https://github.com/kubernetes/controller-manager)
    - [`k8s.io/cri-api`](https://github.com/kubernetes/cri-api)
    - [`k8s.io/cri-client`](https://github.com/kubernetes/cri-client)
    - [`k8s.io/csi-translation-lib`](https://github.com/kubernetes/csi-translation-lib)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 11:23:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. hack/logcheck.conf

    contextual k8s.io/client-go/metadata/.*
    contextual k8s.io/client-go/tools/events/.*
    contextual k8s.io/client-go/tools/record/.*
    contextual k8s.io/component-helpers/.*
    contextual k8s.io/cri-api/.*
    contextual k8s.io/cri-client/.*
    contextual k8s.io/dynamic-resource-allocation/.*
    contextual k8s.io/endpointslice/.*
    contextual k8s.io/kms/.*
    contextual k8s.io/kube-controller-manager/.*
    contextual k8s.io/kube-proxy/.*
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. prow/config/ambient-sc.yaml

      apiServer:
        extraArgs:
          "service-account-issuer": "kubernetes.default.svc"
          "service-account-signing-key-file": "/etc/kubernetes/pki/sa.key"
    containerdConfigPatches:
    - |-
      [plugins."io.containerd.grpc.v1.cri".registry.mirrors."localhost:5000"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 19:17:14 UTC 2023
    - 693 bytes
    - Viewed (0)
  5. staging/publishing/rules.yaml

          dirs:
          - staging/src/k8s.io/cri-api
      - name: release-1.29
        go: 1.21.11
        source:
          branch: release-1.29
          dirs:
          - staging/src/k8s.io/cri-api
      - name: release-1.30
        go: 1.22.4
        source:
          branch: release-1.30
          dirs:
          - staging/src/k8s.io/cri-api
      library: true
    - destination: cri-client
      branches:
      - name: master
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_network.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package kubelet
    
    import (
    	"context"
    	"fmt"
    
    	v1 "k8s.io/api/core/v1"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    	"k8s.io/klog/v2"
    )
    
    // providerRequiresNetworkingConfiguration returns whether the cloud provider
    // requires special networking configuration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. pkg/kubelet/config/flags.go

    	fs.MarkDeprecated("pod-infra-container-image", "will be removed in a future release. Image garbage collector will get sandbox image information from CRI.")
    
    	// Image credential provider settings.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 03:14:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/node/v1alpha1/types_swagger_doc_generated.go

    	"runtimeHandler": "runtimeHandler specifies the underlying runtime and configuration that the CRI implementation will use to handle pods of this class. The possible values are specific to the node & CRI configuration.  It is assumed that all handlers are available on every node,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_sandbox_unsupported.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package kuberuntime
    
    import (
    	v1 "k8s.io/api/core/v1"
    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    )
    
    func (m *kubeGenericRuntimeManager) applySandboxResources(pod *v1.Pod, config *runtimeapi.PodSandboxConfig) error {
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 19:05:05 UTC 2021
    - 865 bytes
    - Viewed (0)
  10. pkg/apis/node/types.go

    type RuntimeClass struct {
    	metav1.TypeMeta
    
    	// +optional
    	metav1.ObjectMeta
    
    	// handler specifies the underlying runtime and configuration that the CRI
    	// implementation will use to handle pods of this class. The possible values
    	// are specific to the node & CRI configuration.  It is assumed that all
    	// handlers are available on every node, and handlers of the same name are
    	// equivalent on every node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 3.6K bytes
    - Viewed (0)
Back to top