Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for topologySpreadConstraints (0.28 sec)

  1. manifests/charts/gateway/templates/deployment.yaml

            {{- toYaml . | nindent 8 }}
          {{- end }}
          {{- with .Values.tolerations }}
          tolerations:
            {{- toYaml . | nindent 8 }}
          {{- end }}
          {{- with .Values.topologySpreadConstraints }}
          topologySpreadConstraints:
            {{- toYaml . | nindent 8 }}
          {{- end }}
          terminationGracePeriodSeconds: {{ $.Values.terminationGracePeriodSeconds }}
          {{- with .Values.priorityClassName }}
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

          affinity:
    {{- toYaml . | nindent 8 }}
    {{- end }}
    {{- with .Values.pilot.tolerations }}
          tolerations:
    {{- toYaml . | nindent 8 }}
    {{- end }}
    {{- with .Values.pilot.topologySpreadConstraints }}
          topologySpreadConstraints:
    {{- toYaml . | nindent 8 }}
    {{- end }}
          serviceAccountName: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
    {{- if .Values.global.priorityClassName }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Feb 29 19:22:34 GMT 2024
    - 8.3K bytes
    - Viewed (0)
  3. helm/minio/templates/statefulset.yaml

          {{- end }}
          {{- if and (gt $replicas 1) (ge .Capabilities.KubeVersion.Major "1") (ge .Capabilities.KubeVersion.Minor "19") }}
          {{- with .Values.topologySpreadConstraints }}
          topologySpreadConstraints: {{- toYaml . | nindent 8 }}
          {{- end }}
          {{- end }}
          volumes:
            - name: minio-user
              secret:
                secretName: {{ template "minio.secretName" . }}
    Others
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Apr 26 07:50:24 GMT 2024
    - 10.7K bytes
    - Viewed (0)
  4. manifests/charts/gateway/values.yaml

      env: {}
    
      # Labels to apply to all resources
      labels: {}
    
      # Annotations to apply to all resources
      annotations: {}
    
      nodeSelector: {}
    
      tolerations: []
    
      topologySpreadConstraints: []
    
      affinity: {}
    
      # If specified, the gateway will act as a network gateway for the given network.
      networkGateway: ""
    
      # Specify image pull policy if default behavior isn't desired.
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jan 11 16:55:28 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  5. manifests/charts/gateway/values.schema.json

              "properties": {
                "enabled": {
                  "type": "boolean"
                }
              }
            },
            "tolerations": {
              "type": "array"
            },
            "topologySpreadConstraints": {
              "type": "array"
            },
            "networkGateway": {
              "type": "string"
            },
            "imagePullPolicy": {
              "type": "string",
              "enum": [
    Json
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jan 18 16:33:33 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/values.yaml

        volumeMounts: []
        # Additional volumes to the istiod pod
        volumes: []
        nodeSelector: {}
        podAnnotations: {}
        serviceAnnotations: {}
        serviceAccountAnnotations: {}
        topologySpreadConstraints: []
        # You can use jwksResolverExtraRootCA to provide a root certificate
        # in PEM format. This will then be trusted by pilot when resolving
        # JWKS URIs.
        jwksResolverExtraRootCA: ""
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  7. helm/minio/values.yaml

      #    hosts:
      #      - chart-example.local
    
    ## Node labels for pod assignment
    ## Ref: https://kubernetes.io/docs/user-guide/node-selection/
    ##
    nodeSelector: {}
    tolerations: []
    affinity: {}
    topologySpreadConstraints: []
    
    ## Add stateful containers to have security context, if enabled MinIO will run as this
    ## user and group NOTE: securityContext is only enabled if persistence.enabled=true
    securityContext:
      enabled: true
    Others
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 10:14:37 GMT 2024
    - 18.4K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/values.yaml

        volumeMounts: []
    
        # Additional volumes to the istiod pod
        volumes: []
    
        nodeSelector: {}
        podAnnotations: {}
        serviceAnnotations: {}
        serviceAccountAnnotations: {}
    
        topologySpreadConstraints: []
    
        # You can use jwksResolverExtraRootCA to provide a root certificate
        # in PEM format. This will then be trusted by pilot when resolving
        # JWKS URIs.
        jwksResolverExtraRootCA: ""
    
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 16:58:23 GMT 2024
    - 19.6K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

    - Forbid to set matchLabelKeys when labelSelector is not set in topologySpreadConstraints ([#116535](https://github.com/kubernetes/kubernetes/pull/116535), [@denkensk](https://github.com/denkensk))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Apr 16 15:20:21 GMT 2024
    - 434.3K bytes
    - Viewed (3)
  10. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      map<string, k8s.io.apimachinery.pkg.api.resource.Quantity> overhead = 32;
    
      // TopologySpreadConstraints describes how a group of pods ought to spread across topology
      // domains. Scheduler will schedule pods in a way which abides by the constraints.
      // All topologySpreadConstraints are ANDed.
      // +optional
      // +patchMergeKey=topologyKey
      // +patchStrategy=merge
      // +listType=map
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
Back to top