<返回更多

k8s亲和性调度-nodeAffinity

2022-07-19    linux运维菜
加入收藏

简介

nodeAffinity就是节点亲和性,相对应的是Anti-Affinity,就是反亲和性。

k8s亲和性调度-nodeAffinity

 

这种方法比nodeSelector灵活,可以有一些简单的逻辑组合。

调度可以分成软策略和硬策略两种方式:

k8s亲和性调度-nodeAffinity

 

例子

apiVersion: Apps/v1
kind: Deployment
metadata:
  labels:
    app: hostname
  name: hostname
  namespace: default
spec:
  progressDeadlineSeconds: 600
  replicas: 2
  revisionHistoryLimit: 10
  selector:
    matchLabels:
      app: hostname
  strategy:
    rollingUpdate:
      maxSurge: 10%
      maxUnavailable: 1
    type: RollingUpdate
  template:
    metadata:
      creationTimestamp: null
      labels:
        app: hostname
    spec:
      affinity:
        nodeAffinity:
          requiredDuringSchedulingIgnoredDuringExecution:
            nodeSelectorTerms:
            - matchExpressions:
              - key: kube.NETes.io/hostname
                operator: In
                values:
                - k8s-node.example.com
                - centos7.example.com
          preferredDuringSchedulingIgnoredDuringExecution:
          - weight: 1
            preference:
              matchExpressions:
              - key: node-type
                operator: In
                values:
                - testing
      containers:
      - image: tosomeone/hostname:v1.0.3
        imagePullPolicy: IfNotPresent
        resources:
          requests:
            memory: 20Mi
            cpu: 100m
          limits:
            memory: 30Mi
            cpu: 150m
        livenessProbe:
          failureThreshold: 5
          httpGet:
            path: /
            port: 8080
            scheme: HTTP
          initialDelaySeconds: 1
          periodSeconds: 2
          successThreshold: 1
          timeoutSeconds: 2
        name: hostname
        ports:
        - containerPort: 8080
          protocol: TCP
        readinessProbe:
          failureThreshold: 3
          httpGet:
            path: /
            port: 8080
            scheme: HTTP
          initialDelaySeconds: 2
          periodSeconds: 1
          successThreshold: 1
          timeoutSeconds: 5
        lifecycle:
          postStart:
            exec:
              command:
                - echo
                - "started"
          preStop:
            exec:
              command:
                - sleep
                - "3"
        terminationMessagePath: /dev/termination-log
        terminationMessagePolicy: File
      DNSPolicy: ClusterFirst
      restartPolicy: Always
      schedulerName: default-scheduler
      securityContext: {}
      terminationGracePeriodSeconds: 30


preferredDuringSchedulingIgnoredDuringExecution:指定的就是软策略


requiredDuringSchedulingIgnoredDuringExecution:指定的就是硬策略

例子中优先选择node上有node-type=testing标签的node,且这些node需要满足主机名k8s-node.example.com或者centos7.example.com

操作符有下面的几种:

声明:本站部分内容来自互联网,如有版权侵犯或其他问题请与我们联系,我们将立即删除或处理。
▍相关推荐
更多资讯 >>>