使用 kubesphere 3.1 创建容器失败,报错如下:

请大神解决下,谢谢。
deployment 对应的 yaml 如下:
kind: Deployment
apiVersion: apps/v1
metadata:
name: nginx-demo-01
namespace: ops-private
labels:
app: nginx-demo-01
annotations:
deployment.kubernetes.io/revision: ‘1’
kubesphere.io/alias-name: ''
kubesphere.io/creator: admin
spec:
replicas: 1
selector:
matchLabels:
app: nginx-demo-01
template:
metadata:
creationTimestamp: null
labels:
app: nginx-demo-01
spec:
containers:
- name: nginx-demo-01
image: nginx
ports:
- name: tcp-80
containerPort: 80
protocol: TCP
resources:
limits:
cpu: 200m
memory: 300Mi
requests:
cpu: 100m
memory: 100Mi
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
imagePullPolicy: IfNotPresent
restartPolicy: Always
terminationGracePeriodSeconds: 30
dnsPolicy: ClusterFirst
serviceAccountName: default
serviceAccount: default
securityContext: {}
affinity: {}
schedulerName: default-scheduler
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 25%
maxSurge: 25%
revisionHistoryLimit: 10
progressDeadlineSeconds: 600