Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 177 for PriorityClassName (0.39 sec)

  1. helm-releases/minio-5.2.0.tgz

    {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }} {{- end }} {{- if .Values.podAnnotations }} {{- toYaml .Values.podAnnotations | trimSuffix "\n" | nindent 8 }} {{- end }} spec: {{- if .Values.priorityClassName }} priorityClassName: "{{ .Values.priorityClassName }}" {{- end }} {{- if .Values.runtimeClassName }} runtimeClassName: "{{ .Values.runtimeClassName }}" {{- end }} {{- if and .Values.securityContext.enabled .Values.persistence.enabled }} securityContext: runAsUser: {{...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/egressselector/config_test.go

      selector:
        matchLabels:
          k8s-app: konnectivity-agent
      updateStrategy:
        type: RollingUpdate
      template:
        metadata:
          labels:
            k8s-app: proxy-agent
        spec:
          priorityClassName: system-cluster-critical
          # Necessary to reboot node
          hostPID: true
          volumes:
            - name: pki
              hostPath:
                path: /etc/srv/kubernetes/pki/konnectivity-agent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-ingress/values.yaml

        # will not be killed because of low priority class.
        # Refer to https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass
        # for more detail.
        priorityClassName: ""
    
        proxy:
          image: proxyv2
    
          # CAUTION: It is important to ensure that all Istio helm charts specify the same clusterDomain value
          # cluster domain. Default value is "cluster.local".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/etcd/local_test.go

          timeoutSeconds: 15
        volumeMounts:
        - mountPath: %s/etcd
          name: etcd-data
        - mountPath: /etcd
          name: etcd-certs
      hostNetwork: true
      priority: 2000001000
      priorityClassName: system-node-critical
      securityContext:
        seccompProfile:
          type: RuntimeDefault
      volumes:
      - hostPath:
          path: /etcd
          type: DirectoryOrCreate
        name: etcd-certs
      - hostPath:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. pkg/quota/v1/evaluator/core/pods_test.go

    				{ScopeName: corev1.ResourceQuotaScopeNotTerminating},
    				{ScopeName: corev1.ResourceQuotaScopeBestEffort},
    			},
    		},
    		"PriorityClass": {
    			pod: &api.Pod{
    				Spec: api.PodSpec{
    					PriorityClassName: "class1",
    				},
    			},
    			wantSelectors: []corev1.ScopedResourceSelectorRequirement{
    				{ScopeName: corev1.ResourceQuotaScopeNotTerminating},
    				{ScopeName: corev1.ResourceQuotaScopeBestEffort},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  6. manifests/charts/gateways/istio-egress/values.yaml

        # will not be killed because of low priority class.
        # Refer to https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass
        # for more detail.
        priorityClassName: ""
    
        proxy:
          image: proxyv2
    
          # CAUTION: It is important to ensure that all Istio helm charts specify the same clusterDomain value
          # cluster domain. Default value is "cluster.local".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/staticpod/utils.go

    			Annotations: annotations,
    		},
    		Spec: v1.PodSpec{
    			Containers:        []v1.Container{container},
    			Priority:          &priority,
    			PriorityClassName: "system-node-critical",
    			HostNetwork:       true,
    			Volumes:           VolumeMapToSlice(volumes),
    			SecurityContext: &v1.PodSecurityContext{
    				SeccompProfile: &v1.SeccompProfile{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. architecture/environments/operator.md

    env | [container environment variables](https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/)
    imagePullPolicy| [ImagePullPolicy](https://kubernetes.io/docs/concepts/containers/images/)
    priorityClassName | [priority class name](https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass)
    nodeSelector| [node selector](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. pkg/controller/resourcequota/resource_quota_controller_test.go

    				Volumes:           []v1.Volume{{Name: "vol"}},
    				Containers:        []v1.Container{{Name: "ctr", Image: "image", Resources: getResourceRequirements(getResourceList("500m", "50Gi"), getResourceList("", ""))}},
    				PriorityClassName: "high",
    			},
    		},
    		&v1.Pod{
    			ObjectMeta: metav1.ObjectMeta{Name: "pod-running-2", Namespace: "testing"},
    			Status:     v1.PodStatus{Phase: v1.PodRunning},
    			Spec: v1.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 16:29:33 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1beta2.ReplicaSet.yaml

            nodeSelectorKey: nodeSelectorValue
          os:
            name: nameValue
          overhead:
            overheadKey: "0"
          preemptionPolicy: preemptionPolicyValue
          priority: 25
          priorityClassName: priorityClassNameValue
          readinessGates:
          - conditionType: conditionTypeValue
          resourceClaims:
          - name: nameValue
            source:
              resourceClaimName: resourceClaimNameValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 34.2K bytes
    - Viewed (0)
Back to top